/* ═══════════════════════════════════════════════════════════
   THE DIFFERENCE IS HIM — Shared Stylesheet
   Warm & Family · Cream · Parchment · Navy · Gold · Amber
═══════════════════════════════════════════════════════════ */

:root {
  --cream:   #FDFAF4;
  --cream2:  #FAF4E8;
  --parch:   #F5E6C8;
  --parch2:  #EDD9A3;
  --navy:    #0D0D2B;
  --navy2:   #1a1a4a;
  --navy3:   #242452;
  --gold:    #E9A84C;
  --goldSoft:#F2C179;
  --amber:   #C17B2E;
  --ember:   #7B4F1E;
  --warm:    #4A3728;
  --muted:   #7A6A5A;
  --light:   #A89880;
  --white:   #ffffff;
  --teal:    #1D9E75;
  --tealDk:  #0F6E56;
  --purple:  #7F77DD;
  --purpleDk:#3C3489;
  --rose:    #D4537E;
  --green:   #3B6D11;
  --border:  rgba(74,55,40,0.12);
  --border2: rgba(74,55,40,0.22);
  --r-sm:    8px;
  --r-md:    12px;
  --r-lg:    16px;
  --r-xl:    24px;
  --shadow:  0 8px 32px rgba(74,55,40,0.08);
  --shadow2: 0 16px 48px rgba(74,55,40,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--warm);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--navy); color: var(--gold);
  padding: .6rem 1rem; z-index: 999;
  font-size: .85rem; font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; }
h3 { font-size: 1.25rem; font-weight: 400; }
p  { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.75; }
a  { color: var(--amber); text-decoration: none; transition: color .15s; }
a:hover { color: var(--ember); }
.eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: .6rem; display: block;
}
.serif-italic { font-family: 'Playfair Display', serif; font-style: italic; }
.scripture {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem;
  color: var(--ember);
  padding-left: 1.1rem;
  border-left: 3px solid var(--gold);
  max-width: 480px;
}
.scripture cite {
  display: block; font-style: normal; font-size: .75rem;
  color: var(--light); letter-spacing: .1em; text-transform: uppercase;
  margin-top: .35rem; font-weight: 700;
}

/* ─── LAYOUT ─────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--parch); }
.section-cream2 { background: var(--cream2); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.75); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy .eyebrow { color: var(--gold); }
.section-navy p, .section-navy li { color: rgba(255,255,255,0.65); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.25rem; }
.text-center { text-align: center; }
.mb-sm { margin-bottom: .75rem; }
.mb-md { margin-bottom: 1.25rem; }
.mb-lg { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-gold, .btn-ghost {
  display: inline-block; font-size: .9rem; font-weight: 700;
  letter-spacing: .04em; padding: .8rem 2rem;
  border-radius: 99px; transition: all .2s;
  border: 2px solid transparent; cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-primary { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--amber); border-color: var(--amber); color: var(--white); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--navy); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover, .btn-gold:focus-visible { background: var(--amber); border-color: var(--amber); color: var(--white); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 2px;
}

/* ─── NAV ────────────────────────────────────── */
#main-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
#main-nav.scrolled { box-shadow: 0 2px 20px rgba(74,55,40,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.nav-brand-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--navy); line-height: 1; }
.nav-brand-tag {
  font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--amber); font-weight: 700;
}
.nav-tabs { display: flex; align-items: center; gap: .15rem; background: var(--parch); border-radius: 99px; padding: 4px; }
.nav-tab {
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
  padding: .45rem 1.1rem; border-radius: 99px; cursor: pointer;
  color: var(--muted); transition: all .15s;
  border: none; background: transparent; text-decoration: none;
  font-family: 'Lato', sans-serif;
  display: inline-flex; align-items: center;
  line-height: 1;
}
.nav-tab:hover { color: var(--navy); }
.nav-tab.active, .nav-tab[aria-current="page"] { background: var(--navy); color: var(--gold); }
.nav-cta-wrap { display: flex; align-items: center; gap: .75rem; }
.nav-give { font-size: .72rem; font-weight: 700; color: var(--amber); letter-spacing: .04em; text-transform: uppercase; }
.nav-story {
  font-size: .8rem; font-weight: 700;
  background: var(--gold); color: var(--navy);
  padding: .45rem 1.1rem; border-radius: 99px;
  transition: background .2s; text-decoration: none;
}
.nav-story:hover { background: var(--amber); color: var(--white); }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.mmb-line { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .2s; }
.mobile-nav {
  display: none; background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mob-tab {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--navy); padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mob-tab:last-child { border-bottom: none; }

/* ─── HOME: HERO ─────────────────────────────── */
.hero {
  background: var(--parch);
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-accent {
  position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(233,168,76,0.18) 0%, rgba(233,168,76,0) 70%);
  pointer-events: none;
}
.hero-accent2 {
  position: absolute; left: -40px; bottom: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(193,123,46,0.1) 0%, rgba(193,123,46,0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 640px; }
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(13,13,43,0.06);
  border: 1px solid var(--border2);
  color: var(--warm);
  padding: .35rem .85rem; border-radius: 99px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero-kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(193,123,46,0.2);
}
.hero-tease {
  font-size: 1rem; color: var(--ember);
  margin-top: 1.25rem; max-width: 520px;
  font-family: 'Playfair Display', serif; font-style: italic;
}
.hero-founders { font-size: .85rem; font-weight: 300; color: var(--light); margin-top: 1.5rem; }

/* ─── HERO ILLUSTRATION ──────────────────────── */
.hero-illustration {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow2);
}
.hero-illustration.is-landscape {
  aspect-ratio: 5/4;
}
.hero-illustration.is-portrait {
  aspect-ratio: 2/3;
}
.hero-illustration svg { width: 100%; height: 100%; display: block; }
.hero-illustration-caption {
  margin-top: .9rem;
  padding: 0 .25rem;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .9rem;
  line-height: 1.5;
  text-align: center;
}

/* ─── SHED STRIP ─────────────────────────────── */
.shed-strip { background: var(--navy); padding: 2.75rem 0; position: relative; }
.shed-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,168,76,0.4), transparent);
}
.shed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; }
.shed-item {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center; position: relative;
}
.shed-item:last-child { border: none; }
.shed-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; color: var(--gold);
  line-height: 1; margin-bottom: .25rem; font-weight: 500;
}
.shed-word {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(233,168,76,0.75);
  margin-bottom: .4rem;
}
.shed-desc { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ─── EMAIL CAPTURE ──────────────────────────── */
.email-capture {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 1rem;
  display: flex; gap: .5rem;
  max-width: 480px;
  box-shadow: var(--shadow);
}
.email-capture input[type="email"] {
  flex: 1; padding: .75rem 1rem;
  border: none; font-size: .95rem;
  background: transparent; color: var(--warm);
  font-family: 'Lato', sans-serif;
  outline: none; min-width: 0;
}
.email-capture input[type="email"]::placeholder { color: var(--light); }
.email-capture button {
  background: var(--navy); color: var(--gold);
  border: none; padding: .75rem 1.5rem;
  border-radius: var(--r-md); font-weight: 700; font-size: .85rem;
  letter-spacing: .04em; cursor: pointer;
  transition: background .2s;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
}
.email-capture button:hover { background: var(--amber); color: var(--white); }
.email-capture-note { font-size: .75rem; color: var(--light); margin-top: .6rem; }
.email-capture-success {
  display: none; padding: 1rem; text-align: center;
  background: rgba(29,158,117,0.1); border: 1px solid rgba(29,158,117,0.25);
  border-radius: var(--r-lg); color: var(--tealDk);
  font-size: .9rem; font-weight: 700;
}
.email-capture-success.show { display: block; }

/* ─── DIVISION CARDS ─────────────────────────── */
.division-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.division-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-accent, var(--gold));
}
.division-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
  border-color: var(--border2);
}
.dc-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.dc-icon svg { width: 24px; height: 24px; }
.dc-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: .5rem; }
.dc-desc { font-size: .9rem; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.dc-link { font-size: .78rem; font-weight: 700; color: var(--amber); letter-spacing: .06em; text-transform: uppercase; }

/* ─── STORY SECTION ──────────────────────────── */
.story-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: ''; position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; color: var(--gold);
  line-height: 1; margin-bottom: -.5rem;
}
.quote-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.2rem; color: rgba(255,255,255,0.9);
  line-height: 1.65; margin-bottom: 1rem;
  position: relative;
}
.quote-attr { font-size: .8rem; color: rgba(255,255,255,0.45); letter-spacing: .04em; }
.story-sig { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--amber); margin-top: 1.25rem; }

/* ─── KRISTIE SECTION ────────────────────────── */
.kristie-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.kristie-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center; position: relative; z-index: 2;
}
.kristie-portrait {
  aspect-ratio: 4/5; border-radius: var(--r-lg);
  background: linear-gradient(155deg, #7B4F1E 0%, #C17B2E 50%, #E9A84C 100%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.kristie-portrait svg { width: 100%; height: 100%; display: block; }
.kristie-eyebrow { color: var(--gold) !important; }
.kristie-hero h2 { color: var(--white); margin-bottom: .75rem; }

/* ─── SEASONS (Kristie's framework) ──────────── */
.season-item {
  display: flex; gap: 1.1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.season-item:last-child { border: none; }
.season-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold);
  line-height: 1; flex-shrink: 0; min-width: 34px; font-weight: 500;
}
.season-title { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.season-verse {
  font-size: .8rem; font-style: italic;
  color: rgba(233,168,76,0.8); margin-bottom: .35rem;
}
.season-desc { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ─── GIVING BAND ────────────────────────────── */
.giving-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--navy3) 100%);
  padding: 3.5rem 0;
  position: relative;
}
.giving-steps {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.gs {
  flex: 1; min-width: 70px;
  background: rgba(233,168,76,0.1);
  border: 1px solid rgba(233,168,76,0.2);
  border-radius: var(--r-md);
  padding: .85rem .5rem;
  text-align: center;
  transition: all .2s;
}
.gs:hover { background: rgba(233,168,76,0.18); transform: translateY(-2px); }
.gs:last-child { background: rgba(233,168,76,0.22); border-color: rgba(233,168,76,0.45); }
.gs-sub { font-size: .65rem; font-weight: 700; letter-spacing: .06em; color: rgba(233,168,76,0.7); margin-bottom: .2rem; }
.gs-pct { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); line-height: 1; font-weight: 500; }
.giving-cta {
  margin-top: 1.75rem;
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.giving-cta a:not(.btn-gold) {
  font-size: .85rem; color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
}
.giving-cta a:not(.btn-gold):hover { color: var(--gold); }

/* ─── APP CARDS ──────────────────────────────── */
.app-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.app-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border2); }
.ac-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .9rem; }
.ac-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.ac-icon svg { width: 22px; height: 22px; }
.ac-status {
  font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
}
.status-soon      { background: rgba(233,168,76,0.18); color: var(--ember); }
.status-live      { background: rgba(29,158,117,0.15); color: var(--tealDk); }
.status-beta      { background: rgba(127,119,221,0.15); color: var(--purpleDk); }
.status-future    { background: rgba(13,13,43,0.08); color: var(--navy); }
.status-launching { background: var(--gold); color: var(--navy); }
.ac-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--navy); margin-bottom: .25rem; }
.ac-tagline { font-size: .85rem; font-style: italic; color: var(--amber); margin-bottom: .7rem; line-height: 1.45; }
.ac-desc { font-size: .87rem; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.ac-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .9rem; border-top: 1px solid var(--border); gap: .5rem;
}
.ac-price { font-size: .8rem; font-weight: 700; color: var(--amber); }
.ac-btn {
  font-size: .75rem; font-weight: 700;
  background: var(--navy); color: var(--gold);
  padding: .5rem 1rem; border-radius: 99px;
  text-decoration: none; border: none; cursor: pointer;
  white-space: nowrap; transition: background .2s;
  font-family: 'Lato', sans-serif;
}
.ac-btn:hover { background: var(--amber); color: var(--white); }
.ac-btn-secondary {
  background: var(--parch); color: var(--navy);
  border: 1px solid var(--border2);
}
.ac-btn-secondary:hover { background: var(--navy); color: var(--gold); }

/* ─── APPAREL ────────────────────────────────── */
.apparel-hero {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(13, 13, 43, 0.92) 0%,
      rgba(13, 13, 43, 0.78) 35%,
      rgba(13, 13, 43, 0.55) 65%,
      rgba(13, 13, 43, 0.4) 100%
    ),
    url('/img/shed-watercolor.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.apparel-hero::before {
  content: ''; position: absolute;
  top: 50%; right: -100px; transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.coming-soon-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(233,168,76,0.15); color: var(--gold);
  border: 1px solid rgba(233,168,76,0.35);
  border-radius: 99px; padding: .45rem 1.1rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  margin-bottom: 1.5rem; text-transform: uppercase;
}
.prod-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: all .25s;
}
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.prod-img {
  height: 180px; background: var(--parch);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.prod-img svg { width: 100%; height: 100%; }
.prod-img-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem; color: var(--navy);
  font-weight: 700; letter-spacing: .08em;
}
.prod-info { padding: 1.15rem; }
.prod-name { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.prod-price { font-size: .9rem; font-weight: 700; color: var(--amber); margin-bottom: .2rem; }
.prod-give { font-size: .75rem; color: var(--tealDk); font-weight: 700; }
.giving-explainer {
  background: var(--parch); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
}
.ge-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--navy); line-height: 1.6; margin-bottom: 1rem;
}

/* ─── DIGITAL GUIDES ─────────────────────────── */
.guide-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: all .25s;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gc-type { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .5rem; }
.gc-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: .5rem; }
.gc-desc { font-size: .85rem; font-weight: 300; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.gc-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .9rem; border-top: 1px solid var(--border);
}
.gc-price { font-size: .9rem; font-weight: 700; color: var(--amber); }
.gc-btn {
  font-size: .72rem; font-weight: 700;
  background: var(--parch); color: var(--navy);
  padding: .45rem 1rem; border-radius: 99px;
  border: 1px solid var(--border2); text-decoration: none;
}

/* ─── CHURCHES ───────────────────────────────── */
.church-tier {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  position: relative; overflow: hidden;
  transition: all .25s;
}
.church-tier:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.church-tier.featured { border: 2px solid var(--amber); }
.ct-featured-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--amber); color: var(--white);
  font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
}
.ct-name { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: .4rem; }
.ct-price { font-family: 'Playfair Display', serif; font-size: 2.1rem; color: var(--navy); margin-bottom: .2rem; line-height: 1; font-weight: 500; }
.ct-period { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.ct-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.ct-features { list-style: none; }
.ct-features li {
  font-size: .85rem; font-weight: 300; color: var(--muted);
  padding: .35rem 0; display: flex; gap: .6rem; align-items: flex-start;
}
.ct-features li::before {
  content: ''; flex-shrink: 0; margin-top: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}

/* ─── FORMS ──────────────────────────────────── */
.contact-form-card {
  background: var(--parch); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 700;
  color: var(--warm); margin-bottom: .4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem .9rem;
  background: var(--white); border: 1px solid var(--border2);
  border-radius: var(--r-sm); font-size: .9rem; color: var(--warm);
  font-family: 'Lato', sans-serif;
  transition: border-color .15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--amber);
}
.form-group textarea { height: 110px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  text-align: center; padding: 2rem;
  background: rgba(29,158,117,0.08);
  border: 1px solid rgba(29,158,117,0.2);
  border-radius: var(--r-md);
}
.form-success-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.form-error {
  display: none; margin-top: .75rem; padding: .75rem 1rem;
  background: rgba(212,83,126,0.08); border: 1px solid rgba(212,83,126,0.3);
  border-radius: var(--r-sm); font-size: .85rem; color: var(--navy);
}
.form-error.show { display: block; }

/* ─── BIG CTA BAND (launch waitlist) ─────────── */
.launch-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  padding: 3.5rem 0;
  color: var(--navy);
  position: relative; overflow: hidden;
}
.launch-band::before {
  content: ''; position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.launch-band h2 { color: var(--navy); }
.launch-band p { color: rgba(13,13,43,0.75); }
.launch-band .email-capture { background: var(--white); border: none; }

/* ─── SUBSCRIBER STORY (social proof) ────────── */
.stories-band { background: var(--cream2); padding: 4rem 0; }
.story-tile {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  position: relative;
}
.story-tile-stars { color: var(--gold); font-size: .95rem; letter-spacing: .15em; margin-bottom: .85rem; }
.story-tile-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .98rem; color: var(--warm);
  line-height: 1.65; margin-bottom: 1rem;
}
.story-tile-attr {
  font-size: .8rem; color: var(--light);
  padding-top: .85rem; border-top: 1px solid var(--border);
}

/* ─── PRIVACY / SUPPORT PROSE ────────────────── */
.prose-page { max-width: 720px; margin: 0 auto; padding: 4rem 1.5rem; }
.prose-page h1 { margin-bottom: 1rem; }
.prose-page h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.prose-page h2:first-of-type { margin-top: 0; }
.prose-page p, .prose-page li { font-size: .95rem; color: var(--muted); margin-bottom: .7rem; }
.prose-page ul { padding-left: 1.25rem; margin-bottom: .75rem; }
.prose-page ul li { list-style: disc; }
.prose-page strong { color: var(--warm); font-weight: 700; }
.prose-updated { font-size: .8rem; color: var(--light); margin-bottom: 2rem; display: block; }
.support-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.sup-opt {
  background: var(--parch); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.25rem;
}
.sup-opt-label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: .5rem; }
.sup-opt-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.sup-opt-body { font-size: .85rem; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 3.5rem 0 1.5rem;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold); margin-bottom: .4rem; font-weight: 500; }
.footer-brand-tag { font-size: .7rem; color: rgba(233,168,76,0.7); letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-brand-addr { font-size: .8rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-col-title {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .85rem;
}
.footer-link {
  display: block; font-size: .85rem;
  color: rgba(255,255,255,0.5); margin-bottom: .4rem;
  text-decoration: none; transition: color .15s;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-copy { font-size: .75rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: var(--gold); }

/* ─── UTILITIES ──────────────────────────────── */
.gold-text { color: var(--gold); }
.amber-text { color: var(--amber); }
.teal-text { color: var(--teal); }
.navy-text { color: var(--navy); }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px;
}
.tag-navy { background: rgba(13,13,43,0.08); color: var(--navy); }
.tag-amber { background: rgba(233,168,76,0.15); color: var(--ember); }
.tag-teal  { background: rgba(29,158,117,0.12); color: var(--green); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-illustration { max-width: 420px; margin-left: auto; margin-right: auto; width: 100%; }
  .kristie-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .kristie-portrait { max-width: 320px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .nav-tabs { display: none; }
  .mobile-menu-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .shed-grid { grid-template-columns: repeat(2, 1fr); }
  .shed-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .shed-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .shed-item:nth-child(even) { border-right: none; }
  .hero { padding: 3rem 0 2.75rem; }
  .section { padding: 3.5rem 0; }
  .email-capture { flex-direction: column; }
  .email-capture button { width: 100%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .btn-primary, .btn-secondary, .btn-gold { padding: .75rem 1.5rem; }
}

/* ─── PRINT ──────────────────────────────────── */
@media print {
  #main-nav, .mobile-nav, footer, .launch-band, .email-capture { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOME-AS-ROOMS — Three movements, room cards, Sunday Letter
═══════════════════════════════════════════════════════════ */

/* ─── HOMEPAGE ANCHOR HERO ───────────────────── */
.home-anchor {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ember);
  letter-spacing: .01em;
  margin-bottom: 1.25rem;
  display: block;
}

/* ─── MOVEMENT BANDS (Return / Build / Pour Out) ─── */
.movement-band {
  position: relative;
  padding: 4.5rem 0;
}
.movement-return { background: var(--cream2); }
.movement-build  { background: var(--parch); }
.movement-pour   {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: rgba(255,255,255,0.75);
}
.movement-pour h2, .movement-pour h3, .movement-pour .eyebrow,
.movement-pour .movement-name { color: var(--gold); }
.movement-pour p { color: rgba(255,255,255,0.7); }

.movement-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  max-width: 700px;
}
.movement-numeral {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}
.movement-pour .movement-numeral { color: var(--goldSoft); }
.movement-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: .25rem;
}
.movement-tagline {
  font-size: .95rem;
  color: var(--muted);
  font-style: italic;
}
.movement-pour .movement-tagline { color: rgba(255,255,255,0.6); }

/* ─── ROOM CARDS ─────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.room-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all .25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: inherit;
  min-height: 100%;
}
.movement-pour .room-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(233,168,76,0.18);
}
.movement-pour .room-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(233,168,76,0.4);
}
.room-card.is-open:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
  border-color: var(--border2);
}
.room-card.is-soon {
  opacity: 0.85;
  cursor: default;
}
.room-card.is-soon:hover {
  background: var(--white);
  opacity: 1;
}

.room-status {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.status-open       { background: rgba(29,158,117,0.15); color: var(--tealDk); }
.status-may        { background: var(--gold); color: var(--navy); }
.status-summer     { background: rgba(233,168,76,0.18); color: var(--ember); }
.status-fall       { background: rgba(13,13,43,0.08); color: var(--navy); }
.movement-pour .status-fall { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }

.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .35rem;
  font-weight: 500;
  line-height: 1.2;
  padding-right: 7rem; /* room for status badge — fits "Summer 2026" / "Launching May 1" */
}
.movement-pour .room-name { color: var(--white); }
.room-for {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .85rem;
}
.movement-pour .room-for { color: var(--goldSoft); }
.room-desc {
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.movement-pour .room-desc { color: rgba(255,255,255,0.65); }
.room-tools {
  font-size: .78rem;
  color: var(--light);
  margin-bottom: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--border);
}
.movement-pour .room-tools {
  color: rgba(255,255,255,0.45);
  border-top-color: rgba(255,255,255,0.08);
}
.room-tools strong {
  color: var(--ember);
  font-weight: 700;
}
.movement-pour .room-tools strong { color: var(--gold); }
.room-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.movement-pour .room-link { color: var(--gold); }

/* ─── GIVING WELL FEATURE BLOCK ──────────────── */
.well-feature {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #2d2562 100%);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.well-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
}
.well-header .eyebrow {
  color: var(--gold) !important;
  display: inline-block;
  margin-bottom: 1rem;
}
.well-header h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.well-intro {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto !important;
}
.well-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.well-illustration {
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.well-illustration svg, .well-illustration img { width: 100%; height: 100%; display: block; object-fit: cover; }
.well-feature h2 { color: var(--white); margin-bottom: .75rem; }
.well-feature p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.well-feature .eyebrow { color: var(--gold) !important; }

.covenant-pull {
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
  margin: 1.25rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.giving-counter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background: rgba(233,168,76,0.08);
  border: 1px solid rgba(233,168,76,0.2);
  border-radius: var(--r-md);
}
.gc-stat {
  text-align: center;
  padding: .35rem .25rem;
}
.gc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
  margin-bottom: .2rem;
}
.gc-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.gc-soon {
  font-size: .7rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ─── SUNDAY LETTER SIGNUP ───────────────────── */
.sunday-letter {
  background: var(--cream2);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sunday-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}
.sunday-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--amber);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.sunday-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--amber);
}
.sunday-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--amber);
}
.sunday-card h2 {
  font-size: 1.7rem;
  margin-bottom: .85rem;
}
.sunday-card p {
  margin-bottom: 1.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.sunday-signers {
  font-size: .78rem;
  color: var(--light);
  margin-top: 1rem;
  font-style: italic;
}

/* ─── COVENANT REFRAIN BAND (between movements) ─── */
.refrain-band {
  background: var(--navy);
  padding: 3.25rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.refrain-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,168,76,0.4), transparent);
}
.refrain-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,168,76,0.4), transparent);
}
.refrain-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--gold);
  letter-spacing: .02em;
}
.refrain-text strong {
  font-weight: 700;
  font-style: normal;
  color: var(--white);
}

@media (max-width: 768px) {
  .movement-header { grid-template-columns: 1fr; gap: .5rem; }
  .movement-numeral { font-size: 3rem; }
  .well-grid { grid-template-columns: 1fr; gap: 2rem; }
  .well-illustration { max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════════════════════
   DROPDOWN NAV — pillars open on hover (desktop) or first-tap (mobile)
═══════════════════════════════════════════════════════════ */

.nav-tabs {
  position: relative;
}

.nav-pillar-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-tab.has-dropdown {
  padding-right: 1.1rem;
}
.nav-tab.has-dropdown::after {
  content: '';
  display: inline-block;
  margin-left: .45rem;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .5;
  transition: transform .15s, opacity .15s;
}
.nav-pillar-wrap:hover .nav-tab.has-dropdown::after,
.nav-pillar-wrap.is-open .nav-tab.has-dropdown::after {
  transform: translateY(0) rotate(225deg);
  opacity: .9;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 1rem;
  box-shadow: 0 16px 48px rgba(74,55,40,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  z-index: 250;
}
.nav-pillar-wrap:hover .nav-dropdown,
.nav-pillar-wrap.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Bridge the gap so cursor doesn't lose hover */
.nav-pillar-wrap:hover::after,
.nav-pillar-wrap.is-open::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-dd-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  padding: .25rem .5rem .5rem;
}
.nav-dd-link {
  display: block;
  padding: .65rem .75rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  color: var(--warm);
  transition: background .15s;
}
.nav-dd-link:hover, .nav-dd-link:focus-visible {
  background: var(--cream2);
}
.nav-dd-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: .15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.nav-dd-status {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-dd-tagline {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
}

/* Mobile expand-to-reveal pattern */
.mob-pillar {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  text-align: left;
  width: 100%;
  position: relative;
}
.mob-pillar::after {
  content: '+';
  position: absolute;
  right: .5rem;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--amber);
  transition: transform .2s;
}
.mob-pillar.is-open::after {
  content: '−';
}
.mob-pillar-rooms {
  display: none;
  padding: .5rem 0 1rem .75rem;
  border-bottom: 1px solid var(--border);
}
.mob-pillar-rooms.is-open {
  display: block;
}
.mob-pillar-rooms a {
  display: block;
  padding: .55rem 0;
  color: var(--warm);
  text-decoration: none;
  font-size: .92rem;
}
.mob-pillar-rooms a:last-child { padding-bottom: 0; }

/* Hide dropdown nav on mobile */
@media (max-width: 768px) {
  .nav-dropdown { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   OUR STORY PAGE
═══════════════════════════════════════════════════════════ */

.story-hero {
  background: var(--parch);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.story-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.story-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy2) 50%, #2d2562 100%);
  box-shadow: var(--shadow2);
  position: relative;
}
.story-portrait img { width: 100%; height: 100%; display: block; }
.story-portrait-below-caption {
  margin-top: .9rem;
  padding: 0 .25rem;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .9rem;
  line-height: 1.5;
  text-align: center;
}
.story-portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13,13,43,0.85) 100%);
  color: rgba(255,255,255,0.9);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .95rem;
}

.story-section {
  padding: 4rem 0;
}
.story-section.alt { background: var(--cream2); }
.story-section.dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: rgba(255,255,255,0.75);
}
.story-section.dark h2 { color: var(--gold); }
.story-section.dark p { color: rgba(255,255,255,0.7); }
.story-section.dark .eyebrow { color: var(--gold); }

.story-prose {
  max-width: 720px;
  margin: 0 auto;
}
.story-prose p {
  font-size: 1.02rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.story-prose .lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ember);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.story-section.dark .story-prose .lead { color: var(--goldSoft); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.value-letter {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
  margin-bottom: .35rem;
}
.value-name {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .55rem;
}
.value-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.3;
}
.value-desc {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1rem;
}
.timeline-when {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--amber);
  white-space: nowrap;
  padding-top: .15rem;
  font-weight: 500;
}
.timeline-what h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .35rem;
}
.timeline-what p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════
   SCRIPTURE OF THE DAY — quiet daily-use anchor
═══════════════════════════════════════════════════════════ */

.verse-band {
  background: var(--cream2);
  padding: 3rem 0 3.25rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.verse-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.verse-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
}
.verse-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--amber);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.verse-eyebrow::before, .verse-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--amber);
  opacity: .55;
}
.verse-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  color: var(--ember);
  line-height: 1.55;
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.verse-cite {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm);
  font-style: normal;
}
.verse-cite-ref {
  color: var(--navy);
}
.verse-date {
  font-size: .75rem;
  color: var(--light);
  margin-top: .85rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .verse-band { padding: 2.25rem 0 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   FAMILY LABS — Showcase Section
   Slightly darker tone for app gallery
═══════════════════════════════════════════════════════════ */

.fl-showcase {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(13, 13, 43, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(193, 123, 46, 0.05) 0%, transparent 50%),
    var(--parch);
  padding: 4.5rem 0 5rem;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  position: relative;
}

.fl-showcase-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.fl-showcase-head h2 {
  margin-bottom: 0.6rem;
}
.fl-showcase-head .eyebrow {
  margin-bottom: 0.7rem;
}
.fl-showcase-head p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.fl-section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  text-align: center;
  margin: 3rem auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 680px;
}
.fl-section-label::before,
.fl-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border2);
}

/* App card — gallery style */
.fl-app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .fl-app-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .fl-app-grid.fl-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 1100px) {
  .fl-app-grid.fl-grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.fl-app-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.fl-app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--amber) 100%);
  opacity: 0;
  transition: opacity 0.2s;
}
.fl-app-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(74, 55, 40, 0.12);
}
.fl-app-card:hover::before { opacity: 1; }

.fl-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.fl-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--parch);
  border: 1px solid var(--border);
  overflow: hidden;
}
.fl-icon img,
.fl-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
}
.fl-icon-svg-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-card-title-block {
  flex: 1;
  min-width: 0;
}
.fl-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.fl-card-name a {
  color: inherit;
  text-decoration: none;
}
.fl-card-status {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.3rem;
}
.fl-status-open    { background: rgba(29, 158, 117, 0.12); color: var(--tealDk); }
.fl-status-may     { background: rgba(233, 168, 76, 0.18); color: var(--ember); }
.fl-status-summer  { background: rgba(193, 123, 46, 0.15); color: var(--ember); }
.fl-status-fall    { background: rgba(122, 106, 90, 0.15); color: var(--muted); }
.fl-status-beta    { background: rgba(127, 119, 221, 0.15); color: var(--purpleDk); }
.fl-status-soon    { background: rgba(212, 83, 126, 0.12); color: var(--rose); }

.fl-card-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ember);
  margin-bottom: 0.8rem;
  line-height: 1.45;
}
.fl-card-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.3rem;
  flex: 1;
}
.fl-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 0.8rem;
  flex-wrap: wrap;
}
.fl-card-price {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--warm);
  letter-spacing: 0.02em;
}
.fl-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.fl-card-link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.fl-card-link.is-secondary {
  color: var(--muted);
  font-weight: 400;
}
.fl-card-link.is-secondary:hover {
  background: var(--cream2);
  color: var(--warm);
  border-color: var(--border2);
}

/* Featured / spotlight card variant */
.fl-app-card.is-featured {
  background:
    radial-gradient(ellipse at top right, rgba(233, 168, 76, 0.08) 0%, transparent 50%),
    var(--cream);
  border-color: var(--border2);
}
.fl-app-card.is-featured::before { opacity: 0.4; }


/* ═══════════════════════════════════════════════════════════
   FAMILY LABS — DARK SHOWCASE OVERRIDE
   Inverts page: navy dominant, cream accent, gold pops
   Used inside .fl-dark blocks within TDIH chrome
═══════════════════════════════════════════════════════════ */

/* The dark-mode wrapper for Family Labs page sections */
.fl-dark {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Atmospheric background: subtle radial wash + faint gold horizon glow */
.fl-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 380px;
  background: radial-gradient(ellipse at center top, rgba(233, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.fl-dark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: radial-gradient(ellipse at center bottom, rgba(127, 119, 221, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.fl-dark > * { position: relative; z-index: 1; }

/* Typography overrides inside dark wrapper */
.fl-dark h1,
.fl-dark h2,
.fl-dark h3,
.fl-dark h4 {
  color: var(--cream);
}
.fl-dark p {
  color: rgba(245, 230, 200, 0.72);
}
.fl-dark .eyebrow,
.fl-dark .hero-kicker {
  color: var(--gold);
}
.fl-dark .scripture {
  color: rgba(245, 230, 200, 0.85);
  border-left-color: var(--gold);
}
.fl-dark .scripture cite {
  color: var(--goldSoft);
}
.fl-dark .story-sig {
  color: var(--goldSoft);
}

/* Compact dark hero */
.fl-dark-hero {
  padding: 0 0 2rem;
  text-align: center;
  position: relative;
}
.fl-dark-hero h1 {
  margin-top: 0.6rem;
}
.fl-dark-hero .hero-kicker {
  color: var(--gold);
}

/* Dark divider — gold horizon line */
.fl-gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(233, 168, 76, 0.45) 50%, transparent 100%);
  max-width: 600px;
  margin: 0 auto;
}

/* Showcase head (overrides cream version inside dark wrapper) */
.fl-dark .fl-showcase-head h2 {
  color: var(--cream);
}
.fl-dark .fl-showcase-head p {
  color: rgba(245, 230, 200, 0.6);
}

/* Section labels inside dark — gold lines on each side */
.fl-dark .fl-section-label {
  color: var(--gold);
}
.fl-dark .fl-section-label::before,
.fl-dark .fl-section-label::after {
  background: rgba(233, 168, 76, 0.25);
}

/* App cards — DARK variant */
.fl-dark .fl-app-card {
  background: var(--navy2);
  border: 1px solid rgba(233, 168, 76, 0.12);
  color: var(--cream);
}
.fl-dark .fl-app-card::before {
  background: linear-gradient(90deg, var(--gold) 0%, var(--goldSoft) 100%);
}
.fl-dark .fl-app-card:hover {
  border-color: rgba(233, 168, 76, 0.5);
  background: var(--navy3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(233, 168, 76, 0.2);
}
.fl-dark .fl-app-card.is-featured {
  background:
    radial-gradient(ellipse at top right, rgba(233, 168, 76, 0.1) 0%, transparent 50%),
    var(--navy2);
  border-color: rgba(233, 168, 76, 0.25);
}
.fl-dark .fl-app-card.is-featured::before {
  opacity: 0.6;
}

/* Card content inside dark */
.fl-dark .fl-card-name {
  color: var(--cream);
}
.fl-dark .fl-card-name a {
  color: inherit;
}
.fl-dark .fl-card-tagline {
  color: var(--goldSoft);
}
.fl-dark .fl-card-desc {
  color: rgba(245, 230, 200, 0.65);
}
.fl-dark .fl-card-bottom {
  border-top-color: rgba(233, 168, 76, 0.12);
}
.fl-dark .fl-card-price {
  color: var(--cream);
  opacity: 0.85;
}
.fl-dark .fl-card-link {
  color: var(--gold);
  border-color: rgba(233, 168, 76, 0.3);
  background: transparent;
}
.fl-dark .fl-card-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.fl-dark .fl-card-link.is-secondary {
  color: rgba(245, 230, 200, 0.6);
  border-color: rgba(245, 230, 200, 0.15);
}
.fl-dark .fl-card-link.is-secondary:hover {
  background: rgba(245, 230, 200, 0.08);
  color: var(--cream);
  border-color: rgba(245, 230, 200, 0.35);
}

/* Status badges inside dark — adjusted for legibility */
.fl-dark .fl-card-status.fl-status-open    { background: rgba(29, 158, 117, 0.2);  color: #5DD9B1; }
.fl-dark .fl-card-status.fl-status-may     { background: rgba(233, 168, 76, 0.22); color: var(--goldSoft); }
.fl-dark .fl-card-status.fl-status-summer  { background: rgba(193, 123, 46, 0.22); color: var(--goldSoft); }
.fl-dark .fl-card-status.fl-status-fall    { background: rgba(245, 230, 200, 0.1); color: rgba(245, 230, 200, 0.7); }
.fl-dark .fl-card-status.fl-status-soon    { background: rgba(212, 83, 126, 0.2);  color: #F08CB0; }

/* Card icon backgrounds — keep their full-color brand identity (icons should pop on dark) */
.fl-dark .fl-icon {
  border-color: rgba(233, 168, 76, 0.15);
}

/* Roman story section in dark */
.fl-dark .story-card {
  background: var(--navy3);
  border: 1px solid rgba(233, 168, 76, 0.18);
}
.fl-dark .story-card .quote-mark {
  color: rgba(233, 168, 76, 0.3);
}
.fl-dark .story-card .quote-text {
  color: var(--cream);
}
.fl-dark .story-card .quote-attr {
  color: var(--goldSoft);
}

/* Roman bedtime illustration in dark — needs a bit of warmth around it */
.fl-dark .hero-illustration {
  background: rgba(245, 230, 200, 0.04);
  border: 1px solid rgba(233, 168, 76, 0.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 0;
}
.fl-dark .hero-illustration-caption {
  color: var(--goldSoft);
  background: transparent;
}

/* Bottom waitlist band overrides for dark */
.fl-dark .launch-band {
  background: transparent;
  padding: 4rem 0 5rem;
}
.fl-dark .launch-band h2 {
  color: var(--cream);
}
.fl-dark .launch-band p {
  color: rgba(245, 230, 200, 0.7);
}
.fl-dark .launch-band .eyebrow {
  color: var(--gold);
}
.fl-dark .email-capture {
  background: var(--navy2);
  border: 1px solid rgba(233, 168, 76, 0.2);
}
.fl-dark .email-capture input[type="email"] {
  background: transparent;
  color: var(--cream);
}
.fl-dark .email-capture input[type="email"]::placeholder {
  color: rgba(245, 230, 200, 0.4);
}
.fl-dark .email-capture button {
  background: var(--gold);
  color: var(--navy);
}
.fl-dark .email-capture button:hover {
  background: var(--goldSoft);
}

/* Subtle starfield-like dot pattern across the dark page (very subtle) */
.fl-dark-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 25%, rgba(245, 230, 200, 0.18), transparent),
    radial-gradient(1px 1px at 70% 15%, rgba(245, 230, 200, 0.12), transparent),
    radial-gradient(1px 1px at 45% 60%, rgba(245, 230, 200, 0.15), transparent),
    radial-gradient(1px 1px at 85% 70%, rgba(245, 230, 200, 0.1), transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(245, 230, 200, 0.13), transparent);
  background-size: 600px 600px;
  pointer-events: none;
  opacity: 0.7;
}


/* Room card brand-mark stamp (top-left corner) */
.room-card .room-stamp {
  position: absolute;
  top: 1.05rem;
  left: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13,13,43,0.08);
  z-index: 1;
}
.room-card .room-stamp img {
  width: 100%;
  height: 100%;
  display: block;
}
/* When a stamp is present, push room-name down so it doesn't crowd */
.room-card.has-stamp .room-name {
  margin-top: 3.4rem;
  padding-right: 7rem;
  padding-left: 0;
}
/* Dual-stamp room (e.g., The Bedtime Room with Dreamspun + Lampside) */
.room-card .room-stamp.room-stamp-dual {
  width: 88px;          /* wider to fit two stamps side-by-side */
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  gap: 4px;
}
.room-card .room-stamp.room-stamp-dual img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  border: 1px solid rgba(13,13,43,0.08);
}
/* Push the title clear of the wider dual stamp */
.room-card.room-card-dual .room-name {
  padding-right: 9rem;
}
/* Bottom-of-card dual links (replaces the single room-link) */
.room-card .room-dual-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border2);
}
.room-card .room-dual-link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--amber);
  font-size: .95rem;
  text-decoration: none;
  transition: color .15s;
}
.room-card .room-dual-link:hover {
  color: var(--ember);
}
/* Make the non-link Bedtime Room card behave like the others on hover */
.room-card-dual {
  cursor: default;
}
.room-card-dual:hover {
  /* keep the same hover treatment as other open cards */
  transform: none;
}

/* On Pour Out (dark cards), stamp adapts */
.movement-pour .room-stamp {
  background: var(--navy2);
  border-color: rgba(255,255,255,0.08);
}

/* Room header — for rooms that contain multiple apps (e.g., The Bedtime Room with Dreamspun + Lampside) */
.nav-dd-room-header {
  display: block;
  padding: .65rem .75rem .15rem;
  /* not clickable */
}

/* Sub-link beneath a room header (smaller, indented, hover same as main rooms) */
.nav-dd-sublink {
  display: block;
  padding: .4rem .75rem .4rem 1.6rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background .15s;
  position: relative;
}
.nav-dd-sublink::before {
  content: '';
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  opacity: .6;
}
.nav-dd-sublink:hover, .nav-dd-sublink:focus-visible {
  background: var(--cream2);
}
.nav-dd-sublink:hover::before { opacity: 1; }
.nav-dd-sublink-name {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.2;
}
.nav-dd-sublink-tagline {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: .15rem;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════
   FAMILY LABS — Brand mark
   The image has its own navy fade baked in, but the JPEG's
   mid-fade ring can read slightly darker than the page navy.
   The mask-image below feathers the image edges to transparent
   so any color mismatch vanishes into the page.
═══════════════════════════════════════════════════════════ */

.fl-brand-mark {
  display: block;
  margin: 0 auto 0.4rem;
  width: 540px;
  max-width: 92vw;
  height: auto;
  margin-top: 0;
  /* Feather the edges to transparent — invisible boundary on the dark page */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.4) 70%, transparent 88%);
          mask-image: radial-gradient(ellipse at center, #000 30%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.4) 70%, transparent 88%);
}

@media (max-width: 700px) {
  .fl-brand-mark {
    width: 420px;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .fl-brand-mark {
    width: 100%;
    margin-top: 0;
  }
}
