/*
Theme Name:   Avada Child
Template:     Avada
Description:  Avada child theme with Elev8 Hydration custom styles. Colors read from the Avada Global Palette (--awb-color1..8); fonts from Avada Global Typography.
Author:       Elev8
Version:      1.0.0
Text Domain:  Avada
*/

/* =========================================================
   Elev8 Hydration Therapy — App-style design system
   Palette: Warm Taupe / Stone Beige / Off White / Charcoal / Muted Sage
   ========================================================= */

:root {
  --taupe:    var(--awb-color3, #B8ADA4);
  --beige:    var(--awb-color2, #D6CEC3);
  --offwhite: var(--awb-color1, #F7F5F2);
  --charcoal: var(--awb-color8, #2F3437);
  --sage:     var(--awb-color4, #AAB8A1);
  --accent:   var(--awb-color5, #7A2F00);

  --taupe-d:  var(--awb-color6, #9b9087);
  --charcoal-2: var(--awb-color7, #3c4346);
  --line: rgba(47, 52, 55, 0.10);
  --line-2: rgba(47, 52, 55, 0.16);

  --shadow-sm: 0 1px 2px rgba(47,52,55,.06), 0 4px 14px rgba(47,52,55,.06);
  --shadow-md: 0 8px 30px rgba(47,52,55,.10);
  --shadow-lg: 0 24px 60px rgba(47,52,55,.16);

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  --maxw: 1180px;
  --header-h: 78px;

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--offwhite);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  color: var(--charcoal);
}

p { margin: 0 0 1em; color: var(--charcoal-2); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--taupe-d);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--sage);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }

.lede { font-size: 1.12rem; color: var(--charcoal-2); max-width: 60ch; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: -0.01em;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--charcoal); color: var(--offwhite); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #232729; box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn-sage { background: var(--sage); color: var(--charcoal); }
.btn-sage:hover { background: #9aab90; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { background: rgba(255,255,255,.0); color: var(--charcoal); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--charcoal); transform: translateY(-2px); }

.btn-light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header.scrolled {
  background: rgba(247,245,242,.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(47,52,55,.05);
}

.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand .logo-mark {
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--sage);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 800; font-size: .95rem;
  box-shadow: inset 0 0 0 1.5px rgba(47,52,55,.12);
}
.brand .num { color: var(--sage); }

/* header colour modes */
.site-header.on-dark { color: #fff; }
.site-header.on-dark .brand { color: #fff; }
.site-header.on-dark .nav-links a { color: rgba(255,255,255,.88); }
.site-header.on-dark .nav-links a:hover { color: #fff; }
.site-header.scrolled.on-dark { color: var(--charcoal); }
.site-header.scrolled.on-dark .brand { color: var(--charcoal); }
.site-header.scrolled.on-dark .nav-links a { color: var(--charcoal-2); }
.site-header.scrolled .brand .num { color: var(--sage); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .94rem; font-weight: 500; color: var(--charcoal-2);
  position: relative; padding: 4px 0; transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1.5px;
  background: var(--sage); transition: right .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: inherit; }

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

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent; cursor: pointer;
  border-radius: 12px;
  align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-toggle span::before { transform: translateY(-7px); }
.menu-toggle span::after { transform: translateY(5px); }

/* ---------- Mobile drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(247,245,242,.98);
  backdrop-filter: blur(16px);
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
  padding: 26px 24px 40px;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .m-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav .m-close { width: 44px; height: 44px; border: none; background: transparent; font-size: 1.8rem; cursor: pointer; color: var(--charcoal); }
.mobile-nav ul { list-style: none; margin: 40px 0 0; padding: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 20px 4px; font-family: var(--font-display); font-size: 1.7rem; }
.mobile-nav .m-cta { margin-top: auto; display: grid; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media .fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media .fallback {
  background:
    radial-gradient(1200px 700px at 70% 20%, rgba(170,184,161,.55), transparent 60%),
    linear-gradient(160deg, #4b524f 0%, #2F3437 45%, #1f2325 100%);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,31,33,.55) 0%, rgba(28,31,33,.25) 40%, rgba(28,31,33,.72) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: calc(var(--header-h) + 40px) 0 64px; }
.hero h1 { color: #fff; font-size: clamp(2.7rem, 6vw, 4.7rem); max-width: 15ch; }
.hero .hero-sub { color: rgba(255,255,255,.9); font-size: 1.2rem; max-width: 50ch; margin-top: 8px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-badges { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 46px; }
.hero-badge { display: flex; align-items: center; gap: 11px; font-size: .92rem; color: rgba(255,255,255,.92); }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(170,184,161,.25); }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.8); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .bar { width: 1.5px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.1% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* page hero (interior pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 78px) 0 70px;
  background: linear-gradient(180deg, var(--beige) 0%, var(--offwhite) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(170,184,161,.4), transparent 65%); filter: blur(10px);
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); max-width: 18ch; }
.page-hero .lede { position: relative; }
.breadcrumb { font-size: .85rem; color: var(--taupe-d); margin-bottom: 20px; letter-spacing: .02em; }
.breadcrumb a:hover { color: var(--charcoal); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }

.iv-card { display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden; }
.iv-card .iv-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.iv-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--offwhite); border: 1px solid var(--line); color: var(--charcoal);
}
.iv-icon svg { width: 26px; height: 26px; }
.iv-price { font-family: var(--font-display); font-size: 1.5rem; }
.iv-price small { font-family: var(--font-sans); font-size: .8rem; color: var(--taupe-d); font-weight: 500; }
.iv-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.iv-card .iv-desc { color: var(--charcoal-2); font-size: .96rem; flex: 1; }
.iv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.tag {
  font-size: .76rem; font-weight: 600; padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--offwhite); border: 1px solid var(--line); color: var(--taupe-d);
}
.tag.sage { background: rgba(170,184,161,.18); border-color: rgba(170,184,161,.4); color: #5e6e54; }
.iv-card .iv-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.link-arrow { font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 7px; color: var(--charcoal); }
.link-arrow svg { transition: transform .3s var(--ease); }
.iv-card:hover .link-arrow svg { transform: translateX(4px); }

/* ---------- Feature / stat rows ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; color: var(--charcoal); }
.stat .lbl { font-size: .9rem; color: var(--taupe-d); margin-top: 8px; }

.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .f-ic { flex: none; width: 46px; height: 46px; border-radius: 14px; background: rgba(170,184,161,.18); color: #5e6e54; display: grid; place-items: center; }
.feature .f-ic svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1.02rem; margin-bottom: 4px; }
.feature p { font-size: .94rem; margin: 0; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.media-frame {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--beige);
}
.media-frame .swatch-art { position: absolute; inset: 0; }

/* ---------- Membership / pricing ---------- */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 5px; box-shadow: var(--shadow-sm);
}
.billing-toggle button {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; font-size: .9rem; color: var(--taupe-d);
  padding: 10px 22px; border-radius: var(--r-pill); transition: all .3s var(--ease);
}
.billing-toggle button.active { background: var(--charcoal); color: #fff; }
.billing-toggle .save { font-size: .72rem; color: #5e6e54; margin-left: 4px; }

.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured { background: var(--charcoal); color: var(--offwhite); border-color: var(--charcoal); box-shadow: var(--shadow-lg); }
.plan.featured h3, .plan.featured .price { color: #fff; }
.plan.featured .plan-desc, .plan.featured .plan-feat li { color: rgba(247,245,242,.85); }
.plan.featured .plan-feat li svg { color: var(--sage); }
.plan-badge {
  position: absolute; top: 20px; right: 22px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--sage); color: var(--charcoal); padding: 6px 12px; border-radius: var(--r-pill);
}
.plan-name { font-family: var(--font-sans); font-weight: 700; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe-d); }
.plan.featured .plan-name { color: var(--sage); }
.plan h3 { font-size: 1.7rem; margin: 14px 0 4px; }
.price { font-family: var(--font-display); font-size: 3rem; line-height: 1; margin: 14px 0 2px; }
.price .per { font-family: var(--font-sans); font-size: .95rem; font-weight: 500; color: var(--taupe-d); }
.plan.featured .price .per { color: rgba(247,245,242,.7); }
.plan-desc { font-size: .94rem; margin: 10px 0 22px; }
.plan-feat { list-style: none; margin: 0 0 28px; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 13px; }
.plan.featured .plan-feat { border-color: rgba(255,255,255,.14); }
.plan-feat li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--charcoal-2); }
.plan-feat li svg { flex: none; width: 19px; height: 19px; color: var(--sage); margin-top: 2px; }
.plan .btn { margin-top: auto; }

/* comparison table */
.compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--line); font-size: .94rem; }
.compare th { background: var(--offwhite); font-family: var(--font-sans); font-weight: 700; }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--charcoal); font-weight: 600; }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: #5e6e54; font-weight: 700; }
.compare .no { color: var(--taupe); }

/* ---------- Team ---------- */
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 1/1; position: relative; overflow: hidden; }
.team-photo .initials { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 3.4rem; color: rgba(47,52,55,.55); }
.team-body { padding: 26px; }
.team-body .role { font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); filter: brightness(.85); }
.team-body h3 { font-size: 1.5rem; margin: 8px 0 10px; }
.cred-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; }
.step .n {
  width: 46px; height: 46px; border-radius: 14px; background: var(--charcoal); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 16px;
}
.step h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .92rem; margin: 0; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: var(--sage); letter-spacing: 2px; margin-bottom: 12px; }
.quote-card p { font-size: 1.05rem; color: var(--charcoal); font-style: normal; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote-card .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--beige); display: grid; place-items: center; font-weight: 700; color: var(--charcoal); }
.quote-card .who .nm { font-weight: 600; font-size: .92rem; }
.quote-card .who .loc { font-size: .82rem; color: var(--taupe-d); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--charcoal) 0%, #20262a 100%);
  color: #fff; border-radius: var(--r-xl); padding: 64px;
}
.cta-band::before { content:""; position:absolute; right:-80px; bottom:-120px; width:380px; height:380px; background: radial-gradient(circle, rgba(170,184,161,.4), transparent 60%); }
.cta-band h2 { color: #fff; font-size: clamp(2rem,4vw,3rem); position: relative; }
.cta-band p { color: rgba(255,255,255,.85); position: relative; }
.cta-band .hero-actions { position: relative; }

/* ---------- Drip detail page ---------- */
.detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: start; }
.detail-card { position: sticky; top: calc(var(--header-h) + 24px); background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-md); }
.detail-card .price-line { display: flex; align-items: baseline; gap: 8px; }
.detail-card .price-line .big { font-family: var(--font-display); font-size: 2.6rem; }
.ingredient { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.ingredient:last-child { border-bottom: none; }
.ingredient .i-ic { flex: none; width: 40px; height: 40px; border-radius: 12px; background: rgba(170,184,161,.16); color:#5e6e54; display:grid; place-items:center; }
.ingredient h4 { font-family: var(--font-sans); font-weight: 700; font-size: .98rem; margin: 0 0 2px; }
.ingredient p { font-size: .88rem; margin: 0; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }

.benefit-chip { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line); border-radius: var(--r-pill); padding: 11px 18px; font-size:.92rem; font-weight:500; box-shadow: var(--shadow-sm); }
.benefit-chip svg { width:18px; height:18px; color: var(--sage); flex:none; }

/* ---------- Booking ---------- */
.booking-shell { max-width: 920px; margin: 0 auto; background:#fff; border:1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.booking-progress { display:flex; background: var(--offwhite); border-bottom: 1px solid var(--line); }
.booking-progress .bp { flex:1; padding: 18px 16px; text-align:center; font-size:.85rem; font-weight:600; color: var(--taupe-d); position: relative; }
.booking-progress .bp .bp-n { display:inline-grid; place-items:center; width:26px; height:26px; border-radius:50%; background:#fff; border:1px solid var(--line-2); margin-right:8px; font-size:.8rem; }
.booking-progress .bp.active { color: var(--charcoal); }
.booking-progress .bp.active .bp-n { background: var(--charcoal); color:#fff; border-color: var(--charcoal); }
.booking-progress .bp.done .bp-n { background: var(--sage); color: var(--charcoal); border-color: var(--sage); }
.booking-body { padding: 38px; }
.book-step { display: none; }
.book-step.active { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to { opacity:1; transform:none;} }

.option-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:14px; }
.option {
  border:1.5px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:14px; transition: all .25s var(--ease); background:#fff;
}
.option:hover { border-color: var(--line-2); transform: translateY(-2px); }
.option.selected { border-color: var(--charcoal); background: var(--offwhite); box-shadow: inset 0 0 0 1px var(--charcoal); }
.option .o-name { font-weight: 600; }
.option .o-meta { font-size:.84rem; color: var(--taupe-d); }
.option .o-price { font-family: var(--font-display); font-size: 1.2rem; }

.field { margin-bottom: 18px; }
.field label { display:block; font-size:.86rem; font-weight:600; margin-bottom:8px; color: var(--charcoal); }
.field input, .field select, .field textarea {
  width:100%; padding: 14px 16px; border:1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: .96rem; color: var(--charcoal); background:#fff; transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--sage); }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.chip-row { display:flex; flex-wrap:wrap; gap:10px; }
.chip-select { padding:11px 18px; border:1.5px solid var(--line); border-radius: var(--r-pill); cursor:pointer; font-size:.9rem; font-weight:500; transition: all .2s var(--ease); background:#fff; }
.chip-select.selected { background: var(--charcoal); color:#fff; border-color: var(--charcoal); }
.book-actions { display:flex; justify-content:space-between; gap:12px; margin-top: 30px; }

.summary-line { display:flex; justify-content:space-between; padding: 12px 0; border-bottom:1px dashed var(--line); font-size:.96rem; }
.summary-line.total { border-bottom:none; border-top:2px solid var(--charcoal); margin-top:6px; padding-top:16px; font-weight:700; font-size:1.15rem; }
.confirm-check { width:84px; height:84px; border-radius:50%; background: rgba(170,184,161,.2); color:#5e6e54; display:grid; place-items:center; margin:0 auto 22px; }
.confirm-check svg { width:44px; height:44px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(247,245,242,.78); padding: 70px 0 40px; }
.site-footer a { color: rgba(247,245,242,.78); transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color:#fff; margin-bottom: 16px; }
.site-footer h5 { font-family: var(--font-sans); font-weight:700; font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; color:#fff; margin:0 0 16px; }
.site-footer ul { list-style:none; padding:0; margin:0; display:grid; gap:11px; font-size:.92rem; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; margin-top: 50px; padding-top: 26px; border-top:1px solid rgba(255,255,255,.12); font-size:.84rem; color: rgba(247,245,242,.55); }
.footer-disclaimer { font-size:.78rem; color: rgba(247,245,242,.45); max-width: 70ch; margin-top: 14px; }
.social-row { display:flex; gap:12px; margin-top: 18px; }
.social-row a { width:40px; height:40px; border-radius:12px; border:1px solid rgba(255,255,255,.16); display:grid; place-items:center; }
.social-row a:hover { background: rgba(255,255,255,.08); }

/* ---------- Mobile bottom tab bar (app feel) ---------- */
.tabbar {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
  background: rgba(247,245,242,.86); backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  display: none; align-items: center; justify-content: space-around; padding: 8px;
}
.tabbar a { display:flex; flex-direction:column; align-items:center; gap:3px; font-size:.66rem; font-weight:600; color: var(--taupe-d); padding:6px 10px; border-radius: var(--r-pill); flex:1; }
.tabbar a svg { width:21px; height:21px; }
.tabbar a.active { color: var(--charcoal); }
.tabbar a.tab-book { background: var(--charcoal); color:#fff; }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s; }
.reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background: var(--beige); }
.marquee-track { display:flex; gap:54px; padding: 20px 0; white-space:nowrap; animation: marq 26s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1.25rem; color: var(--charcoal); display:inline-flex; align-items:center; gap:16px; opacity:.8; }
.marquee-track span::after { content:"✦"; color: var(--sage); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Utility ---------- */
.bg-beige { background: var(--beige); }
.bg-white { background: #fff; }
.bg-sage-soft { background: rgba(170,184,161,.14); }
.divider { height:1px; background: var(--line); border:none; margin: 0; }
.section-head { max-width: 64ch; }
.section-head.center { margin: 0 auto; text-align: center; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-card { position: static; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan.featured { order: -1; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .cta-band { padding: 46px 32px; }
}
@media (max-width: 760px) {
  :root { --header-h: 64px; }

  /* ---- nav: hamburger + persistent compact Book CTA ---- */
  .nav-links { display: none; }
  .header-cta .btn-light, .header-cta .btn-ghost { display: none; }
  .header-cta { gap: 8px; }
  .header-cta .btn-primary { display: inline-flex; padding: 9px 15px; min-height: 0; font-size: .82rem; }
  .menu-toggle { display: inline-flex; }
  .container { padding: 0 18px; }

  /* ---- spacing ---- */
  .section { padding: 54px 0; }
  .section.tight { padding: 38px 0; }

  /* ---- layout collapse ---- */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .steps { grid-template-columns: 1fr; gap: 12px; }

  /* ---- typography tuned for phones ---- */
  .hero h1 { font-size: 2.35rem; line-height: 1.14; }
  .hero .hero-sub { font-size: 1.02rem; }
  .page-hero { padding-top: calc(var(--header-h) + 54px); padding-bottom: 50px; }
  .page-hero h1 { font-size: 2rem; }
  .lede, .page-hero .lede { font-size: 1rem; }
  h2 { font-size: 1.7rem; }
  .section-head h2 { font-size: 1.7rem; }
  .cta-band h2 { font-size: 1.75rem; }
  .eyebrow { font-size: 10.5px; letter-spacing: .22em; }
  .marquee-track { gap: 30px; }
  .marquee-track span { font-size: 1.02rem; }
  .stat .num { font-size: 2.2rem; }
  .price { font-size: 2.6rem; }
  .iv-card h3 { font-size: 1.3rem; }

  /* ---- buttons: full-width, comfortable tap targets ---- */
  .btn { padding: 15px 22px; font-size: .98rem; min-height: 52px; }
  .btn-sm { padding: 12px 18px; min-height: 46px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; width: 100%; }

  /* ---- mobile drawer menu ---- */
  .mobile-nav { padding: 18px 20px calc(30px + env(safe-area-inset-bottom)); }
  .mobile-nav ul { margin-top: 20px; }
  .mobile-nav a { font-size: 1.4rem; padding: 16px 4px; }
  .mobile-nav .m-cta { gap: 10px; }
  .mobile-nav .m-cta .btn { width: 100%; }

  /* ---- cards / panels ---- */
  .card { padding: 22px; border-radius: 22px; }
  .plan { padding: 28px 24px; }
  .cta-band { padding: 34px 22px; border-radius: 26px; }
  .cta-band::before { width: 240px; height: 240px; }

  /* ---- booking ---- */
  .booking-body { padding: 22px 18px; }
  .booking-progress .bp { font-size: 0; padding: 14px 4px; }
  .booking-progress .bp .bp-n { font-size:.8rem; margin: 0; }
  .book-actions { flex-direction: column-reverse; gap: 10px; }
  .book-actions .btn { width: 100%; }

  /* ---- bottom tab bar (with safe-area inset) ---- */
  .tabbar { display: flex; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); }
  .tabbar a { font-size: .62rem; padding: 6px 4px; gap: 2px; }
  body.has-tabbar { padding-bottom: 94px; }

  /* ---- hero badges stack cleanly ---- */
  .hero-badges { gap: 12px; flex-direction: column; align-items: flex-start; margin-top: 34px; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .container { padding: 0 16px; }
  .brand { font-size: 1.18rem; }
  .brand .logo-mark { width: 30px; height: 30px; font-size: .85rem; }
  .hero h1 { font-size: 2.05rem; }
  .page-hero h1 { font-size: 1.78rem; }
  h2, .section-head h2 { font-size: 1.5rem; }
  .price { font-size: 2.3rem; }
  .iv-price { font-size: 1.3rem; }
  .tag { font-size: .72rem; padding: 5px 11px; }
  .billing-toggle button { padding: 9px 14px; font-size: .82rem; }
  .quote-card p { font-size: 1rem; }
}
/* ===== Lead accent — small accents, FRONT PAGE only (.home). Uses --accent (Avada Color 5). ===== */
.home .eyebrow{ color:var(--accent); }
.home .eyebrow::before{ background:var(--accent); }
.home .stat .num{ color:var(--accent); }
.home .marquee-track span::after{ color:var(--accent); }

/* =========================================================
   Full-bleed reset for Code Block pages
   Removes Avada's #main padding + column wrapper spacing so
   sections span edge-to-edge. Covers the home page (.hero) and
   every interior page (.page-hero). Put here once = no per-block <style>.
   ========================================================= */
body.home #main,
#main:has(.page-hero) { padding: 0 !important; }

body.home #main .fusion-fullwidth,
body.home #main .fusion-builder-row,
body.home #main .fusion-layout-column,
body.home #main .fusion-column-wrapper,
#main:has(.page-hero) .fusion-fullwidth,
#main:has(.page-hero) .fusion-builder-row,
#main:has(.page-hero) .fusion-layout-column,
#main:has(.page-hero) .fusion-column-wrapper {
  width: 100% !important; max-width: 100% !important;
  margin: 0 !important; padding: 0 !important;
  --awb-spacing-left-large: 0 !important;
  --awb-spacing-right-large: 0 !important;
  --awb-margin-top-large: 0 !important;
  --awb-margin-bottom-large: 0 !important;
}