/* ==========================================================================
   Gush-Tuss — MVP stylesheet
   Design tokens carried over from gush-tuss-style-board-v04.html
   ========================================================================== */

:root {
  /* Warm palette (V3): golden-hour tones layered onto the original neutral base */
  --bg-warm: #FAF3E6;
  --surface-warm-soft: #F3E8D2;
  --sunrise-tint: #F6DFB0;

  --bg: var(--bg-warm);
  --surface: #FFFFFF;
  --surface-soft: var(--surface-warm-soft);
  --ink: #383D3A;
  --ink-strong: #191C19;
  --ink-soft: #6C7168;
  --border: #E7E1D2;

  --green: #1F6B3A;
  --green-dark: #124024;
  --mustard: #E0A82E;
  --mustard-dark: #B4841F;
  --red: #C2402F;
  --cream: #FBF3DE;

  --font-head: 'Archivo Black', 'Archivo', sans-serif;
  --font-head2: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 2px 6px rgba(25,28,25,0.06), 0 12px 24px -14px rgba(25,28,25,0.18);
  --shadow-lift: 0 4px 10px rgba(25,28,25,0.08), 0 24px 40px -18px rgba(25,28,25,0.28);
  --max-width: 1200px;
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
/* Reversible visibility switch for content that's built and ready but not
   yet meant to be public (e.g. a product combo awaiting its other half).
   Remove this class from an element to bring it back — nothing else to
   undo, no markup/assets are touched by using it. */
.temporarily-hidden { display: none !important; }
/* stable both-edges: reserves symmetric gutter space on both sides so
   centered .wrap content sits on the true viewport center instead of being
   pushed ~15px left by a scrollbar that only ever occupies the right edge.
   Progressive enhancement — unsupported browsers just keep prior behavior. */
html { scroll-behavior: smooth; scrollbar-gutter: stable both-edges; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head2); font-weight: 800; color: var(--ink-strong); margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--green); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
  z-index: 200; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; top: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  border-radius: var(--radius-sm); padding: 14px 26px;
  border: 1.5px solid transparent; text-decoration: none; line-height: 1.2;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--cream); }
.btn-outline-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: rgba(255,255,255,0.18); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* Two-line "Email Customer Support:" / "support@..." CTA — label, then indented address */
.btn-email { flex-direction: column; align-items: flex-start; text-align: left; gap: 2px; line-height: 1.3; }
.btn-email-label { display: block; }
.btn-email-value { display: block; margin-left: 8px; font-size: 0.93em; opacity: 0.94; }

.btn[aria-disabled="true"],
.btn.is-pending {
  background: var(--surface-soft) !important;
  color: var(--ink-soft) !important;
  border-color: var(--border) !important;
  cursor: not-allowed;
  pointer-events: none;
}
.pending-note {
  display: inline-block; margin-top: 6px; font-size: 12.5px; color: var(--ink-soft);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(120deg, var(--bg-warm) 0%, var(--sunrise-tint) 140%);
  border-bottom: 3px solid var(--mustard);
}
/* Short-height mobile landscape (phone rotated horizontally): a sticky
   header eats a large share of the very limited vertical space and can
   cover the inline Assembly Video player. Let it scroll away normally
   instead of staying pinned — it still renders exactly the same, just
   not fixed to the viewport top. Desktop, tablet, and portrait phones
   are untouched. */
@media (orientation: landscape) and (max-height: 550px) {
  .site-header { position: static; }
  .section[id] { scroll-margin-top: 0; }
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 0;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { height: 58px; width: auto; }
.site-logo .logo-text-fallback { display: none; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-weight: 600; font-size: 14.5px; text-decoration: none; color: var(--ink);
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--green); border-bottom-color: var(--green); }
/* The nav-cta is a duplicate of the header-actions CTA, shown only inside
   the mobile dropdown (see @media below) — hidden here to avoid a second
   "Shop on Amazon" button appearing inline in the desktop nav trail. */
.main-nav .nav-cta { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; background: none; border: none; padding: 8px; border-radius: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink-strong); }
.nav-toggle:hover { background: var(--surface-soft); }

@media (max-width: 880px) {
  .main-nav {
    position: fixed; inset: 105px 0 0 0; background: var(--surface);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 24px 24px; transform: translateY(-8px); opacity: 0;
    pointer-events: none; transition: opacity .18s ease, transform .18s ease;
    border-top: 1px solid var(--border); overflow-y: auto;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .main-nav a.active { border-bottom: 1px solid var(--green); }
  .header-actions .btn-primary { display: none; }
  .main-nav .nav-cta { display: block; margin-top: 14px; width: 100%; text-align: center; }
  .nav-toggle { display: inline-flex; }
}

/* ---- Brand Hero (GUSH-TUSS, full-bleed, above the Product Hero) ---- */
.brand-hero {
  position: relative; overflow: hidden;
  min-height: 640px; display: flex; align-items: center;
}
.brand-hero-media { position: absolute; inset: 0; z-index: 0; }
.brand-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.brand-hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 28%, rgba(246,223,176,0.16), transparent 65%),
    linear-gradient(180deg, rgba(20,16,8,0.18) 0%, rgba(20,16,8,0.46) 62%, rgba(20,16,8,0.68) 100%);
}
.brand-hero-content {
  position: relative; z-index: 1; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 48px 24px;
}
.brand-hero-logo { height: clamp(64px, 9vw, 128px); width: auto; margin-bottom: 22px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35)); }
.brand-hero-slogan {
  font-family: var(--font-head2); font-weight: 800; color: #fff;
  font-size: clamp(20px, 2.6vw, 30px); line-height: 1.2; margin: 0 0 14px; max-width: 26ch;
}
.brand-hero-categories {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mustard); margin: 0 0 16px;
}
.brand-hero-sub { color: rgba(255,255,255,0.88); font-size: 15.5px; max-width: 44ch; margin: 0; }
@media (max-width: 640px) {
  .brand-hero { min-height: 520px; }
  .brand-hero-content { padding: 36px 20px; }
}

/* ---- Hero (Product Hero) ---- */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246,223,176,0.32) 0%, rgba(246,223,176,0) 14%),
    linear-gradient(160deg, var(--green-dark) 0%, var(--green) 62%, #2c7a45 100%);
}
.hero-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 40px; align-items: center; padding: 64px 0 56px;
}
.hero-wordmark {
  font-family: var(--font-head); font-weight: 400; color: #fff;
  font-size: clamp(26px, 3.4vw, 38px); letter-spacing: 0.03em; line-height: 1;
  margin: 0 0 16px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--mustard);
}
.hero-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--mustard); display: inline-block; }
.hero h1 {
  font-family: var(--font-head); font-weight: 400; color: #fff;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.01em; margin: 16px 0 18px;
}
.hero h1 .accent { color: var(--mustard); }
.hero-sub { color: rgba(255,255,255,0.86); font-size: 17px; max-width: 46ch; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: 20px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.22);
}
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
}
.hero-badge {
  position: absolute; top: -14px; left: 20px; display: flex; align-items: center; gap: 7px;
  background: #fff; color: var(--green-dark); font-family: var(--font-head2); font-weight: 800;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; padding: 9px 16px; border-radius: 20px;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,0.35);
}
.hero-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding: 40px 0 36px; }
  .hero-visual { order: -1; }
}

/* ---- Product page hero adjustments (nesting-box.html only) ----
   Scoped to body.page-nesting-box so the Home Product Hero (same .hero
   markup) is completely untouched. More presence for the product-name
   eyebrow, a notably smaller H1 so it stops dominating the page, and a
   more compact vertical rhythm so the hero fits a 1280px first viewport. */
body.page-nesting-box .hero-grid { padding: 40px 0 32px; }
body.page-nesting-box .hero-eyebrow { font-size: 16px; letter-spacing: 0.08em; }
body.page-nesting-box .hero h1 { font-size: clamp(24px, 2.6vw, 34px); margin: 14px 0 16px; }
body.page-nesting-box .hero-sub { font-size: 16px; margin-bottom: 20px; }
body.page-nesting-box .hero-actions { margin-bottom: 4px; }
/* Desktop only: keep all 3 hero CTAs on a single row instead of wrapping.
   Tablet/mobile (<=880px, single-column hero) keep the base .btn sizing and
   are free to stack. */
@media (min-width: 881px) {
  body.page-nesting-box .hero-actions, body.page-home .hero-actions { gap: 10px; flex-wrap: nowrap; }
  body.page-nesting-box .hero-actions .btn, body.page-home .hero-actions .btn { padding: 13px 18px; font-size: 14px; white-space: nowrap; }
}

/* ---- Sub-page header (non-home hero) ---- */
.page-header { background: var(--surface-soft); border-bottom: 1px solid var(--border); padding: 32px 0; }
.page-header .eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.page-header h1 { font-size: clamp(22px, 2.2vw, 26px); line-height: 1.15; margin: 0 0 6px; }
.page-header p { color: var(--ink-soft); max-width: 62ch; font-size: 14.5px; line-height: 1.45; margin: 0; }
@media (max-width: 640px) { .page-header { padding: 28px 0; } }

/* Products page header — the eyebrow was removed from the markup entirely
   (H1 + 1-line summary carry enough context on their own) and this block is
   compacted hard to bring the product cards (and their Shop on Amazon /
   Learn More CTAs) into view sooner. Scoped to body.page-products only;
   every other .page-header page is untouched. */
body.page-products .page-header { padding: 8px 0; }
body.page-products .page-header h1 { font-size: clamp(20px, 2vw, 23px); margin: 0 0 3px; }
.breadcrumbs { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumbs a { text-decoration: none; color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--green); text-decoration: underline; }

/* ---- Sections ---- */
.section { padding: 64px 0; }
.page-header + .section { padding-top: 24px; }
body.page-products .page-header + .section { padding-top: 14px; }
/* Offset anchor scroll targets so titles clear the sticky header (~105px tall on all breakpoints) */
.section[id] { scroll-margin-top: 130px; }
/* #details (Customize Your Privacy Curtains) lands with less top offset than
   other anchors, and its own top padding is trimmed, so the eyebrow/H2/intro
   text/visual composition all clear the first viewport. Scoped to
   body.page-nesting-box so no other anchor/page/section is affected. */
body.page-nesting-box #details { scroll-margin-top: 75px; padding-top: 28px; }
body.page-nesting-box #details .curtain-compare { margin-top: 16px; }
/* Re-assert the landscape-phone header fix (base rule above only) for this
   specific anchor — must stay last in source order so it wins the cascade
   tie against the equal-specificity rule directly above. */
@media (orientation: landscape) and (max-height: 550px) {
  body.page-nesting-box #details { scroll-margin-top: 0; }
}
/* Assembly Video section only — tighter top rhythm so the poster/player
   sits higher on screen; other sections/pages are untouched. Mobile keeps
   a comfortable rhythm (base rules below); desktop gets a much more
   aggressive compaction via the min-width override further down. */
#video { padding-top: 32px; scroll-margin-top: 125px; }
#video .section-eyebrow { margin-bottom: 8px; }
#video .section-head { margin-bottom: 26px; }
#video .wrap > p { margin-bottom: 0; }
@media (min-width: 641px) {
  #video { padding-top: 8px; }
  #video .section-eyebrow { margin-bottom: 4px; line-height: 1.3; }
  #video .section-head { margin-bottom: 8px; }
  #video .section-head h2 { line-height: 1.15; }
  #video .wrap > p { line-height: 1.3; }
}
.section-soft { background: var(--surface-soft); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.section-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 8px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); margin: 0; }
.section-note { color: var(--ink-soft); font-size: 14.5px; max-width: 50ch; }

/* ---- Product benefit grid ---- */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.benefit-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; }
.benefit-card .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.benefit-card .icon svg { width: 20px; height: 20px; stroke: var(--green); }
.benefit-card h3 { font-size: 16px; margin-bottom: 6px; }
.benefit-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* Dark quick-access cards for Assembly & Support (matches the Home's support-quicklink language).
   Scoped to .support-nav-card only — never overrides the base .benefit-card used elsewhere. */
.support-nav-card {
  background: #26352B; border-color: #486050; transition: background .15s ease;
}
.support-nav-card:hover { background: #1F6B3A; }
.support-nav-card .icon { background: rgba(255,255,255,0.08); }
.support-nav-card .icon svg { stroke: #E0A82E; }
.support-nav-card h3 { color: #fff; }
.support-nav-card p { color: rgba(255,255,255,0.78); }

/* Featured card toward the nesting-box.html Privacy Curtains section —
   centered below the dark support-nav-card grid. Reuses the exact
   .benefit-card + .support-nav-card visual language (same dark green
   background, border, radius, typography, hover) so it reads as part of
   the same family, just ~15% narrower for a slightly lower hierarchy. */
.curtain-feature-card-wrap { display: flex; justify-content: center; margin-top: 20px; }
.curtain-feature-card { width: 100%; max-width: 230px; padding-top: 25px; padding-bottom: 25px; }
.curtain-feature-card h3 { margin-bottom: 8px; }
.curtain-feature-cta { display: inline-block; font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--mustard); }
@media (max-width: 880px) { .curtain-feature-card { max-width: 192px; } }
@media (max-width: 560px) { .curtain-feature-card { max-width: 280px; } }

/* Balanced 2-row-of-4 layout for the Home's 8 product characteristics */
.benefit-grid-2x4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .benefit-grid-2x4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .benefit-grid-2x4 { grid-template-columns: 1fr; } }

/* ---- Configuration / setups grid ---- */
.config-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.config-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.config-media { height: 190px; background: var(--surface-soft); overflow: hidden; }
.config-media img { width: 100%; height: 100%; object-fit: cover; }
.config-body { padding: 16px 18px 18px; }
.config-body .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.config-body h3 { font-size: 15px; margin: 6px 0 4px; }
.config-body p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* ---- Product cards ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.pcard { background: var(--surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); position: relative; transition: transform .18s ease, box-shadow .18s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pcard-media { height: 190px; overflow: hidden; position: relative; background: var(--surface-soft); }
.pcard-media img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 640px) { .pcard-media { height: 260px; } }
.pcard-ribbon { position: absolute; top: 14px; left: 0; background: var(--green); color: #fff; font-family: var(--font-head2); font-weight: 800; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.05em; padding: 6px 14px 6px 16px; border-radius: 0 20px 20px 0; }
.pcard-ribbon.mustard { background: var(--mustard); color: #241a02; }
.pcard-ribbon.is-pending-badge { background: var(--surface-soft); color: var(--ink-soft); }
.pcard-body { padding: 16px; }
.pcard h3 { font-size: 17px; margin: 0 0 6px; }
.pcard p { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 10px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.status-label { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.pcard-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ---- Roosting / combined system band ---- */
.feature-band { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature-band img { border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.feature-band .badge-soon { display: inline-block; background: var(--mustard); color: #241a02; font-family: var(--font-head2); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; padding: 6px 13px; border-radius: 20px; margin-bottom: 14px; }
.feature-band h2 { font-size: clamp(22px, 2.8vw, 28px); }
.feature-band ul { padding-left: 18px; font-size: 14.5px; color: var(--ink); }
.feature-band li { margin-bottom: 6px; }
@media (max-width: 820px) { .feature-band { grid-template-columns: 1fr; } .feature-band .media-col { order: -1; } }

/* ---- World / category tiles (placeholder imagery) ---- */
.world-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.world-tile {
  position: relative; border-radius: var(--radius-md); min-height: 190px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
  background: linear-gradient(150deg, var(--surface-soft), #E3DCC8);
  border: 1px dashed var(--border); overflow: hidden;
}
.world-tile .icon-wrap {
  position: absolute; top: 16px; left: 16px; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center;
}
.world-tile .icon-wrap svg { width: 20px; height: 20px; stroke: var(--green-dark); }
.world-tile b { font-family: var(--font-head2); font-weight: 800; font-size: 14px; color: var(--ink-strong); display: block; }
.world-tile span.status { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.world-tile .img-spec {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-soft); text-align: center; padding: 30px 16px 60px;
  opacity: 0; background: rgba(251,250,247,0.94); transition: opacity .15s ease;
}
.world-tile:hover .img-spec, .world-tile:focus-within .img-spec { opacity: 1; }

/* World tile with a real photo filling the card (e.g. Garden & Growing) */
.world-tile--photo { background: none; border: none; }
.world-tile--photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.world-tile--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,16,8,0) 38%, rgba(20,16,8,0.72) 100%);
}
.world-tile--photo .icon-wrap { z-index: 2; background: rgba(255,255,255,0.85); }
.world-tile--photo b { position: relative; z-index: 2; color: #fff; }
.world-tile--photo span.status { position: relative; z-index: 2; color: rgba(255,255,255,0.82); }
@media (max-width: 880px) { .world-grid { grid-template-columns: repeat(2, 1fr); } }

/* Warm golden-hour wash for brand-world sections */
.section-sunrise { background: linear-gradient(180deg, var(--surface-warm-soft) 0%, var(--sunrise-tint) 145%); }

/* ---- Environmental image placeholders (discreet, no visible "placeholder" label) ----
   Purely decorative warm gradient + faint icon until a real photo is dropped in.
   To replace: swap the div.env-visual for an <img class="env-visual ..."> with the same
   aspect-ratio modifier class kept (or removed) — see the HTML comment above each instance
   for the recommended photo spec. */
.env-visual {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--sunrise-tint) 0%, var(--cream) 55%, var(--surface-warm-soft) 100%);
}
.env-visual--wide { aspect-ratio: 21 / 9; }
.env-visual--16x9 { aspect-ratio: 16 / 9; }
.env-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 28% 26%, rgba(255,255,255,0.55), transparent 60%);
}
.env-visual svg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 15%; min-width: 28px; max-width: 46px; height: auto;
  stroke: var(--mustard-dark); opacity: 0.32;
}
/* Real photo fills the placeholder shell — sits above the gradient/icon, no visible frame */
.env-visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Assembly & Support quick access (home) ---- */
.support-band {
  background: var(--ink-strong); border-radius: var(--radius-lg); padding: 44px 40px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
}
.support-band-copy .section-eyebrow { color: var(--mustard); }
.support-band-copy h2 { color: #fff; }
.support-band-copy p { color: rgba(255,255,255,0.78); }
.support-quicklinks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.support-quicklink {
  display: flex; align-items: center; gap: 12px; background: #26352B;
  border: 1px solid #486050; border-radius: 12px; padding: 14px 16px;
  text-decoration: none; color: #fff; font-weight: 700; font-size: 13.5px;
  transition: background .15s ease;
}
.support-quicklink svg { width: 20px; height: 20px; stroke: var(--mustard); flex-shrink: 0; }
.support-quicklink:hover { background: var(--green); }
.support-quicklink[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }
@media (max-width: 820px) { .support-band { grid-template-columns: 1fr; } .support-quicklinks { grid-template-columns: 1fr; } }

/* ---- Journal cards ---- */
.journal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.jcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.jcard-media { height: 170px; background: var(--surface-soft); overflow: hidden; }
.jcard-media img { width: 100%; height: 100%; object-fit: cover; }
.jcard-body { padding: 18px 20px; }
.jcard .category { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.jcard h3 { font-size: 15.5px; margin: 8px 0 6px; }
.jcard p { font-size: 13px; color: var(--ink-soft); margin: 0; }
.jcard a.card-link { text-decoration: none; color: inherit; display: block; }

.coming-soon-panel {
  border: 1px dashed var(--border); border-radius: var(--radius-md); padding: 48px 32px;
  text-align: center; background: var(--surface-soft);
}
.coming-soon-panel h3 { margin-bottom: 8px; }
.coming-soon-panel p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto; }

.draft-tag {
  display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 20px; font-weight: 700; margin-bottom: 18px;
}

/* ---- Forms ---- */
.form-grid { display: grid; gap: 18px; max-width: 640px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink-strong); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface); color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--ink-soft); background: var(--surface-soft); border-left: 3px solid var(--mustard); padding: 12px 14px; border-radius: 6px; }

/* ---- Important Assembly Notes — clean 2x2 grid on desktop, single column on mobile ---- */
.notes-list {
  list-style: none; margin: 14px 0 0; padding: 0; max-width: 820px;
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 36px; row-gap: 2px;
}
.notes-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; }
.notes-item:nth-child(n+3) { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; }
.notes-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--cream); color: var(--green-dark); font-family: var(--font-head2); font-weight: 800;
  font-size: 12px; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.notes-item h4 { font-size: 15px; margin: 0 0 3px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.notes-item p { font-size: 13.5px; color: var(--ink); margin: 0; }
.notes-flag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--mustard-dark); font-weight: 700; border: 1px solid var(--mustard); border-radius: 20px; padding: 2px 9px;
}
.notes-video-recommend { font-size: 14px; color: var(--ink-soft); max-width: 70ch; margin: 18px 0 0; }
@media (max-width: 640px) {
  .notes-list { grid-template-columns: 1fr; row-gap: 0; }
  .notes-item { border-bottom: 1px solid var(--border); padding: 10px 0; }
  .notes-item:nth-child(n+3) { border-top: none; margin-top: 0; padding-top: 10px; }
  .notes-item:last-child { border-bottom: none; }
}
.notes-video-recommend a { color: var(--green); font-weight: 700; margin-left: 4px; }

.manual-pdf-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; margin-top: 8px; max-width: 70ch;
}
.manual-pdf-card h3 { margin-bottom: 6px; font-size: 17px; }
.manual-pdf-card p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item summary { font-weight: 700; font-size: 15.5px; cursor: pointer; color: var(--ink-strong); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--green); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); }

/* ---- Video: poster and iframe share one inline container ---- */
.video-block { max-width: 900px; margin: 0 auto; }
/* Mobile-first: choices above player, both full width, stacked */
.video-row { display: flex; flex-direction: column; gap: 16px; margin: 22px 0 16px; }
.video-pending { border-radius: var(--radius-md); background: var(--surface-soft); border: 1px dashed var(--border); padding: 60px 24px; text-align: center; }

/* Click-to-load poster; a real <button> so it's keyboard/AT accessible.
   aspect-ratio matches the cover art's own 1280x720 (16:9) source exactly,
   so this reserves the correct space immediately (no layout shift while the
   image loads) with object-fit:contain still guaranteeing zero cropping. */
.video-consent-poster {
  display: block; width: 100%; margin: 0; padding: 0; border: 0; background: #fff;
  font: inherit; cursor: pointer; position: relative; border-radius: var(--radius-md);
  overflow: hidden; aspect-ratio: 16 / 9;
}
.video-consent-poster[hidden] { display: none; }
.video-consent-poster img { display: block; width: 100%; height: 100%; object-fit: contain; }
.video-consent-play {
  position: absolute; top: 16px; right: 16px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,16,8,0.62); color: #fff; border-radius: 50%;
}
.video-consent-play svg { margin-left: 2px; }
.video-consent-note { font-size: 13px; color: var(--ink-soft); margin: 14px 0 0; max-width: 62ch; }

/* The source cover art is exactly 16:9, so the iframe host uses the same
   ratio via aspect-ratio — its computed height matches the poster's
   height:auto rendering exactly, so swapping one for the other causes no
   layout jump. */
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-md); overflow: hidden; background: var(--ink-strong); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Front/Rear choices: single column, stacked one above the other */
.video-choices {
  display: grid; grid-template-columns: 1fr; gap: 12px; width: 100%;
}
.video-choice {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-align: left;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 15px 18px; font-family: inherit; transition: border-color .15s ease, background .15s ease;
}
.video-choice:hover { border-color: var(--green); }
.video-choice[aria-pressed="true"] { border-color: var(--green); background: var(--cream); }
.video-choice-title { font-family: var(--font-head2); font-weight: 800; font-size: 15px; color: var(--ink-strong); }
.video-choice-sub { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--ink-soft); }
.video-choice-cta { margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--green); }
.video-player { width: 100%; }

/* Desktop: choices in a left column, poster/iframe in a right column */
@media (min-width: 641px) {
  .video-row { flex-direction: row; align-items: center; justify-content: center; gap: 24px; margin-top: 10px; }
  .video-choices { width: 245px; flex-shrink: 0; }
  .video-player { width: 610px; flex-shrink: 0; }
}

/* ---- Nesting Box product page: Customize Your Privacy Curtains ---- */
.curtain-intro-copy { max-width: 62ch; color: var(--ink-soft); font-size: 15px; margin: 14px 0 0; }

/* Two-column intro: copy left, standard→customized visual right. Natural
   DOM order (text first) so mobile stacks text above the visual, with no
   reordering needed. */
.curtain-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 28px; }
@media (max-width: 880px) { .curtain-compare { grid-template-columns: 1fr; gap: 28px; } }

/* Standard curtain → arrow → customized curtain. object-fit:contain on a
   fixed-ratio box guarantees neither photo is ever cropped, even though the
   two source photos have very different native aspect ratios. */
.curtain-visual-compare { display: flex; align-items: center; gap: 14px; }
.curtain-visual-item {
  flex: 1; min-width: 0; aspect-ratio: 1 / 1; border-radius: var(--radius-md);
  overflow: hidden; background: var(--surface-soft); box-shadow: var(--shadow-card);
}
.curtain-visual-item img { width: 100%; height: 100%; object-fit: contain; display: block; }
.curtain-visual-arrow { flex-shrink: 0; color: var(--green); display: flex; }
.curtain-visual-arrow svg { width: 28px; height: 28px; }
@media (max-width: 560px) {
  .curtain-visual-compare { flex-direction: column; }
  .curtain-visual-arrow svg { transform: rotate(90deg); }
}

/* "From Fabric to Finished Curtain" — compact fabric→result pairs, no
   product-style naming. A lightweight CSS-only horizontal scroller (no
   JS/library) on narrow screens; a static row once there's room for all
   four side by side. */
.curtain-pairs {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; margin: 0; -webkit-overflow-scrolling: touch;
}
.curtain-pair {
  scroll-snap-align: start; flex: 0 0 auto; width: 240px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden;
}
.curtain-pair-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.curtain-pair-imgs img { width: 100%; height: 150px; object-fit: cover; display: block; }
.curtain-pair-labels { display: flex; justify-content: space-between; padding: 6px 12px 10px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
@media (min-width: 900px) {
  .curtain-pairs { overflow-x: visible; scroll-snap-type: none; flex-wrap: wrap; justify-content: space-between; }
  .curtain-pair { width: calc(25% - 14px); }
}

/* "Four Looks. One Nesting Box." — compact photo grid, unlabeled */
.looks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.looks-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3 / 4; background: var(--surface-soft); }
.looks-item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .looks-grid { grid-template-columns: repeat(2, 1fr); } }

/* Closing CTA — lighter-weight than .assembly-help-band below it, so the
   two don't read as duplicate blocks back to back. */
.curtain-closing-cta { text-align: center; max-width: 56ch; margin: 56px auto 0; }
.curtain-closing-cta h3 { margin-bottom: 8px; }
.curtain-closing-cta p { color: var(--ink-soft); margin-bottom: 18px; }

/* "Need Help With Assembly?" band — a simpler, single-column relative of
   Home's .support-band (no quicklinks grid, so the video/PDF entry points
   aren't duplicated here — just one link out to Assembly & Support). */
.assembly-help-band { background: var(--ink-strong); border-radius: var(--radius-lg); padding: 44px 40px; text-align: center; }
.assembly-help-band h2 { color: #fff; margin-bottom: 10px; }
.assembly-help-band p { color: rgba(255,255,255,0.78); max-width: 52ch; margin: 0 auto 22px; }

/* ---- Footer ---- */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.85); padding: 56px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 13.5px; max-width: 34ch; }
.footer-logo { height: 28px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- 404 ---- */
.error-page { text-align: center; padding: 100px 0; }
.error-page .code { font-family: var(--font-head); font-size: clamp(60px, 12vw, 120px); color: var(--green); line-height: 1; }
.error-page h1 { margin-top: 8px; }
.error-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
