/* ============================================================
   Wake Forest Yoga Collective — style.css
   Palette drawn from the studio itself: charcoal walls,
   warm oak floors, sage mats, olive blocks, brass bowls.
   ============================================================ */

:root {
  --ink: #141714;
  --charcoal: #1e211e;
  --charcoal-soft: #2a2e2a;
  --cream: #faf7f1;
  --sand: #f0eadd;
  --sage: #8fa387;
  --sage-light: #b9c7b0;
  --olive: #5c6b4c;
  --moss: #3d4a36;
  --brass: #c29d6a;
  --text: #2b2e2b;
  --text-soft: #5d635c;
  --text-cream: #e9e6de;
  --text-cream-soft: #b6b8b0;
  --radius: 14px;
  --shadow: 0 18px 50px -20px rgba(20, 24, 20, .35);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--moss);
  color: var(--text-cream);
  text-align: center;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .55rem 1rem;
}
.announce a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 1px; }
.announce a:hover { border-color: #fff; }

/* ---------- Navigation ---------- */
header.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(30, 33, 30, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { height: 52px; width: 52px; }
.nav-logo span {
  font-family: 'Cormorant Garamond', serif; color: var(--text-cream); font-weight: 500;
  font-size: 1.2rem; letter-spacing: .04em; line-height: 1.15;
}
.nav-logo span em { display: block; font-style: normal; font-size: .68rem; font-family: 'Outfit'; letter-spacing: .32em; text-transform: uppercase; color: var(--sage-light); }
nav.links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
nav.links a {
  color: var(--text-cream); font-size: .92rem; font-weight: 300;
  letter-spacing: .06em; position: relative; padding: .25rem 0;
}
nav.links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--sage-light); transition: width .35s var(--ease);
}
nav.links a:hover::after, nav.links a.active::after { width: 100%; }
nav.links a.active { color: #fff; }
.btn-nav {
  background: var(--sage); color: var(--charcoal) !important; font-weight: 400;
  padding: .6rem 1.35rem !important; border-radius: 999px;
  transition: background .3s, transform .3s;
}
.btn-nav::after { display: none; }
.btn-nav:hover { background: var(--sage-light); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: 0; cursor: pointer; z-index: 110; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text-cream); margin: 6px 0; transition: .3s var(--ease); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .95rem 2.2rem; border-radius: 999px;
  font-family: 'Outfit'; font-size: .95rem; font-weight: 400; letter-spacing: .08em;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
  cursor: pointer; border: 0; text-transform: uppercase;
}
.btn-primary { background: var(--olive); color: #fff; }
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light { background: var(--cream); color: var(--charcoal); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--charcoal); border: 1px solid rgba(30,33,30,.4); }
.btn-ghost-dark:hover { border-color: var(--charcoal); background: rgba(30,33,30,.05); transform: translateY(-2px); }

/* ---------- Hero (video) ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--charcoal);
}
.hero video, .hero .hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,20,.25) 0%, rgba(20,23,20,.15) 45%, rgba(20,23,20,.75) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 7rem 1.5rem 5rem; max-width: 900px; }
.hero-inner img.mark { height: clamp(90px, 14vw, 140px); margin: 0 auto 1.8rem; opacity: .95; }
.hero-inner h1 {
  color: #fff; font-size: clamp(3rem, 7.2vw, 5.8rem); font-weight: 400;
}
.hero-inner h1 em { font-style: italic; color: var(--sage-light); }
.hero-inner p {
  color: var(--text-cream); font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  max-width: 560px; margin: 1.4rem auto 2.4rem; font-weight: 200; letter-spacing: .02em;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  animation: drift 2.6s ease-in-out infinite;
}
@keyframes drift { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* Page hero (interior pages) */
.page-hero {
  position: relative; min-height: 52vh; display: flex; align-items: flex-end;
  background: var(--charcoal); overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,23,20,.3), rgba(20,23,20,.78)); }
.page-hero .ph-inner { position: relative; z-index: 2; padding: 8rem clamp(1.5rem,6vw,5rem) 3.5rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-hero h1 { color: #fff; font-size: clamp(2.8rem, 5.6vw, 4.6rem); font-weight: 400; }
.page-hero p { color: var(--text-cream); max-width: 620px; margin-top: 1rem; font-weight: 200; font-size: 1.08rem; }

/* ---------- Sections ---------- */
section { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem); }
.wrap { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  display: block; font-size: .78rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 1.1rem; font-weight: 400;
}
.dark .eyebrow, .on-dark .eyebrow { color: var(--sage-light); }
h2.title { font-size: clamp(2.2rem, 4vw, 3.3rem); margin-bottom: 1.2rem; }
.lead { font-size: 1.12rem; color: var(--text-soft); max-width: 640px; font-weight: 300; }
.dark { background: var(--charcoal); color: var(--text-cream); }
.dark h2.title { color: #fff; }
.dark .lead { color: var(--text-cream-soft); }
.sand { background: var(--sand); }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split .img-frame { position: relative; }
.split .img-frame img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.split .img-frame::before {
  content: ''; position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--sage); border-radius: var(--radius); z-index: -1;
}
.dark .split .img-frame::before { border-color: rgba(185,199,176,.4); }

/* Ticker */
.ticker { overflow: hidden; background: var(--moss); padding: 1.1rem 0; white-space: nowrap; }
.ticker-track { display: inline-block; animation: ticker 30s linear infinite; }
.ticker span {
  font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-cream);
  font-size: 1.35rem; margin: 0 1.6rem;
}
.ticker span i { font-style: normal; color: var(--sage-light); margin-left: 3.2rem; }
@keyframes ticker { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* Cards grid */
.grid { display: grid; gap: 1.8rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 34px -18px rgba(20,24,20,.25);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 3/2.1; object-fit: cover; width: 100%; }
.card .pad { padding: 1.6rem 1.7rem 1.9rem; }
.card h3 { font-size: 1.55rem; margin-bottom: .5rem; }
.card p { color: var(--text-soft); font-size: .96rem; }
.card .tag {
  display: inline-block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  background: var(--sand); color: var(--olive); border-radius: 999px; padding: .28rem .8rem; margin-bottom: .8rem;
}
.dark .card { background: var(--charcoal-soft); }
.dark .card h3 { color: #fff; }
.dark .card p { color: var(--text-cream-soft); }
.dark .card .tag { background: rgba(143,163,135,.15); color: var(--sage-light); }

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding: 2rem 1.8rem; border-top: 1px solid rgba(30,33,30,.15); }
.dark .step { border-color: rgba(255,255,255,.12); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2.2rem; color: var(--sage);
  display: block; margin-bottom: .6rem;
}
.step h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.step p { color: var(--text-soft); font-size: .96rem; }
.dark .step p { color: var(--text-cream-soft); }
.dark .step h3 { color: #fff; }

/* Widget placeholder */
.widget-slot {
  border: 2px dashed var(--sage); border-radius: var(--radius);
  background: rgba(143,163,135,.07); padding: 3.5rem 2rem; text-align: center;
}
.widget-slot .ws-icon { font-size: 2.2rem; display: block; margin-bottom: .8rem; }
.widget-slot h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.widget-slot p { color: var(--text-soft); font-size: .92rem; max-width: 520px; margin: 0 auto; }
.widget-slot code {
  display: inline-block; margin-top: .9rem; background: var(--charcoal); color: var(--sage-light);
  font-size: .8rem; padding: .35rem .9rem; border-radius: 6px; font-family: ui-monospace, monospace;
}

/* Pricing */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: stretch; }
.price-card {
  background: #fff; border-radius: var(--radius); padding: 2.6rem 2.2rem; text-align: center;
  box-shadow: 0 10px 34px -18px rgba(20,24,20,.25); position: relative;
  display: flex; flex-direction: column; transition: transform .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { background: var(--charcoal); color: var(--text-cream); transform: scale(1.04); }
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: var(--charcoal); font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; padding: .35rem 1.1rem; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase; font-family: 'Outfit'; font-weight: 400; }
.price-card .amount { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; margin: 1rem 0 .2rem; }
.price-card.featured .amount { color: #fff; }
.price-card .per { font-size: .85rem; color: var(--text-soft); letter-spacing: .1em; text-transform: uppercase; }
.price-card.featured .per { color: var(--text-cream-soft); }
.price-card ul { list-style: none; margin: 1.6rem 0 2rem; text-align: left; flex: 1; }
.price-card ul li { padding: .45rem 0 .45rem 1.6rem; position: relative; font-size: .95rem; color: var(--text-soft); }
.price-card.featured ul li { color: var(--text-cream-soft); }
.price-card ul li::before { content: '·'; position: absolute; left: .4rem; color: var(--sage); font-size: 1.6rem; line-height: 1; top: .28rem; }

/* Quote band */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 3.3vw, 2.7rem); max-width: 860px; margin: 0 auto; line-height: 1.35;
}
.quote-band cite { display: block; margin-top: 1.4rem; font-family: 'Outfit'; font-style: normal; font-size: .8rem; letter-spacing: .3em; text-transform: uppercase; color: var(--sage); }

/* App band */
.app-band { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.store-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.store-badges a {
  display: inline-flex; align-items: center; gap: .6rem; border: 1px solid rgba(255,255,255,.4);
  border-radius: 12px; padding: .7rem 1.4rem; color: #fff; font-size: .95rem; transition: .3s;
}
.store-badges a:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.store-badges a small { display: block; font-size: .68rem; opacity: .7; letter-spacing: .08em; }
.store-badges-dark a { border-color: rgba(30,33,30,.35); color: var(--charcoal); }
.store-badges-dark a:hover { background: rgba(30,33,30,.06); border-color: var(--charcoal); }

/* Gallery strip */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery-strip img { aspect-ratio: 1/1.15; object-fit: cover; border-radius: 10px; transition: transform .5s var(--ease), opacity .4s; box-shadow: 0 8px 26px -14px rgba(0,0,0,.5); }
.gallery-strip img:hover { transform: scale(1.03); opacity: .92; }

/* CTA panel */
.cta-panel {
  position: relative; border-radius: calc(var(--radius) + 6px); overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.8rem, 5vw, 4.5rem); text-align: center;
}
.cta-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-panel::after { content: ''; position: absolute; inset: 0; background: rgba(24,28,24,.72); }
.cta-panel > div { position: relative; z-index: 2; }
.cta-panel h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.cta-panel p { color: var(--text-cream); max-width: 540px; margin: 0 auto 2.2rem; font-weight: 200; }

/* Contact / info rows */
.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.info-cols h3 { font-size: 1.3rem; margin-bottom: .8rem; }
.info-cols p, .info-cols a { color: var(--text-soft); font-size: .98rem; line-height: 1.9; }
.info-cols a:hover { color: var(--olive); }

/* Footer */
footer {
  background: var(--ink); color: var(--text-cream-soft);
  padding: 4rem clamp(1.5rem, 6vw, 5rem) 2rem;
}
.foot-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot-grid img { height: 84px; margin-bottom: 1rem; }
.foot-grid h4 { color: #fff; font-size: .8rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 400; margin-bottom: 1rem; }
.foot-grid a, .foot-grid p { display: block; color: var(--text-cream-soft); font-size: .92rem; line-height: 2.1; }
.foot-grid a:hover { color: var(--sage-light); }
.foot-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sage-light); font-size: 1.1rem; }
.foot-base {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: #7d827c;
}

/* ============================================================
   ANIMATION LAYER
   ============================================================ */

/* Reveal on scroll — hidden state only when JS is running (html.js) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }

/* Hero entrance: staggered word rise (spans added by main.js) */
.hero-inner h1 .w {
  display: inline-block; opacity: 0;
  transform: translateY(.6em) rotate(1.5deg);
  animation: wordRise 1.1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes wordRise { to { opacity: 1; transform: none; } }
.hero-inner p, .hero-inner .hero-cta { opacity: 0; animation: fadeUp 1.2s var(--ease) forwards; }
.hero-inner p { animation-delay: 1.15s; }
.hero-inner .hero-cta { animation-delay: 1.4s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Logo mark: fade in, then breathe — inhale, exhale */
.hero-inner img.mark { opacity: 0; animation: fadeUp 1.2s var(--ease) .15s forwards, breathe 7s ease-in-out 2s infinite; }
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.045); }
  60% { transform: scale(1.045); }
}

/* Interior page banners: slow ken-burns drift */
.page-hero img { animation: kenburns 22s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09) translateY(-1.2%); }
}
.page-hero .ph-inner > * { opacity: 0; animation: fadeUp 1s var(--ease) forwards; }
.page-hero .ph-inner > *:nth-child(1) { animation-delay: .1s; }
.page-hero .ph-inner > *:nth-child(2) { animation-delay: .28s; }
.page-hero .ph-inner > *:nth-child(3) { animation-delay: .46s; }

/* Card image slow zoom on hover */
.card img { transition: transform 1.2s var(--ease); }
.card:hover img { transform: scale(1.05); }

/* Eyebrow rule: animated line before the label */
.eyebrow { position: relative; padding-left: 0; }
.eyebrow::before {
  content: none;
}
@keyframes ruleGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.eyebrow.centered { padding-left: 0; }
.eyebrow.centered::before { display: none; }

/* Buttons: light sweep on hover */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ''; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg); transition: left .7s var(--ease);
}
.btn:hover::before { left: 120%; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-inner h1 .w, .hero-inner img.mark, .hero-inner p, .hero-inner .hero-cta,
  .page-hero .ph-inner > * { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .price-cards, .info-cols { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .split, .app-band { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
}
@media (max-width: 720px) {
  nav.links {
    position: fixed; inset: 0; background: rgba(20,23,20,.97); flex-direction: column;
    justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform .45s var(--ease);
  }
  nav.links.open { transform: none; }
  nav.links a { font-size: 1.3rem; }
  .hamburger { display: block; }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .grid-3, .grid-2, .price-cards, .info-cols { grid-template-columns: 1fr; }
  .hero { min-height: 86vh; }
}

/* ============================================================
   CONVERSION LAYER — offer band, photo cards, floating CTA
   ============================================================ */

/* Offer band */
.offer-band {
  display: grid; grid-template-columns: 1.1fr 1fr; border-radius: calc(var(--radius) + 6px);
  overflow: hidden; background: var(--moss); color: var(--text-cream); box-shadow: var(--shadow);
}
.offer-copy { padding: clamp(2.5rem, 5vw, 4.5rem); }
.offer-copy .kicker {
  display: inline-block; background: var(--brass); color: var(--charcoal);
  font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  padding: .4rem 1.1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.offer-copy h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: .4rem; }
.offer-price {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 8vw, 6.4rem);
  color: #fff; line-height: 1; margin: .6rem 0 .2rem;
}
.offer-price sup { font-size: .35em; vertical-align: super; color: var(--sage-light); }
.offer-price .mo { font-size: .22em; font-family: 'Outfit'; font-weight: 300; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-light); }
.offer-copy ul { list-style: none; margin: 1.4rem 0 2rem; }
.offer-copy ul li { padding: .4rem 0 .4rem 1.8rem; position: relative; color: var(--text-cream); font-size: 1rem; }
.offer-copy ul li::before { content: '✓'; position: absolute; left: .2rem; color: var(--brass); }
.offer-copy .fine { font-size: .8rem; color: var(--sage-light); margin-top: 1rem; letter-spacing: .04em; }
.offer-img { position: relative; min-height: 320px; }
.offer-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offer-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--moss), transparent 40%); }

/* Photo feature cards (image + copy + button) */
.card .pad .btn { margin-top: 1.2rem; padding: .7rem 1.6rem; font-size: .85rem; }

/* Floating CTA pill */
.float-cta {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 200;
  background: var(--olive); color: #fff; padding: .95rem 1.7rem; border-radius: 999px;
  font-family: 'Outfit'; font-size: .92rem; font-weight: 400; letter-spacing: .06em;
  box-shadow: 0 14px 40px -12px rgba(20,24,20,.55);
  display: inline-flex; align-items: center; gap: .6rem;
  opacity: 0; transform: translateY(80px); pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease), background .3s;
}
.float-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { background: var(--moss); }
.float-cta .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--brass);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(194,157,106,.55); }
  60% { box-shadow: 0 0 0 9px rgba(194,157,106,0); }
}

@media (max-width: 960px) {
  .offer-band { grid-template-columns: 1fr; }
  .offer-img { min-height: 240px; order: -1; }
  .offer-img::after { background: linear-gradient(0deg, var(--moss), transparent 55%); }
}
@media (max-width: 720px) {
  .float-cta { left: 1rem; right: 1rem; justify-content: center; }
}

/* ============================================================
   VALUE BAR — proof points under the hero (replaces ticker)
   ============================================================ */
.value-bar {
  background: var(--moss); display: grid; grid-template-columns: repeat(4, 1fr);
}
.value-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .15rem;
  text-align: center; padding: 1.5rem 1rem;
  border-left: 1px solid rgba(255,255,255,.12);
  transition: background .35s var(--ease);
}
.value-bar a:first-child { border-left: 0; }
.value-bar a:hover { background: rgba(255,255,255,.07); }
.value-bar .big {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  color: #fff; line-height: 1.15;
}
.value-bar .big em { font-style: italic; color: var(--brass); }
.value-bar .sub {
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--sage-light); font-weight: 300;
}
@media (max-width: 960px) {
  .value-bar { grid-template-columns: 1fr 1fr; }
  .value-bar a:nth-child(3) { border-left: 0; }
  .value-bar a:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.lead-form {
  background: var(--charcoal-soft); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: grid; gap: 1rem;
}
.lead-form label {
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage-light); display: block; margin-bottom: .35rem;
}
.lead-form input, .lead-form select {
  width: 100%; padding: .85rem 1rem; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-family: 'Outfit'; font-size: 1rem; font-weight: 300;
  transition: border .3s, background .3s;
}
.lead-form input::placeholder { color: rgba(233,230,222,.4); }
.lead-form input:focus, .lead-form select:focus {
  outline: none; border-color: var(--sage); background: rgba(255,255,255,.09);
}
.lead-form select { appearance: none; -webkit-appearance: none; }
.lead-form option { color: var(--charcoal); background: #fff; }
.lead-form textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-family: 'Outfit'; font-size: 1rem; font-weight: 300;
  resize: vertical; min-height: 92px; transition: border .3s, background .3s;
}
.lead-form textarea::placeholder { color: rgba(233,230,222,.4); }
.lead-form textarea:focus { outline: none; border-color: var(--sage); background: rgba(255,255,255,.09); }
.lead-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lead-form button.btn { width: 100%; margin-top: .4rem; }
.lead-form .form-fine { font-size: .78rem; color: var(--text-cream-soft); text-align: center; }
.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
  color: var(--sage-light); font-size: 1.1rem;
}
@media (max-width: 960px) {
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lead-form { padding: 1.5rem 1.25rem; }
  .lead-form label { font-size: .7rem; }
  .lead-form input, .lead-form select, .lead-form textarea { font-size: 16px; }
  .app-note { font-size: .95rem !important; padding: 1rem 1.1rem !important; line-height: 1.55 !important; }
}

/* Official store badges (SVG) */
.store-badges a { border: 0; padding: 0; background: transparent !important; border-radius: 8px; }
.store-badges a:hover { transform: translateY(-2px); }
.store-badges a img { height: 52px; width: auto; display: block; }

/* Live WellnessLiving widget containers */
.widget-live {
  background: #fff; border-radius: var(--radius); padding: clamp(1rem, 2.5vw, 2rem);
  box-shadow: 0 10px 34px -18px rgba(20,24,20,.25); min-height: 420px;
}

/* ============================================================
   PREMIUM REFINEMENT LAYER
   ============================================================ */

/* Announcement bar: ink, not green — tonal with the nav below it */
.announce { background: var(--ink); color: #cfd2c8; }
.announce a { color: var(--brass); border-bottom-color: rgba(194,157,106,.5); }
.announce a:hover { border-color: var(--brass); }

/* Proof bar: flows out of the dark hero — engraved, not painted */
.value-bar { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); }
.value-bar a { border-left-color: rgba(255,255,255,.08); padding: 1.7rem 1rem; }
.value-bar a:hover { background: rgba(194,157,106,.07); }
.value-bar .big { color: var(--cream); }
.value-bar .big em { color: var(--brass); }
.value-bar .sub { color: #9aa694; }
@media (max-width: 960px) {
  .value-bar a:nth-child(n+3) { border-top-color: rgba(255,255,255,.08); }
}

/* Offer band: full-bleed image, cinematic overlay, brass keyline */
.offer-band {
  display: flex; align-items: center; grid-template-columns: none;
  position: relative; min-height: 480px; background: var(--ink);
}
.offer-band .ob-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.offer-band::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    rgba(22,27,20,.97) 0%, rgba(35,42,33,.92) 34%,
    rgba(35,42,33,.55) 60%, rgba(22,27,20,.18) 100%);
}
.offer-band::after {
  content: ''; position: absolute; inset: 14px; z-index: 2;
  border: 1px solid rgba(194,157,106,.4); border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.offer-copy { position: relative; z-index: 3; max-width: 620px; }
.offer-copy .kicker { letter-spacing: .26em; }
.offer-price sup { color: var(--brass); }
.offer-copy ul li::before { color: var(--brass); }
.offer-img { display: none; }
@media (max-width: 960px) {
  .offer-band { min-height: 0; }
  .offer-band::before {
    background: linear-gradient(180deg, rgba(22,27,20,.96) 0%, rgba(35,42,33,.88) 100%);
  }
}

/* Page-hero eyebrow: brighter, larger, legible over photos */
.page-hero .eyebrow, .hero .eyebrow {
  color: #edf0e4; font-size: .88rem; font-weight: 400;
  text-shadow: 0 1px 16px rgba(0,0,0,.6);
}
.page-hero .eyebrow::before { background: var(--brass); }
.page-hero p { text-shadow: 0 1px 12px rgba(0,0,0,.45); }

/* Mobile menu fix: backdrop-filter on the header traps the fixed-position
   menu overlay inside it. On small screens use a solid header instead. */
@media (max-width: 720px) {
  header.nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(20, 23, 20, .97);
  }
  nav.links { height: 100vh; height: 100dvh; }
}

/* ============================================================
   ELEVATION PACK — FAQ, scroll-lit quote, hero zoom, map, trust
   ============================================================ */

/* FAQ accordion */
.faq { max-width: 820px; }
.faq details { border-top: 1px solid rgba(30,33,30,.15); }
.faq details:last-child { border-bottom: 1px solid rgba(30,33,30,.15); }
.faq summary {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500;
  padding: 1.3rem 3rem 1.3rem 0; cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  font-family: 'Outfit'; font-weight: 200; font-size: 1.8rem; color: var(--olive);
  transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--text-soft); padding: 0 0 1.4rem; max-width: 720px; }

/* Scroll-lit quote (homepage manifesto) */
.js .quote-scrub .qw { color: rgba(43,46,43,.16); transition: color .3s; }
.js .quote-scrub .qw.lit { color: var(--text); }

/* Hero video zoom-on-scroll */
.hero video { will-change: transform; }

/* Map embed */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 3rem; }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.85) contrast(1.02); }

/* Contact action buttons */
.contact-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.contact-actions .btn { padding: .8rem 1.6rem; font-size: .85rem; }
.split .map-embed { grid-column: 1 / -1; }

/* Button legibility: heavier text, deeper green for stronger contrast */
.btn { font-weight: 500; }
.btn-primary { background: #4f5e40; color: #fff; }
.btn-primary:hover { background: var(--moss); }
.btn-nav { font-weight: 500; }
.contact-actions .btn { font-size: .9rem; }

/* ============================================================
   CONVERSION AUDIT FIXES
   ============================================================ */

/* Anchored sections clear the sticky nav */
section[id], div[id] { scroll-margin-top: 96px; }

/* Hero trust line — risk reversal at the moment of highest intent */
.hero-trust {
  margin-top: 1.6rem; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(233,230,222,.75);
}
.hero-trust i { font-style: normal; color: var(--brass); margin: 0 .5rem; }

/* Card text links — every card gets a door */
.card .textlink {
  display: inline-block; margin-top: 1rem; font-size: .85rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--olive); font-weight: 500;
  border-bottom: 1px solid rgba(92,107,76,.35); padding-bottom: 2px;
  transition: border-color .3s, color .3s;
}
.card .textlink:hover { color: var(--moss); border-color: var(--moss); }
.dark .card .textlink { color: var(--sage-light); border-color: rgba(185,199,176,.35); }

/* Offer callout above the schedule widget */
.offer-callout {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--moss); color: var(--text-cream); border-radius: var(--radius);
  padding: 1.3rem 1.8rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.offer-callout .oc-text { font-size: 1rem; }
.offer-callout .oc-text strong { color: #fff; font-weight: 500; }
.offer-callout .oc-text .price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--brass); font-style: italic; padding: 0 .2rem; }
.offer-callout .btn { padding: .75rem 1.6rem; font-size: .82rem; white-space: nowrap; }
@media (max-width: 720px) {
  .offer-callout { flex-direction: column; align-items: flex-start; }
}

/* Contact buttons: outrank the .info-cols link color that was
   painting the Call Us button text dark on green */
.contact-actions a.btn-primary { color: #fff; }
.contact-actions a.btn-primary:hover { color: #fff; }
.contact-actions a.btn-ghost-dark { color: var(--charcoal); }

/* Film frame — the pre-launch teaser in its own cinema moment */
.film-frame {
  position: relative; border-radius: calc(var(--radius) + 4px); overflow: hidden;
  background: var(--ink); padding: clamp(1rem, 2.5vw, 1.8rem); box-shadow: var(--shadow);
}
.film-frame::before {
  content: ''; position: absolute; inset: 10px; z-index: 2;
  border: 1px solid rgba(194,157,106,.4); border-radius: var(--radius);
  pointer-events: none;
}
.film-frame video { width: 100%; display: block; border-radius: calc(var(--radius) - 6px); }
