/* ── Verreful house style — document pages (privacy / terms / support / guide)
   The homepage carries the full manifesto treatment inline; this sheet gives
   the inner documents the same world: oxblood ground, Bodoni display, gold
   hairlines. Mechanisms unchanged: html[data-theme] from site.js, EN/TR via
   body[data-lang] block visibility. ─────────────────────────────────────── */

@font-face { font-family: 'Bodoni Moda'; font-style: normal; font-weight: 400 500; font-display: swap; src: url("assets/fonts/bodoni-latin.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+FEFF, U+FFFD; }
@font-face { font-family: 'Bodoni Moda'; font-style: normal; font-weight: 400 500; font-display: swap; src: url("assets/fonts/bodoni-latinext.woff2") format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Bodoni Moda'; font-style: italic; font-weight: 400; font-display: swap; src: url("assets/fonts/bodoni-italic-latin.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+FEFF, U+FFFD; }
@font-face { font-family: 'Bodoni Moda'; font-style: italic; font-weight: 400; font-display: swap; src: url("assets/fonts/bodoni-italic-latinext.woff2") format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --g1:#1A0A0C; --g2:#4A1020; --g3:#5A1826;
  --ink:#EADDC7; --muted:#C6B294; --gold:#D9B45E;
  --hair:rgba(217,180,94,0.28); --panel:rgba(239,210,146,0.05);
  --serif:'Bodoni Moda','Didot','Bodoni 72',Georgia,serif;
}
html[data-theme="light"] {
  /* Glacier & Cassis (08-15): daylight = the cold room. Frost grounds, dark
     cassis as the wine-note accent, glass-teal hairlines — matches the app's
     light theme token-for-token in role. Dark above is untouched. */
  --g1:#F4F7F7; --g2:#EFF2F2; --g3:#E4EBEB;
  --ink:#22242A; --muted:#4E5A5C; --gold:#4A2140;
  --hair:rgba(94,139,143,0.35); --panel:rgba(74,33,64,0.05);
}

* { box-sizing: border-box; }
/* The estate bands are DELIBERATELY wider than the screen so the plate's dead
   quarters fall off the sides — but nothing was clipping them, so the page
   itself could be dragged sideways on a phone (founder 08-24: "left to right
   behaves weird"). `clip` rather than `hidden`: hidden turns the element into a
   scroll container, which breaks position:sticky and can trap fixed overlays
   like the beta door. */
html { overflow-x: clip; }
body { overflow-x: clip; }

body {
  margin: 0; min-height: 100vh; min-height: 100svh;
  background: linear-gradient(172deg, var(--g1) 0%, var(--g2) 58%, var(--g3) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.7;
}
::selection { background: #C9A24B; color: #1A0A0C; }
html[data-theme="light"] ::selection { background: #4A1020; color: #EFD292; }

/* language blocks (verbatim mechanism from the old sheet) */
body[data-lang="en"] [data-lang="tr"] { display: none !important; }
body[data-lang="tr"] [data-lang="en"] { display: none !important; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10;
  background: var(--gold); color: #1A0A0C; padding: 8px 14px; font-size: 13px;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 860px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
header.wrap { max-width: 1160px; }          /* chrome matches the landing page */

/* ── nav ─────────────────────────────────────────────────────────────── */

/* Light-mode banner (08-15): the app's daylight signature is a DARK CASSIS
   header over a frost body — the site follows. The band is a dark island, so
   it borrows the dark theme's ink/gold inside. Full-bleed via the 50vw trick
   (.nav lives inside a max-width wrap). */
html[data-theme="light"] .nav {
  background: linear-gradient(180deg, #31152B 0%, #4A2140 65%, #56264A 100%);
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%); padding-right: calc(50vw - 50%);
  border-bottom: 1px solid rgba(217,180,94,0.28);
}
html[data-theme="light"] .nav .brandword,
html[data-theme="light"] .nav .brand .word { color: #EADDC7; }
html[data-theme="light"] .nav .navtag,
html[data-theme="light"] .nav .brand-tag { color: #D9B45E; }
html[data-theme="light"] .nav .nav-link { color: #C6B294; }
html[data-theme="light"] .nav .nav-link:hover { color: #D9B45E; }
html[data-theme="light"] .nav .theme-toggle button,
html[data-theme="light"] .nav .lang-toggle button { color: #C6B294; }
html[data-theme="light"] .nav .theme-toggle button.active,
html[data-theme="light"] .nav .lang-toggle button.active { color: #D9B45E; background: rgba(239,210,146,0.08); }

.nav {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding: calc(30px + env(safe-area-inset-top)) 0 30px;
  /* No underline — the homepage nav dropped its rule and the inner pages
     follow (founder 08-29: one nav, every page). */
}
/* Identical to the landing page: brand word left, tagline right, nothing else. */
.brandword {
  font-family: var(--serif); font-size: 19px; letter-spacing: 0.34em;
  text-transform: uppercase; padding-left: 0.34em; color: var(--ink); text-decoration: none;
}
.navtag { font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.brand { display: flex; align-items: center; text-decoration: none; color: inherit; }
.brand .mark { display: none; }                    /* the house nav is typographic */
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand .word {
  font-family: var(--serif); font-size: 19px; font-weight: 400;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink);
}
.brand-tag { font-size: 9px; letter-spacing: 0.3em; color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-link {
  color: var(--muted); text-decoration: none;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-link:hover { color: var(--gold); }

.theme-toggle, .lang-toggle { display: flex; border: 1px solid var(--hair); overflow: hidden; }
.theme-toggle button, .lang-toggle button {
  background: transparent; border: none; cursor: pointer; font-family: inherit;
  color: var(--muted); font-size: 11px; letter-spacing: 0.1em;
  padding: 6px 10px; display: flex; align-items: center;
}
.theme-toggle button svg { width: 14px; height: 14px; }
.theme-toggle button.active, .lang-toggle button.active { color: var(--gold); background: var(--panel); }
.theme-toggle button:hover, .lang-toggle button:hover { color: var(--gold); }

/* ── document body ───────────────────────────────────────────────────── */
main.wrap { padding-top: 64px; padding-bottom: 72px; }
/* Headings sit over the estate's lower vines — a soft ground-shadow lifts
   them clear without dimming the house further (founder 08-29). */
.page > h1, .page .updated { text-shadow: 0 2px 14px rgba(26, 8, 12, 0.85), 0 0 2px rgba(26, 8, 12, 0.9); }
html[data-theme="light"] .page > h1, html[data-theme="light"] .page .updated { text-shadow: 0 2px 14px rgba(245, 239, 230, 0.9), 0 0 2px rgba(245, 239, 230, 0.95); }
.page > h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4.5vw, 46px); line-height: 1.12;
  margin: 0 0 6px; letter-spacing: 0.01em; text-wrap: balance;
}
.updated {
  font-family: var(--serif); font-style: italic;
  color: var(--muted); font-size: 14.5px; margin: 0 0 40px;
}
.page h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(21px, 2.4vw, 26px); line-height: 1.2;
  margin: 44px 0 12px; padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.page h3 {
  font-family: var(--serif); font-weight: 400; font-size: 18px;
  margin: 26px 0 8px; color: var(--ink);
}
.page p, .page li { font-size: 15px; line-height: 1.8; color: var(--muted); text-wrap: pretty; }
.page p strong, .page li strong { color: var(--ink); font-weight: 600; }
.page ul, .page ol { padding-left: 22px; margin: 12px 0; }
.page li { margin: 8px 0; }
.page li::marker { color: var(--gold); }
.page a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--hair); }
.page a:hover { border-bottom-color: var(--gold); }
.page table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 14px; }
.page th, .page td { border: 1px solid var(--hair); padding: 9px 12px; text-align: left; color: var(--muted); }
.page th { color: var(--gold); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.page img { max-width: 100%; }
.page blockquote {
  margin: 20px 0; padding: 4px 0 4px 20px; border-left: 2px solid var(--gold);
  font-family: var(--serif); font-style: italic; color: var(--ink);
}
.page code { font-family: ui-monospace, Menlo, monospace; font-size: 0.9em; color: var(--ink); }

/* ── footer ── identical to the landing page on every page ───────────── */
.wrap.foot {
  max-width: 1160px;
  border-top: 1px solid var(--hair);
  padding-top: 36px; padding-bottom: calc(44px + env(safe-area-inset-bottom));
  margin-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 20px; font-size: 12px; color: var(--muted);
}
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { letter-spacing: 0.08em; color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--gold); }
.foot-resp { font-family: var(--serif); font-style: italic; font-size: 13.5px; }
.foot-meta { display: flex; align-items: center; gap: 14px; }
.foot-meta a { color: var(--muted); text-decoration: none; }
.foot-meta a:hover { color: var(--gold); }
.foot-sep { width: 1px; height: 12px; background: var(--hair); }
.lang-toggle { display: inline-flex; gap: 10px; border: none; }
.langbtn {
  background: transparent; border: none; cursor: pointer; font-family: inherit;
  font-size: 12px; letter-spacing: 0.1em; padding: 2px 0;
  color: var(--muted); border-bottom: 1px solid transparent;
}
.langbtn.active { color: var(--gold); border-bottom-color: var(--gold); }
.langbtn:hover { color: var(--gold); }
.foot-fine { display: inline-block; margin-top: 6px; font-size: 12px; opacity: .7; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ── guide page (app manual — lives inside the house, same world) ─────── */
.eyebrow, .kicker {
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.guide-hero { text-align: center; padding: 48px 0 14px; max-width: 46em; margin: 0 auto; }
.guide-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4.4vw, 44px); line-height: 1.12; margin: 14px 0;
  letter-spacing: 0.01em; text-wrap: balance;
}
.guide-hero p { color: var(--muted); font-size: 16px; margin: 0; }
.guide-toc { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 24px 0 8px; max-width: 760px; margin: 0 auto; }
.guide-toc a {
  color: var(--muted); text-decoration: none; font-size: 12px; letter-spacing: 0.08em;
  border: 1px solid var(--hair); padding: 8px 15px; background: var(--panel);
}
.guide-toc a:hover, .guide-toc a:focus-visible { color: var(--gold); border-color: var(--gold); }
.guide-sec {
  display: grid; grid-template-columns: 1fr 300px;
  gap: clamp(28px, 5vw, 64px); align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--hair);
}
.guide-sec:last-of-type { border-bottom: none; }
/* ── Room banners. The guide is a road through three rooms; these announce
   which room you have walked into, and everything under one is an instrument
   of it rather than a feature in its own right. ── */
.room-head { padding: 76px 0 8px; text-align: center; }
.room-head .room-num {
  font-family: 'Bodoni Moda', Didot, 'Times New Roman', serif;
  font-size: 15px; letter-spacing: 0.32em; color: var(--gold);
  padding-left: 0.32em; margin-bottom: 14px;
}
.room-head h2 {
  font-family: 'Bodoni Moda', Didot, 'Times New Roman', serif;
  font-weight: 400; font-size: clamp(30px, 4vw, 46px); line-height: 1.14;
  margin: 0 0 16px; letter-spacing: 0.01em;
}
.room-head .lede {
  color: var(--muted); font-size: 16px; line-height: 1.8;
  max-width: 54ch; margin: 0 auto; text-wrap: pretty;
}
.room-head .rule {
  width: 1px; height: 46px; margin: 26px auto 0;
  background: linear-gradient(var(--gold), transparent);
}
/* Sections with no screenshot yet (the social ladder) run full width rather
   than leaving the 300px phone column standing empty. */
.guide-sec.solo { grid-template-columns: 1fr; }
.guide-sec.solo .guide-txt { max-width: 64ch; }
/* The arrival. Centered, no rule beneath — the road ends here. */
.guide-sec.arrival { grid-template-columns: 1fr; justify-items: center; text-align: center; border-bottom: none; padding-bottom: 24px; }
.guide-sec.arrival .guide-txt { max-width: 56ch; }
.guide-sec.arrival .line {
  font-family: 'Bodoni Moda', Didot, 'Times New Roman', serif;
  font-style: italic; font-size: 20px; line-height: 1.5;
  color: var(--ink); margin: 22px 0 0;
}
.guide-sec.flip { grid-template-columns: 300px 1fr; }
.guide-sec.flip .guide-txt { order: 2; }
.guide-sec.flip .guide-img { order: 1; }
.guide-txt .kicker { margin-bottom: 12px; }
.guide-txt h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 14px; letter-spacing: 0.01em;
  border: none; padding: 0;
}
.guide-txt p { color: var(--muted); font-size: 15px; margin: 0 0 12px; line-height: 1.75; }
.guide-txt ul { padding-left: 20px; margin: 10px 0 12px; }
.guide-txt li { color: var(--muted); font-size: 14.5px; margin-bottom: 7px; }
.guide-txt li::marker { color: var(--gold); }
.guide-txt strong { color: var(--ink); font-weight: 600; }
.guide-img { display: flex; justify-content: center; }
.guide-img .phone { width: 100%; max-width: 300px; margin: 0; }
.phone img {
  width: 100%; height: auto; display: block;
  border-radius: clamp(20px, 3.2vw, 34px);
  border: 1px solid var(--hair);
  outline: 6px solid rgba(0,0,0,0.55);
  outline-offset: -1px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.phone figcaption {
  text-align: center; font-family: var(--serif); font-style: italic;
  color: var(--muted); font-size: 13.5px; margin-top: 12px;
}
.guide-faq { padding: 64px 0 80px; max-width: 720px; margin: 0 auto; }
.guide-faq h2 {
  font-family: var(--serif); font-weight: 400; text-align: center;
  font-size: clamp(24px, 3vw, 32px); margin: 0 0 34px; border: none; padding: 0;
}
.guide-faq details { border: 1px solid var(--hair); background: var(--panel); padding: 16px 20px; margin-bottom: 12px; }
.guide-faq summary {
  cursor: pointer; font-weight: 600; font-size: 15px; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.guide-faq summary::-webkit-details-marker { display: none; }
.guide-faq summary::after { content: "+"; color: var(--gold); font-size: 19px; flex: none; }
.guide-faq details[open] summary::after { content: "−"; }
.guide-faq details p { color: var(--muted); font-size: 14.5px; margin: 12px 0 0; }
.cta { text-align: center; padding: 24px 0 88px; }
.cta h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3.2vw, 37px); margin: 0 0 12px; border: none; padding: 0;
}
.cta p { color: var(--muted); max-width: 36em; margin: 0 auto 28px; font-size: 15px; }
.cta-btn {
  display: inline-block; background: transparent;
  border: 1px solid var(--gold); color: var(--gold); text-decoration: none;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 14px 28px 14px calc(28px + 0.28em); transition: all .25s;
}
.cta-btn:hover { background: linear-gradient(160deg, #EFD292, #C9A24B); color: #1A0A0C; border-color: transparent; }
.cta-row { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); text-decoration: none; font-size: 13.5px; padding: 8px 4px; }
.social-link:hover { color: var(--gold); }
.social-link svg { width: 20px; height: 20px; color: var(--gold); }

/* guide page is wider than the legal docs */
body.guide main.wrap { max-width: 1060px; }   /* content only — chrome stays site-wide */

@media (max-width: 760px) {
  .guide-sec, .guide-sec.flip { grid-template-columns: 1fr; }
  .guide-sec.flip .guide-txt { order: 1; }
  .guide-sec.flip .guide-img { order: 2; }
}

/* Demo-account disclaimer under the guide footer — quiet, but present. */
.foot-fine { display: inline-block; margin-top: 6px; font-size: 12px; opacity: .7; }

/* ── site-wide chrome ────────────────────────────────────────────────────
   Header and footer are the same width on every page (matching the landing
   page); only the reading column varies per page type. Declared last so a
   page-scoped rule cannot quietly widen or narrow the frame. */
header.wrap, .wrap.foot { max-width: 1160px; }

/* ─────────────────────────────────────────────────────────────────────────
   THE ESTATE CROWNS THE SITE (08-24) — the same engraving the app wears on
   every page, so the house reads as one place across phone and web.

   The app's laws, translated to CSS:
   · CENTRED BY ARITHMETIC. The plate is 3.22:1 and its ink only spans
     24.5%–75.5% of its width; the rest is dead ground. Width is set past
     100vw so those dead quarters fall off the sides instead of framing the
     drawing in two dark bars — the same 1.45x "opening" the app uses.
   · HUNG FROM THE HOUSE, not from the plate's edge. The manor sits 22.5%
     down the drawing, so the band is pulled up: its sky fills the space
     behind the nav while the house itself lands in clear air below.
   · IT FADES, never cuts. A mask carries the engraving into the page ground
     so the vine rows end deliberately rather than at a hard edge.
   ───────────────────────────────────────────────────────────────────────── */
header.hero { position: relative; isolation: isolate; }
header.hero::before {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  top: -140px;
  top: min(-15svh, -140px); left: 50%; transform: translateX(-50%);   /* svh, not vh — see index.html */
  width: max(100vw, min(1900px, 148vw));
  aspect-ratio: 1600 / 497;
  background: url('assets/estate-dark.jpg') center center / cover no-repeat;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 44%, rgba(0,0,0,0.966) 50.22%, rgba(0,0,0,0.874) 56.44%, rgba(0,0,0,0.741) 62.67%, rgba(0,0,0,0.583) 68.89%, rgba(0,0,0,0.417) 75.11%, rgba(0,0,0,0.259) 81.33%, rgba(0,0,0,0.126) 87.56%, rgba(0,0,0,0.034) 93.78%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 44%, rgba(0,0,0,0.966) 50.22%, rgba(0,0,0,0.874) 56.44%, rgba(0,0,0,0.741) 62.67%, rgba(0,0,0,0.583) 68.89%, rgba(0,0,0,0.417) 75.11%, rgba(0,0,0,0.259) 81.33%, rgba(0,0,0,0.126) 87.56%, rgba(0,0,0,0.034) 93.78%, transparent 100%);
}
html[data-theme="light"] header.hero::before {
  background-image: url('assets/estate-light.jpg');
  /* The light plate carries ink edge to edge where the dark one has dead
     quarters, so it is opened less — cropping it as hard would cut real
     drawing away. Measured, not guessed. */
  opacity: 0.9;
}
/* The mark and copy sit ON the engraving, so they need their own ground. */
header.hero .vmark img { box-shadow: 0 12px 40px rgba(0,0,0,.45); }
html[data-theme="light"] header.hero .vmark img { box-shadow: 0 12px 40px rgba(31,18,28,.28); }

@media (max-width: 720px) {
  header.hero::before { width: 235vw; top: -120px; top: min(-14svh, -120px); }
  /* A phone is far narrower than the plate: open it further so the estate
     still reads as a house rather than a hillside. */
}

/* The inner rooms wear the same crown, quieter (08-24). In the app the
   ordinary pages share ONE band height and the heroes are taller; here the
   front door keeps its full estate and privacy/terms/support get a shallower
   band, so moving between them feels like the same house rather than a jump. */
header.wrap { position: relative; isolation: isolate; }
header.wrap::before {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  /* MEASURED, not guessed (founder 08-29: "cut off right above the roof",
     worse on mobile). The manor's chimneys sit ~19.5% down the 1600x497
     plate; at desktop widths the art renders 535-590px tall, so the house
     top lies 104-115px into it. The old -150px hoist put the roof ~40px
     ABOVE the viewport (and on phones, 235vw shrinks the art to ~285px —
     house top 56px — so -130px hid the ENTIRE house). -60px leaves the
     chimneys ~45px of air at every desktop width. */
  top: -60px; left: 50%; transform: translateX(-50%);
  width: max(100vw, min(1900px, 148vw));
  aspect-ratio: 1600 / 497;
  background: url('assets/estate-dark.jpg') center center / cover no-repeat;
  /* Quieter than the homepage ON PURPOSE (08-24 design, re-learned 08-29:
     document text starts high, where the mask is still near-solid — at 0.85
     the headings drowned in engraving. The house shows FULLY now; it just
     whispers behind the words). */
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 44%, rgba(0,0,0,0.966) 50.22%, rgba(0,0,0,0.874) 56.44%, rgba(0,0,0,0.741) 62.67%, rgba(0,0,0,0.583) 68.89%, rgba(0,0,0,0.417) 75.11%, rgba(0,0,0,0.259) 81.33%, rgba(0,0,0,0.126) 87.56%, rgba(0,0,0,0.034) 93.78%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 44%, rgba(0,0,0,0.966) 50.22%, rgba(0,0,0,0.874) 56.44%, rgba(0,0,0,0.741) 62.67%, rgba(0,0,0,0.583) 68.89%, rgba(0,0,0,0.417) 75.11%, rgba(0,0,0,0.259) 81.33%, rgba(0,0,0,0.126) 87.56%, rgba(0,0,0,0.034) 93.78%, transparent 100%);
}
html[data-theme="light"] header.wrap::before {
  background-image: url('assets/estate-light.jpg');
  opacity: 0.5;
}
@media (max-width: 720px) {
  /* Same as the homepage (founder 08-29): the hero's -120px hangs from a
     header that sits ~70px below the page top, so its EFFECTIVE offset is
     ~-50px. Document headers contain their nav, so -50px here mirrors it. */
  header.wrap::before { width: 235vw; top: -50px; }
}

/* NO fixed background on touch screens. `background-attachment: fixed` is
   notoriously janky in mobile Safari — the ground lags or jumps during a
   scroll while everything painted over it (the estate band) moves normally,
   so the artwork appears to slide against the page (founder 08-24: "moves
   down as I scroll", "goes down more"). Desktop keeps the fixed ground. */
@media (max-width: 900px), (hover: none) {
  body { background-attachment: scroll; }
}


/* ── The support form (08-29) — same hardware as the waitlist door ─────── */
.support-form { display: flex; flex-direction: column; gap: 16px; max-width: 34em; margin-top: 8px; }
.support-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; letter-spacing: 0.06em; color: var(--muted); }
.support-form input, .support-form textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--hair); border-radius: 8px;
  padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink); resize: vertical;
}
html[data-theme="light"] .support-form input, html[data-theme="light"] .support-form textarea { background: rgba(31,18,28,0.04); }
.support-form input:focus, .support-form textarea:focus { outline: none; border-color: var(--gold); }
.support-form button {
  align-self: flex-start; cursor: pointer; font: inherit; font-size: 14px; letter-spacing: 0.12em;
  padding: 12px 26px; border-radius: 999px; border: 1px solid var(--gold);
  background: transparent; color: var(--gold); transition: background 0.2s, color 0.2s;
}
.support-form button:hover { background: var(--gold); color: var(--bg, #1A0A0C); }
.support-form button:disabled { opacity: 0.5; cursor: default; }
.support-note { font-size: 14px; color: var(--gold); }
