/* ===========================================================================
   THE REAL DOODLE CO. — Available Puppies
   Editorial brand styling + Netflix-style rails + cinematic detail modal
   =========================================================================== */
:root {
  --blue: #8cb0bc;
  --blue-deep: #6c97a4;
  --blue-ink: #406572;        /* AA text on cream */
  --blue-soft: #d9e6ea;
  --cream: #faf7f1;
  --sand: #f1ebe0;
  --sand-deep: #e7ddcd;
  --ink: #2a2e31;
  --muted: #767d82;
  --white: #ffffff;
  --night: #14191c;
  --night-2: #1d252a;
  --night-3: #2a343a;
  --gold: #c9a86a;
  --shadow-sm: 0 2px 10px rgba(40,50,55,.07);
  --shadow-md: 0 12px 34px rgba(40,50,55,.12);
  --shadow-lg: 0 26px 70px rgba(20,25,28,.30);
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px;
  --maxw: 1240px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--cream);
  font-weight: 300; line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography helpers ---------- */
.eyebrow, .kicker {
  font-family: var(--sans); font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; font-size: .72rem; color: var(--blue-deep);
}
.kicker.center, .center { text-align: center; }
.kicker { display: block; margin-bottom: .6rem; }
.section-title {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05; letter-spacing: -.01em; color: var(--ink);
}
.section-lead {
  max-width: 620px; margin: 1.1rem auto 0; color: var(--muted);
  font-size: 1.08rem; font-weight: 300;
}
.section-lead.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 500; letter-spacing: .04em;
  padding: .92rem 1.8rem; border-radius: 999px; font-size: .92rem;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-sm { padding: .62rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn-primary { background: var(--blue-deep); color: #fff; box-shadow: 0 8px 20px rgba(108,151,164,.35); }
.btn-primary:hover { background: var(--blue-ink); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.16); color: #fff; border: 1.5px solid rgba(255,255,255,.7); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--blue-ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--blue-ink); color: #fff; text-align: center;
  font-size: .82rem; letter-spacing: .04em; padding: .5rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  position: relative; z-index: 60;
}
.announce .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,241,.82); backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(42,46,49,.07); transition: box-shadow .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,247,241,.95); }
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: .7rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.brand-logo { height: 56px; width: auto; display: block; }
.nav { display: flex; gap: 1.9rem; margin-left: auto; }
.nav a {
  font-size: .9rem; font-weight: 400; letter-spacing: .03em; color: var(--ink);
  position: relative; padding: .2rem 0; transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--blue-deep); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--blue-ink); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.phone-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--blue-ink); font-weight: 500; }
.phone-link:hover { color: var(--ink); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 38%;
  transform: scale(1.05); transition: opacity 1s ease; background-color: var(--sand-deep);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(16,20,23,.84) 0%, rgba(16,20,23,.6) 45%, rgba(16,20,23,.34) 100%),
    linear-gradient(to top, rgba(16,20,23,.6), transparent 60%);
}
.hero-content {
  position: relative; z-index: 3; max-width: var(--maxw); width: 100%;
  margin: 0 auto; padding: 6rem 1.5rem;
}
.hero .eyebrow { color: var(--blue-soft); }
.hero-title {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 1.02; letter-spacing: -.015em; margin: .8rem 0 0; max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-sub { max-width: 540px; margin-top: 1.4rem; font-size: 1.12rem; font-weight: 300; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.6rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 500; line-height: 1; }
.hero-stats .stat-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: .35rem; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 14px; display: flex; justify-content: center; }
.scroll-cue span { width: 3px; height: 8px; background: #fff; border-radius: 2px; margin-top: 7px; animation: scrolly 1.6s infinite; }
@keyframes scrolly { 0%{opacity:0;transform:translateY(-4px)} 50%{opacity:1} 100%{opacity:0;transform:translateY(10px)} }

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.rail-hint { display: inline-flex; align-items: center; gap: .5rem; margin-top: .8rem; font-size: .92rem; color: var(--blue-ink); background: var(--blue-soft); padding: .5rem .95rem; border-radius: 999px; }
.rail-hint svg { flex: 0 0 auto; color: var(--blue-deep); }

/* ---------- Filters ---------- */
.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip {
  padding: .5rem 1.1rem; border-radius: 999px; font-size: .85rem; font-weight: 400;
  background: var(--white); color: var(--ink); border: 1px solid var(--sand-deep);
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--blue); color: var(--blue-ink); }
.chip.is-active { background: var(--blue-ink); color: #fff; border-color: var(--blue-ink); }

/* ---------- Rails (Netflix rows) ---------- */
.rail { margin-bottom: 3rem; }
.rail-head { display: flex; align-items: baseline; gap: .9rem; margin-bottom: 1rem; }
.rail-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.rail-meta { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.rail-viewport { position: relative; }
.rail-track {
  display: flex; gap: 1.1rem; overflow-x: auto; scroll-behavior: smooth;
  padding: .4rem .2rem 1.4rem; scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.rail-track::-webkit-scrollbar { display: none; }
.rail-arrow {
  position: absolute; top: 50%; transform: translateY(-60%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-md); color: var(--ink); font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s, transform .2s;
}
.rail-viewport:hover .rail-arrow { opacity: 1; }
.rail-arrow:hover { transform: translateY(-60%) scale(1.08); }
.rail-arrow.prev { left: -8px; }
.rail-arrow.next { right: -8px; }
.rail-arrow[disabled] { opacity: 0 !important; pointer-events: none; }

/* ---------- Puppy card ---------- */
.card {
  position: relative; flex: 0 0 auto; width: 260px; scroll-snap-align: start;
  border-radius: var(--r-md); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; z-index: 1;
}
.card.playing .card-video { opacity: 1; }
.card.playing .card-grad { opacity: .9; }
.card-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,25,28,.78) 0%, rgba(20,25,28,.12) 38%, transparent 60%); }
.card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; padding: .32rem .7rem; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--blue-ink); backdrop-filter: blur(4px);
}
.card-badge.reserved { background: rgba(201,168,106,.95); color: #4a3a16; }
.card-badge.sold { background: rgba(42,46,49,.86); color: #fff; }
.card-play {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 30px; height: 30px;
  border-radius: 50%; background: rgba(20,25,28,.45); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.card-play svg { width: 12px; height: 12px; margin-left: 1px; }
.card-count { position: absolute; top: 12px; right: 12px; z-index: 2; display: inline-flex; align-items: center; gap: .32rem; background: rgba(20,25,28,.6); backdrop-filter: blur(4px); color: #fff; font-size: .74rem; font-weight: 500; padding: .3rem .6rem; border-radius: 999px; }
.card-count svg { opacity: .92; }
.card-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1rem 1.1rem; color: #fff; }
.card-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1; }
.card-sub { font-size: .82rem; color: rgba(255,255,255,.85); margin-top: .3rem; letter-spacing: .02em; }
.card-cta { margin-top: .7rem; }
.card-cta-pill { display: inline-flex; align-items: center; gap: .4rem; font-size: .76rem; font-weight: 500; letter-spacing: .02em; color: #fff; background: rgba(255,255,255,.18); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,.4); padding: .42rem .85rem; border-radius: 999px; transition: background .22s var(--ease), color .22s; }
.card:hover .card-cta-pill { background: #fff; color: var(--blue-ink); border-color: #fff; }

/* ---------- Why / features ---------- */
.why { background: linear-gradient(180deg, var(--cream), #fff); }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem;
}
.feature {
  background: #fff; border: 1px solid var(--sand-deep); border-radius: var(--r-md);
  padding: 2rem 1.7rem; transition: transform .3s var(--ease), box-shadow .3s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-ink); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.feature-ic svg { width: 24px; height: 24px; }
.feature h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .98rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin: 3rem 0 2.6rem; }
.step { text-align: center; position: relative; padding: 0 .4rem; }
.step-num {
  width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--blue); color: var(--blue-ink);
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .92rem; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 30px; right: -.6rem; width: 1.2rem; height: 1.5px;
  background: var(--blue); opacity: .5;
}

/* ---------- Pricing card ---------- */
.pricing-card {
  background: var(--night); color: #fff; border-radius: var(--r-lg);
  padding: 2.6rem; display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.4rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
.pricing-card .pc-head { font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.1; }
.pricing-card .pc-sub { color: rgba(255,255,255,.7); margin-top: .7rem; font-size: .98rem; }
.price-rows { display: grid; gap: .1rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.price-row:last-child { border-bottom: none; }
.price-row .pr-label { color: rgba(255,255,255,.82); font-size: .96rem; }
.price-row .pr-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.price-row .pr-note { font-size: .76rem; color: rgba(255,255,255,.5); display: block; }
/* simplified pricing */
.pricing-card { align-items: stretch; }
.pc-amount { font-family: var(--serif); font-size: clamp(3rem, 6vw, 4.2rem); font-weight: 600; line-height: 1; color: #fff; }
.pc-amount-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-top: .5rem; }
.pc-included { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: .65rem; }
.pc-included li { position: relative; padding-left: 1.8rem; color: rgba(255,255,255,.88); font-size: 1rem; }
.pc-included li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(140,176,188,.25); color: var(--blue); font-size: .68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.pc-details { display: flex; flex-direction: column; gap: 1.6rem; padding-left: 2.4rem; border-left: 1px solid rgba(255,255,255,.12); }
.pc-block-title { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: .55rem; font-weight: 500; }
.pc-block p { color: rgba(255,255,255,.82); font-size: .98rem; margin-bottom: .4rem; }
.pc-block p:last-child { margin-bottom: 0; }
.pc-block strong { color: #fff; font-weight: 500; }
/* post-application checklist offer */
.success-download { margin-top: 1.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.18); }
.success-gift { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 1rem; }

/* ---------- Apply ---------- */
.apply { max-width: none; background: var(--blue-ink); color: #fff; margin-top: 2rem; }
.apply-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.kicker.light, .section-title.light, .section-lead.light { color: #fff; }
.section-lead.light { color: rgba(255,255,255,.86); }
.kicker.light { color: var(--blue-soft); }
.apply-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.apply-note { margin-top: 1.6rem; font-size: .95rem; color: rgba(255,255,255,.82); }
.apply-note a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--sand-deep); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem .2rem; font-size: 1.12rem; font-weight: 400; color: var(--ink); }
.faq-q:hover { color: var(--blue-ink); }
.faq-ic { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .3s; color: var(--blue-deep); }
.faq-ic::before, .faq-ic::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.faq-ic::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-ic::after { left: 10px; top: 0; width: 2px; height: 22px; transition: transform .3s; }
.faq-item.open .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 .2rem 1.4rem; color: var(--muted); font-size: 1rem; max-width: 680px; }

/* ---------- Footer ---------- */
.footer { background: var(--night); color: rgba(255,255,255,.75); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-logo { height: 38px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .94rem; max-width: 320px; }
.footer-col h4 { font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; font-weight: 500; }
.footer-col a, .footer-col span { display: block; font-size: .94rem; color: rgba(255,255,255,.72); margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.socials { display: flex; gap: .6rem; margin-top: .4rem; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: .72rem; letter-spacing: .05em; margin: 0; }
.socials a:hover { background: var(--blue-ink); border-color: var(--blue-ink); color: #fff; }
.footer-bottom { max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---------- Modal (cinematic detail) ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,13,15,.86); backdrop-filter: blur(6px); animation: fade .3s; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-panel {
  position: relative; max-width: 1000px; width: calc(100% - 2.5rem); max-height: 94vh;
  margin: 3vh auto 0; background: var(--night-2); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  animation: rise .4s var(--ease);
}
.modal-puppynav { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .65rem 3.6rem .65rem 1rem; background: var(--night); border-bottom: 1px solid rgba(255,255,255,.08); }
.pn-btn { display: inline-flex; align-items: center; gap: .4rem; min-height: 44px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; padding: .5rem .95rem; border-radius: 999px; font-size: .92rem; font-weight: 500; max-width: 42%; transition: background .2s; }
.pn-btn:hover { background: rgba(255,255,255,.2); }
.pn-btn > span[aria-hidden] { font-size: 1.35rem; line-height: 1; flex: 0 0 auto; }
.pn-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pn-counter { flex: 0 0 auto; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.modal-body { display: flex; align-items: stretch; max-height: calc(94vh - 58px); }
.modal-media { flex: 0 0 auto; width: min(43vh, 432px); display: flex; flex-direction: column; background: #0c0f11; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 14px; right: 16px; z-index: 12; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(0,0,0,.4); color: #fff; font-size: 1.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.modal-close:hover { background: rgba(0,0,0,.7); }
.modal-stage { position: relative; background: #0c0f11; width: 100%; aspect-ratio: 9/16; max-height: 68vh; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.stage-media { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.stage-media img, .stage-media video { width: 100%; height: 100%; object-fit: contain; background: #0c0f11; }
.stage-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 8;
  width: 50px; height: 50px; border-radius: 50%; background: rgba(0,0,0,.4); color: #fff;
  font-size: 2rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.stage-nav:hover { background: rgba(0,0,0,.72); }
.stage-nav.prev { left: 14px; } .stage-nav.next { right: 14px; }
.stage-counter { position: absolute; bottom: 12px; right: 16px; z-index: 8; font-size: .8rem; color: rgba(255,255,255,.85); background: rgba(0,0,0,.45); padding: .25rem .65rem; border-radius: 999px; letter-spacing: .05em; }
.modal-thumbs { display: flex; gap: .5rem; overflow-x: auto; padding: .8rem 1rem; background: var(--night); scrollbar-width: thin; }
.modal-thumbs::-webkit-scrollbar { height: 6px; }
.modal-thumbs::-webkit-scrollbar-thumb { background: var(--night-3); border-radius: 3px; }
.thumb { flex: 0 0 auto; width: 84px; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; opacity: .5; border: 2px solid transparent; transition: opacity .2s, border-color .2s; position: relative; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { opacity: 1; border-color: var(--blue); }
.thumb.is-video::after { content: '▶'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8rem; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.modal-info { flex: 1 1 auto; min-width: 0; overflow-y: auto; padding: 2rem 2rem 2.2rem; color: #fff; display: flex; flex-direction: column; gap: 1.2rem; align-items: stretch; }
.mi-name { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; line-height: 1; }
.mi-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin: .9rem 0 1rem; }
.mi-tag { font-size: .78rem; letter-spacing: .04em; padding: .3rem .75rem; border-radius: 999px; background: var(--night-3); color: rgba(255,255,255,.9); }
.mi-tag.status-available { background: rgba(140,176,188,.25); color: var(--blue); }
.mi-tag.status-reserved { background: rgba(201,168,106,.25); color: var(--gold); }
.mi-tag.status-sold { background: rgba(255,255,255,.14); color: rgba(255,255,255,.7); }
.mi-blurb { color: rgba(255,255,255,.8); max-width: 52ch; font-weight: 300; }
.mi-specs { display: flex; gap: 1.6rem; margin-top: 1.1rem; flex-wrap: wrap; }
.mi-spec .s-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.mi-spec .s-val { font-size: .98rem; color: #fff; margin-top: .2rem; }
.mi-cta { display: flex; flex-direction: column; gap: .7rem; min-width: 200px; }
.mi-price { font-family: var(--serif); font-size: 1.7rem; }
.mi-price small { font-family: var(--sans); font-size: .8rem; color: rgba(255,255,255,.6); }

/* ---------- Application form ---------- */
.survey { max-width: 560px; margin: 2.4rem auto 0; text-align: left; display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.survey label { font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.85); font-weight: 400; }
.survey label span { color: var(--blue-soft); }
.survey label .muted { color: rgba(255,255,255,.5); }
.survey input, .survey select, .survey textarea {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: #fff; border: 1.5px solid transparent; border-radius: 12px; padding: .85rem 1rem;
  width: 100%; transition: border-color .2s, box-shadow .2s;
}
.survey textarea { resize: vertical; min-height: 84px; }
.survey input:focus, .survey select:focus, .survey textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(140,176,188,.28);
}
.survey .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.survey button[type=submit] { margin-top: .4rem; align-self: center; min-width: 240px; }
.survey button[disabled] { opacity: .65; cursor: progress; }
.form-status { text-align: center; min-height: 1.2em; font-size: .92rem; margin: 0; }
.form-status.error { color: #ffd9d2; }
.apply-success { max-width: 520px; margin: 2.4rem auto 0; text-align: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-lg); padding: 2.4rem; animation: rise .4s var(--ease); }
.apply-success .success-ic { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: #fff; color: var(--blue-ink); font-size: 1.8rem; display: flex; align-items: center; justify-content: center; }
.apply-success h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; margin-bottom: .5rem; }
.apply-success p { color: rgba(255,255,255,.86); }

/* ---------- Grown-up gallery ---------- */
.grown-grid { columns: 4 220px; column-gap: 1rem; margin-top: 3rem; }
.grown-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r-md); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); position: relative; background: var(--sand); }
.grown-item img { width: 100%; display: block; transition: transform .5s var(--ease); }
.grown-item::after { content: ''; position: absolute; inset: 0; background: rgba(64,101,114,0); transition: background .3s; }
.grown-item:hover img { transform: scale(1.05); }
.grown-item:hover::after { background: rgba(64,101,114,.12); }

/* ---------- Checklist download ---------- */
.checklist { max-width: 1100px; }
.checklist-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.6rem; align-items: center; background: linear-gradient(135deg, #fff, var(--sand)); border: 1px solid var(--sand-deep); border-radius: var(--r-lg); padding: 2.6rem; box-shadow: var(--shadow-md); }
.checklist-media img { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-md); transform: rotate(-2deg); border: 6px solid #fff; }
.checklist-body h2 { margin: .3rem 0 .9rem; }
.checklist-body p { color: var(--muted); margin-bottom: 1.6rem; max-width: 46ch; }

/* ---------- Meet the Parents ---------- */
.parents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.parent-card { background: #fff; border: 1px solid var(--sand-deep); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.parent-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.parent-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.parent-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.parent-card:hover .parent-photo img { transform: scale(1.05); }
.parent-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; background: linear-gradient(150deg, var(--blue-soft), var(--sand)); color: var(--blue-ink); text-align: center; padding: 1rem; }
.parent-placeholder .pp-initial { font-family: var(--serif); font-size: 3.4rem; font-weight: 600; line-height: 1; }
.parent-placeholder .pp-note { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.parent-body { padding: 1.6rem 1.6rem 1.8rem; }
.parent-role { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-deep); }
.parent-name { font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; margin: .3rem 0 .5rem; }
.parent-meta { font-size: .9rem; color: var(--muted); margin-bottom: .8rem; }
.parent-meta strong { color: var(--ink); font-weight: 500; }
.parent-blurb { font-size: .96rem; color: var(--muted); margin-bottom: 1rem; }
.parent-traits { display: flex; flex-wrap: wrap; gap: .4rem; }
.parent-trait { font-size: .74rem; background: var(--cream); border: 1px solid var(--sand-deep); color: var(--blue-ink); padding: .3rem .7rem; border-radius: 999px; }

/* ---------- F1b explainer ---------- */
.genetics { max-width: 1100px; }
.genetics-card { background: linear-gradient(135deg, var(--cream), #fff); border: 1px solid var(--sand-deep); border-radius: var(--r-lg); padding: 3rem; box-shadow: var(--shadow-sm); }
.genetics-intro { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }
.genetics-intro h2 { margin: .3rem 0 .8rem; }
.genetics-intro p { color: var(--muted); }
.genetics-intro strong { color: var(--blue-ink); }
.genetics-steps { display: flex; align-items: stretch; justify-content: center; gap: 1rem; }
.gen-step { flex: 1 1 0; background: #fff; border: 1px solid var(--sand-deep); border-radius: var(--r-md); padding: 1.8rem 1.5rem; text-align: center; }
.gen-step.highlight { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(140,176,188,.18); }
.gen-badge { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: var(--blue-soft); color: var(--blue-ink); font-family: var(--serif); font-weight: 600; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.gen-step.highlight .gen-badge { background: var(--blue-deep); color: #fff; }
.gen-badge.gen-heart { background: var(--gold); color: #fff; font-family: var(--sans); }
.gen-step h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: .5rem; }
.gen-step p { font-size: .92rem; color: var(--muted); }
.gen-step strong { color: var(--ink); }
.gen-arrow { display: flex; align-items: center; color: var(--blue); font-size: 1.6rem; }

/* ---------- Best puppy-buying experience ---------- */
.experience { max-width: none; background: var(--blue-ink); color: #fff; }
.exp-inner { max-width: var(--maxw); margin: 0 auto; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin: 3rem 0 2.4rem; }
.exp-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-lg); padding: 2.4rem; }
.exp-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.exp-ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.14); color: #fff; display: flex; align-items: center; justify-content: center; }
.exp-ic svg { width: 27px; height: 27px; }
.exp-card-head h3 { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; color: #fff; line-height: 1.1; }
.exp-list { list-style: none; display: flex; flex-direction: column; gap: .95rem; }
.exp-list li { position: relative; padding-left: 2rem; color: rgba(255,255,255,.9); font-size: 1.04rem; }
.exp-list li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: var(--blue-ink); font-size: .72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.exp-closing { text-align: center; font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-style: italic; color: #fff; max-width: 740px; margin: 0 auto; opacity: .96; }

/* ---------- Survey (multi-step application) ---------- */
.survey { max-width: 600px; margin: 2.4rem auto 0; text-align: left; }
.survey-progress { margin-bottom: 1.8rem; }
.survey-bar-track { height: 6px; background: rgba(255,255,255,.18); border-radius: 999px; overflow: hidden; }
.survey-bar-fill { display: block; height: 100%; width: 33%; background: #fff; border-radius: 999px; transition: width .45s var(--ease); }
.survey-progress-label { margin-top: .6rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-soft); }
.survey-step { display: none; animation: surveyIn .4s var(--ease); }
.survey-step.is-active { display: block; }
@keyframes surveyIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.survey-q { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: #fff; line-height: 1.1; }
.survey-hint { color: rgba(255,255,255,.78); font-size: .98rem; margin: .5rem 0 1.4rem; }
.survey .field { margin-bottom: 1rem; }
.survey-nav { display: flex; gap: .8rem; align-items: center; margin-top: 1.8rem; }
.survey-nav .survey-btn-back { margin-right: auto; }
.survey-nav #survey-next, .survey-nav #apply-submit { margin-left: auto; }

/* ---------- Multi-select interest chips ---------- */
.interest-grid { display: flex; flex-direction: column; gap: .9rem; }
.interest-group-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-soft); margin-bottom: .5rem; }
.interest-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.interest-chip { display: inline-flex; align-items: center; gap: .45rem; cursor: pointer; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25); color: #fff; padding: .5rem .85rem; border-radius: 999px; font-size: .88rem; transition: all .18s var(--ease); user-select: none; }
.interest-chip:hover { border-color: #fff; background: rgba(255,255,255,.18); }
.interest-chip.wide { width: 100%; justify-content: center; background: rgba(255,255,255,.16); }
.interest-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.interest-chip span { position: relative; }
.interest-chip:has(input:checked) { background: #fff; color: var(--blue-ink); border-color: #fff; font-weight: 500; }
.interest-chip:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(255,255,255,.4); }

/* ---------- Starter pack ---------- */
.starter-card { background: var(--night); color: #fff; border-radius: var(--r-lg); padding: 3rem; display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.8rem; align-items: center; box-shadow: var(--shadow-lg); }
.starter-head h2 { color: #fff; margin: .3rem 0 1rem; }
.starter-head p { color: rgba(255,255,255,.78); }
.starter-badge { display: inline-block; margin-top: 1.3rem; background: var(--blue-deep); color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; padding: .55rem 1.1rem; border-radius: 999px; }
.starter-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.4rem; }
.starter-item { display: flex; align-items: center; gap: .7rem; font-size: 1.02rem; color: rgba(255,255,255,.92); padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.starter-check { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: var(--night); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; }

/* ---------- Reviews ---------- */
.reviews { background: linear-gradient(180deg, #fff, var(--cream)); }
.reviews-rating { text-align: center; margin-top: .8rem; color: var(--gold); letter-spacing: .15em; font-size: 1.1rem; }
.reviews-rating span { display: inline-block; color: var(--muted); letter-spacing: .03em; font-size: .9rem; margin-left: .4rem; }
.reviews-grid { columns: 2 320px; column-gap: 1.5rem; margin-top: 2.6rem; }
.review { break-inside: avoid; margin: 0 0 1.5rem; background: #fff; border: 1px solid var(--sand-deep); border-radius: var(--r-md); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.review-stars { color: var(--gold); letter-spacing: .1em; font-size: 1rem; margin-bottom: .8rem; }
.review blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; font-weight: 500; color: var(--ink); margin-bottom: 1.1rem; }
.review figcaption { display: flex; flex-direction: column; gap: .15rem; }
.review-name { font-weight: 500; font-size: .98rem; }
.review-meta { font-size: .8rem; color: var(--muted); letter-spacing: .03em; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--blue-ink); color: #fff; }
.trust-strip-inner { max-width: var(--maxw); margin: 0 auto; padding: .85rem 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; font-size: .92rem; }
.trust-item { letter-spacing: .02em; color: rgba(255,255,255,.92); }
.trust-item:first-child { color: var(--gold); }
.trust-item strong { color: #fff; font-weight: 600; }
.trust-dot { color: rgba(255,255,255,.4); }

/* ---------- Meet Kailee ---------- */
.kailee-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; }
.kailee-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.kailee-photo img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
.kailee-since { position: absolute; left: 1rem; bottom: 1rem; background: rgba(255,255,255,.92); color: var(--blue-ink); font-size: .78rem; letter-spacing: .04em; font-weight: 500; padding: .45rem .9rem; border-radius: 999px; backdrop-filter: blur(4px); }
.kailee-body h2 { margin: .3rem 0 1.1rem; }
.kailee-body #kailee-bio { color: var(--muted); font-size: 1.08rem; }
.kailee-socials { display: flex; align-items: center; gap: .6rem; margin-top: 1.6rem; }
.kailee-follow { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-deep); margin-right: .3rem; }
.kailee-social { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--sand-deep); display: inline-flex; align-items: center; justify-content: center; font-size: .76rem; font-weight: 500; color: var(--blue-ink); transition: all .2s var(--ease); }
.kailee-social:hover { background: var(--blue-ink); border-color: var(--blue-ink); color: #fff; transform: translateY(-2px); }

/* ---------- Sticky apply bar ---------- */
.sticky-cta { position: fixed; left: 50%; bottom: 18px; z-index: 45; transform: translate(-50%, 160%); opacity: 0; transition: transform .4s var(--ease), opacity .3s; display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); box-shadow: var(--shadow-lg); border: 1px solid var(--sand-deep); border-radius: 999px; padding: .55rem .65rem .55rem 1.3rem; max-width: calc(100% - 1.5rem); }
.sticky-cta.show { transform: translate(-50%, 0); opacity: 1; }
.sticky-cta-text { font-size: .92rem; color: var(--ink); white-space: nowrap; }
.sticky-cta-text strong { color: var(--blue-ink); font-weight: 600; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 110; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(10,13,15,.9); animation: fade .25s; }
.lightbox img { position: relative; max-width: 90vw; max-height: 88vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); animation: rise .35s var(--ease); }
.lightbox-close { position: absolute; top: 18px; right: 22px; z-index: 6; width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.45); color: #fff; font-size: 1.8rem; }
.lightbox-close:hover { background: rgba(0,0,0,.75); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 54px; height: 54px; border-radius: 50%; background: rgba(0,0,0,.4); color: #fff; font-size: 2.2rem; display: flex; align-items: center; justify-content: center; }
.lb-nav:hover { background: rgba(0,0,0,.7); }
.lb-nav.prev { left: 18px; } .lb-nav.next { right: 18px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .step:nth-child(2)::after { display: none; }
  .pricing-card { grid-template-columns: 1fr; gap: 1.8rem; padding: 2rem; }
  .pc-details { padding-left: 0; border-left: none; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.12); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .modal-panel { max-height: 96vh; }
  .modal-body { flex-direction: column; overflow-y: auto; }
  .modal-media { width: 100%; }
  .modal-stage { width: 100%; aspect-ratio: 9/16; max-height: 62vh; }
  .modal-info { overflow-y: visible; }
  .mi-cta { min-width: 0; }
  .checklist-card { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
  .checklist-media { max-width: 280px; margin: 0 auto; }
  .checklist-body p { margin-left: auto; margin-right: auto; }
  .starter-card { grid-template-columns: 1fr; gap: 1.8rem; padding: 2rem; }
  .parents-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .genetics-steps { flex-direction: column; }
  .gen-arrow { transform: rotate(90deg); justify-content: center; padding: .2rem 0; }
  .genetics-card { padding: 2rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .kailee-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .kailee-photo { max-width: 360px; margin: 0 auto; }
  .kailee-body { text-align: center; }
  .kailee-socials { justify-content: center; }
}
@media (max-width: 760px) {
  .nav, .header-cta .phone-link { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .header.menu-open .nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1.2rem 1.5rem; gap: 1rem; box-shadow: var(--shadow-md);
  }
  .header.menu-open .header-cta .phone-link { display: inline-flex; }
  .section { padding: 4rem 1.2rem; }
  .hero-stats { gap: 1.8rem; }
  .hero-stats .stat-num { font-size: 1.9rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .card { width: 220px; }
  .brand-logo { height: 46px; }
  .field-row { grid-template-columns: 1fr; }
  .grown-grid { columns: 2 150px; }
  .starter-grid { grid-template-columns: 1fr; }
  .reviews-grid { columns: 1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .card { width: 78vw; max-width: 300px; }
  .hero-actions .btn { flex: 1; }
  .hero-content { padding: 4.5rem 1.2rem; }
  /* modal / puppy-nav fit small screens */
  .modal-panel { width: calc(100% - 1.4rem); }
  .modal-puppynav { padding: .55rem 3rem .55rem .7rem; }
  .pn-counter { display: none; }
  .pn-btn { max-width: 49%; font-size: .85rem; padding: .5rem .8rem; }
  .modal-stage { max-height: 56vh; }
  .modal-info { padding: 1.4rem 1.3rem 1.7rem; }
  .mi-name { font-size: 1.8rem; }
  .modal-close { top: 9px; right: 10px; width: 38px; height: 38px; }
  /* tighter section rhythm */
  .section { padding: 3.5rem 1.1rem; }
  .exp-card, .pricing-card, .starter-card, .genetics-card, .checklist-card { padding: 1.6rem; }
  .rail-hint { font-size: .84rem; padding: .45rem .8rem; }
  .review { padding: 1.4rem; }
  .review blockquote { font-size: 1.15rem; }
  .filters { width: 100%; }
  .chip { flex: 1 1 auto; text-align: center; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }
  .trust-strip-inner { gap: .5rem; font-size: .8rem; padding: .7rem 1rem; }
  .trust-dot { display: none; }
  .trust-item { flex: 0 0 auto; }
  .sticky-cta { left: .7rem; right: .7rem; transform: translateY(160%); max-width: none; justify-content: space-between; padding: .5rem .5rem .5rem 1.1rem; }
  .sticky-cta.show { transform: translateY(0); }
  .sticky-cta-text { font-size: .86rem; white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
