/* ==========================================================================
   biozygot.com — style.css
   Design system: "First Division"
   A zygote is the single cell everything else comes from. The site is dark,
   warm and rounded — an incubator rather than a laboratory bench — and its
   structure follows cleavage: one cell, then two, then many.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* 60% — incubator ground */
  --void:        #170d1a;
  --shell:       #211430;
  --shell-2:     #2b1a3c;
  --shell-3:     #3a2450;

  /* 30% — warm bone type */
  --bone:        #f6ece1;
  --bone-2:      #d9c7d2;
  --muted:       #a08fa8;
  --hair:        rgba(246, 236, 225, 0.14);

  /* 10% — living signal */
  --coral:       #ff7a59;
  --coral-deep:  #e35733;
  --mint:        #6fe3c4;
  --violet:      #b47cff;

  /* type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Karla", "Helvetica Neue", Arial, sans-serif;
  --meta:    "Azeret Mono", ui-monospace, Consolas, monospace;

  /* metrics */
  --wrap: min(1120px, calc(100% - 40px));
  --r-lg: 30px;
  --r-md: 18px;
  --r-sm: 12px;
  --pill: 999px;
  --band: clamp(64px, 9vw, 130px);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.66;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--coral); color: #23111b; }

.skip-link {
  position: absolute;
  left: 14px; top: -70px;
  z-index: 10000;
  padding: 11px 18px;
  background: var(--bone);
  color: var(--void);
  border-radius: var(--pill);
  font-family: var(--meta);
  font-size: 0.78rem;
  text-decoration: none;
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 14px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Domain-for-sale banner (adapted to the First Division palette)
   -------------------------------------------------------------------------- */
.domain-sale-banner {
  position: relative;
  z-index: 9999;
  width: 100%;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 122, 89, 0.4), transparent 34%),
    linear-gradient(100deg, #120a16 0%, #211430 58%, #3a1c33 100%);
  border-bottom: 1px solid rgba(246, 236, 225, 0.16);
  box-shadow: 0 8px 28px rgba(9, 4, 12, 0.45);
  font-family: var(--meta);
}

.domain-sale-banner__content {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.domain-sale-banner__text {
  display: grid;
  gap: 4px;
  line-height: 1.35;
}

.domain-sale-banner__text strong {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.domain-sale-banner__text span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
}

.domain-sale-banner__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  color: #23111b;
  background: var(--coral);
  border: 1px solid #ff9d84;
  border-radius: var(--pill);
  box-shadow: 0 8px 22px rgba(255, 122, 89, 0.32);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease);
}

.domain-sale-banner__button:hover,
.domain-sale-banner__button:focus-visible {
  background: #ffa287;
  box-shadow: 0 12px 30px rgba(255, 122, 89, 0.45);
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 680px) {
  .domain-sale-banner__content {
    min-height: auto;
    padding: 14px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .domain-sale-banner__button { width: 100%; }
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.wrap { width: var(--wrap); margin-inline: auto; }

.band { padding-block: var(--band); }
.band--tight { padding-block: clamp(44px, 6vw, 78px); }

.surface {
  padding: clamp(30px, 5vw, 62px);
  background: linear-gradient(160deg, var(--shell) 0%, var(--shell-2) 100%);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
}

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 96;
}

h2 {
  font-size: clamp(2.05rem, 4.6vw, 3.4rem);
  max-width: 17ch;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.18;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 30;
}

p { max-width: 66ch; }

.lede {
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
  line-height: 1.56;
  color: var(--bone-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 11px;
  background: rgba(246, 236, 225, 0.06);
  border: 1px solid var(--hair);
  border-radius: var(--pill);
  font-family: var(--meta);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-2);
}

.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--coral), var(--violet));
  box-shadow: 0 0 12px rgba(255, 122, 89, 0.7);
}

.prose > * + * { margin-top: 1.15em; }
.prose a { color: var(--mint); text-underline-offset: 3px; }
.prose a:hover { color: var(--coral); }

.dim { color: var(--muted); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.masthead {
  position: relative;
  z-index: 50;
  background: var(--void);
  border-bottom: 1px solid var(--hair);
}

.masthead__inner {
  position: relative;
  width: var(--wrap);
  margin-inline: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 30;
}
.brand svg { width: 34px; height: 34px; flex: 0 0 auto; }
.brand em { font-style: normal; color: var(--muted); font-weight: 400; }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 30px);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 2px;
  font-family: var(--meta);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone-2);
  transition: color 160ms var(--ease);
}
.nav__link:hover { color: var(--bone); }

.nav__link::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--muted);
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}
.nav__link:hover::before { border-color: var(--coral); }
.nav__link[aria-current="page"] { color: var(--bone); }
.nav__link[aria-current="page"]::before { background: var(--coral); border-color: var(--coral); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  background: var(--bone);
  color: var(--void);
  border-radius: var(--pill);
  font-family: var(--meta);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 170ms var(--ease), transform 170ms var(--ease);
}
.nav__cta:hover { background: var(--coral); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: var(--pill);
  font-family: var(--meta);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
}

.nav-toggle__cell {
  position: relative;
  width: 15px; height: 15px;
}
.nav-toggle__cell i {
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 11px;
  margin: -5.5px 0 0 -5.5px;
  border-radius: 50%;
  background: var(--coral);
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}
.nav-toggle__cell i:nth-child(2) { background: var(--mint); opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__cell i:nth-child(1) { transform: translateX(-4px) scale(0.72); }
.nav-toggle[aria-expanded="true"] .nav-toggle__cell i:nth-child(2) { opacity: 1; transform: translateX(4px) scale(0.72); }

@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    z-index: 60;
    display: none;
    padding: 16px 20px 24px;
    background: var(--shell);
    border: 1px solid var(--hair);
    border-radius: var(--r-md);
    box-shadow: 0 28px 60px rgba(9, 4, 12, 0.6);
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--hair); }
  .nav__link { padding: 16px 0; font-size: 0.9rem; }
  .nav__cta { margin-top: 18px; width: 100%; justify-content: center; min-height: 52px; }
}

/* --------------------------------------------------------------------------
   7. Hero + signature element: the cleavage stage viewer
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 104px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%; top: -18%;
  width: min(980px, 130vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(180, 124, 255, 0.22) 0%, rgba(255, 122, 89, 0.12) 38%, transparent 66%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(3.1rem, 9.5vw, 6.4rem);
  letter-spacing: -0.045em;
  font-variation-settings: "SOFT" 70, "WONK" 1, "opsz" 144;
}

.hero h1 em {
  font-style: normal;
  color: var(--muted);
  font-weight: 300;
}

.hero__lede { margin-top: 24px; max-width: 42ch; }

/* --- the viewer --- */
.viewer {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

.dish {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(246, 236, 225, 0.07), transparent 58%),
    linear-gradient(155deg, var(--shell-2), var(--void) 78%);
  border: 1px solid var(--hair);
  box-shadow:
    inset 0 0 70px rgba(180, 124, 255, 0.14),
    0 40px 80px rgba(9, 4, 12, 0.55);
}

.dish::after {
  content: "";
  position: absolute;
  inset: 7.5%;
  border-radius: 50%;
  border: 1px dashed rgba(246, 236, 225, 0.13);
  pointer-events: none;
}

.cell {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.55), transparent 42%),
    radial-gradient(circle at 62% 72%, var(--violet), var(--coral) 74%);
  box-shadow: 0 0 26px rgba(255, 122, 89, 0.4), inset 0 0 18px rgba(35, 17, 27, 0.35);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition:
    top 900ms var(--ease),
    left 900ms var(--ease),
    width 900ms var(--ease),
    height 900ms var(--ease),
    opacity 500ms var(--ease),
    transform 900ms var(--ease);
}

.cell.is-live {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.viewer__readout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding: 14px 18px;
  background: rgba(246, 236, 225, 0.05);
  border: 1px solid var(--hair);
  border-radius: var(--pill);
  font-family: var(--meta);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.viewer__stage { color: var(--bone); }
.viewer__count { color: var(--mint); }

.viewer__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: var(--pill);
  font-family: var(--meta);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-2);
  transition: border-color 170ms var(--ease), color 170ms var(--ease), background 170ms var(--ease);
}
.viewer__btn:hover { border-color: var(--coral); color: var(--bone); background: rgba(255, 122, 89, 0.1); }

/* --------------------------------------------------------------------------
   8. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-family: var(--meta);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 170ms var(--ease), background 170ms var(--ease),
              color 170ms var(--ease), border-color 170ms var(--ease), box-shadow 170ms var(--ease);
}

.btn--solid {
  background: var(--coral);
  border-color: var(--coral);
  color: #23111b;
  box-shadow: 0 14px 34px rgba(255, 122, 89, 0.3);
}
.btn--solid:hover { background: #ffa287; border-color: #ffa287; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border-color: rgba(246, 236, 225, 0.32);
  color: var(--bone);
}
.btn--outline:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-2px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

@media (max-width: 480px) {
  .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   9. The strand — a developmental sequence down the page
   -------------------------------------------------------------------------- */
.strand { position: relative; padding-left: 54px; }

.strand::before {
  content: "";
  position: absolute;
  left: 15px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--coral), var(--violet) 46%, transparent);
}

.strand > li { position: relative; padding-block: 26px; }
.strand > li:first-child { padding-top: 0; }
.strand > li:last-child { padding-bottom: 0; }

.strand > li::before {
  content: "";
  position: absolute;
  left: -47px;
  top: 32px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 122, 89, 0.12);
}
.strand > li:first-child::before { top: 6px; }

.strand h3 { margin-bottom: 8px; }
.strand p { color: var(--bone-2); }

.strand__mark {
  display: block;
  margin-bottom: 6px;
  font-family: var(--meta);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
}

@media (max-width: 560px) {
  .strand { padding-left: 40px; }
  .strand::before { left: 8px; }
  .strand > li::before { left: -40px; width: 13px; height: 13px; }
}

/* --------------------------------------------------------------------------
   10. Cell cards
   -------------------------------------------------------------------------- */
.cluster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.cell-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(165deg, var(--shell) 0%, rgba(23, 13, 26, 0.9) 100%);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}

.cell-card::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.22), transparent 66%);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  pointer-events: none;
}
.cell-card:hover { transform: translateY(-4px); border-color: rgba(255, 122, 89, 0.4); }
.cell-card:hover::after { opacity: 1; }

.cell-card__glyph {
  width: 46px; height: 46px;
  margin-bottom: 22px;
}

.cell-card h3 { margin-bottom: 10px; }
.cell-card p { font-size: 0.98rem; color: var(--bone-2); }

/* sector chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  background: rgba(246, 236, 225, 0.04);
  border: 1px solid var(--hair);
  border-radius: var(--pill);
  font-size: 0.95rem;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.chip:hover { border-color: rgba(111, 227, 196, 0.5); background: rgba(111, 227, 196, 0.07); }

.chip span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  flex: 0 0 auto;
}
.chip:nth-child(even) span { background: var(--coral); }
.chip:nth-child(3n) span { background: var(--violet); }

/* --------------------------------------------------------------------------
   11. Record list (domain facts)
   -------------------------------------------------------------------------- */
.record {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
}

.record div {
  padding: 24px;
  background: var(--void);
}

.record dt {
  margin-bottom: 8px;
  font-family: var(--meta);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.record dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.3;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 24;
}

.record dd small {
  display: block;
  margin-top: 6px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--bone-2);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 14px;
  background: rgba(111, 227, 196, 0.13);
  border-radius: var(--pill);
  font-family: var(--meta);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}
.status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

/* --------------------------------------------------------------------------
   12. Split feature
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

@media (max-width: 880px) {
  .split { grid-template-columns: minmax(0, 1fr); }
}

.split__figure {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
}

/* --------------------------------------------------------------------------
   13. Checklist
   -------------------------------------------------------------------------- */
.ticks { margin-top: 32px; }

.ticks li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hair);
}
.ticks li:last-child { border-bottom: 0; }
.ticks svg { width: 26px; height: 26px; margin-top: 2px; }
.ticks strong { font-weight: 600; }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { margin-top: 36px; }

.faq details {
  margin-bottom: 12px;
  background: rgba(246, 236, 225, 0.035);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  transition: border-color 200ms var(--ease);
}
.faq details[open] { border-color: rgba(255, 122, 89, 0.42); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.3;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 24;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.faq details[open] summary::after {
  background: var(--coral);
  transform: scale(1.15);
  box-shadow: 0 0 0 5px rgba(255, 122, 89, 0.16);
}

.faq details p { padding: 0 24px 24px; color: var(--bone-2); }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.form { margin-top: 34px; }

.field { margin-bottom: 22px; }

.field label {
  display: block;
  margin-bottom: 9px;
  font-family: var(--meta);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-2);
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(246, 236, 225, 0.05);
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  font-size: 1rem;
  transition: border-color 170ms var(--ease), background 170ms var(--ease), box-shadow 170ms var(--ease);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(160, 143, 168, 0.75); }

.field textarea { min-height: 156px; resize: vertical; line-height: 1.65; }

.field input:focus,
.field textarea:focus {
  outline: none;
  background: rgba(246, 236, 225, 0.09);
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.16);
}

.field__error {
  display: none;
  margin-top: 8px;
  font-family: var(--meta);
  font-size: 0.73rem;
  color: var(--coral);
}
.field.has-error input,
.field.has-error textarea { border-color: var(--coral); }
.field.has-error .field__error { display: block; }

.field__hint {
  margin-top: 8px;
  font-family: var(--meta);
  font-size: 0.7rem;
  color: var(--muted);
}

.form__note {
  margin-top: 20px;
  font-family: var(--meta);
  font-size: 0.72rem;
  line-height: 1.8;
  color: var(--muted);
}

.form__status {
  display: none;
  margin-top: 22px;
  padding: 16px 20px;
  background: rgba(111, 227, 196, 0.1);
  border: 1px solid rgba(111, 227, 196, 0.34);
  border-radius: var(--r-sm);
  font-family: var(--meta);
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--mint);
}
.form__status.is-visible { display: block; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 920px) {
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
}

.detail-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.detail-list li:last-child { border-bottom: 0; }
.detail-list span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--meta);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.detail-list a { color: var(--mint); text-decoration: none; border-bottom: 1px solid rgba(111, 227, 196, 0.45); }
.detail-list a:hover { color: var(--coral); border-color: var(--coral); }

/* --------------------------------------------------------------------------
   16. Page head (secondary pages)
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  padding-block: clamp(50px, 7vw, 92px) clamp(34px, 4vw, 54px);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  left: -12%; top: -60%;
  width: 640px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(180, 124, 255, 0.2), transparent 64%);
  pointer-events: none;
}
.page-head > * { position: relative; }
.page-head h1 {
  margin-top: 22px;
  font-size: clamp(2.5rem, 6.6vw, 4.6rem);
  letter-spacing: -0.035em;
  max-width: 16ch;
  font-variation-settings: "SOFT" 70, "WONK" 1, "opsz" 96;
}
.page-head .lede { margin-top: 22px; max-width: 50ch; }

/* --------------------------------------------------------------------------
   17. 404
   -------------------------------------------------------------------------- */
.gone {
  display: grid;
  place-items: center;
  min-height: 58vh;
  padding-block: clamp(58px, 8vw, 112px);
  text-align: center;
}

.gone__dish {
  position: relative;
  width: clamp(160px, 34vw, 230px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px dashed rgba(246, 236, 225, 0.2);
  background: radial-gradient(circle at 36% 30%, rgba(246, 236, 225, 0.05), transparent 60%);
  display: grid;
  place-items: center;
}

.gone__dish em {
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(2.6rem, 9vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--muted);
  font-variation-settings: "SOFT" 70, "WONK" 1, "opsz" 96;
}

.gone h1 { margin-top: 36px; font-size: clamp(2rem, 5.4vw, 3.2rem); }
.gone p { margin-inline: auto; margin-top: 20px; }
.gone .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  margin-top: clamp(40px, 6vw, 80px);
  padding-block: clamp(46px, 6vw, 74px) 32px;
  border-top: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(33, 20, 48, 0.55), transparent);
  color: var(--bone-2);
  font-size: 0.95rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--hair);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

.footer h4 {
  margin-bottom: 16px;
  font-family: var(--meta);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--bone);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 30;
}
.footer__brand svg { width: 34px; height: 34px; }

.footer p { max-width: 38ch; }

.footer__links li + li { margin-top: 12px; }
.footer__links a {
  font-family: var(--meta);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 160ms var(--ease);
}
.footer__links a:hover { color: var(--coral); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  font-family: var(--meta);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   19. Reveal + motion preferences
   -------------------------------------------------------------------------- */
.rise { opacity: 0; transform: translateY(20px); }
.rise.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rise { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   20. Print
   -------------------------------------------------------------------------- */
@media print {
  .domain-sale-banner, .nav, .nav-toggle, .viewer__btn { display: none !important; }
  body { background: #fff; color: #000; }
  .surface, .cell-card, .footer { background: #fff; border-color: #ccc; }
}
