/* =============================================================
   Flash Setup — Sunshine palette
   Charcoal primary CTA · yellow accent · WCAG AA throughout
   ============================================================= */

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; }

/* ---------- Tokens ---------- */
:root {
  --charcoal:        #1A1A1A;
  --charcoal-hov:    #2A2A2A;
  --yellow:          #F5C842;
  --yellow-dark:     #D9A91F;
  --cream:           #FBF6E9;
  --cream-soft:      #FDFAF1;
  --white:           #FFFFFF;
  --body:            #3A3A38;
  --muted:           #595048;       /* WCAG AA (4.7:1 on cream) */
  --line:            #E8E0D0;
  --line-strong:     #D9CEB3;

  --container: 1200px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;

  --shadow-1: 0 1px 2px rgba(26,26,26,.06);
  --shadow-2: 0 8px 24px rgba(26,26,26,.08);
  --shadow-3: 0 18px 50px rgba(26,26,26,.12);

  --ease: cubic-bezier(.2,.7,.2,1);

  --font-head: "Geist", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.25rem, 4.4vw + 1rem, 3.75rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 2.2vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.1rem, .5vw + 1rem, 1.3rem); }
p  { margin: 0 0 1rem; }

::selection { background: var(--yellow); color: var(--charcoal); }

/* ---------- A11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--charcoal); color: var(--cream);
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 0; }
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
section { padding-block: clamp(56px, 7vw, 96px); }

.section-head { max-width: 760px; margin: 0 auto 48px; }
.section-head.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal);
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.lede { font-size: 1.1rem; color: var(--muted); margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  font-family: var(--font-body);
  border: 2px solid transparent;
  text-align: center;
  transition: transform .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { min-height: 56px; padding: 14px 28px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--charcoal); color: var(--white);
  box-shadow: var(--shadow-1);
}
.btn-primary:hover { background: var(--charcoal-hov); box-shadow: var(--shadow-2); }

.btn-ghost {
  background: transparent; color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 233, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), padding .25s var(--ease);
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em;
}
.brand-icon { width: 26px; height: 26px; color: var(--yellow-dark); }
.header-actions {
  display: inline-flex; align-items: center; gap: 14px;
}
.header-phone {
  display: none; align-items: center; gap: 6px;
  color: var(--charcoal); font-weight: 600;
  font-size: .95rem;
}
.header-phone svg { width: 15px; height: 15px; color: var(--yellow-dark); }
.header-cta { padding: 10px 18px; min-height: 44px; }

@media (min-width: 720px) {
  .header-phone { display: inline-flex; }
}

/* ---------- HERO ---------- */
.hero {
  padding-block: clamp(48px, 6vw, 96px);
  text-align: center;
  background:
    radial-gradient(900px 600px at 50% -10%, rgba(245, 200, 66, 0.18), transparent 60%),
    var(--cream);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin: 0 0 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow-dark);
}
.hero-title {
  max-width: 980px; margin: 0 auto .35em;
}
.accent-bg {
  background: var(--yellow);
  padding: 2px 10px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-video-wrap {
  max-width: 880px;
  margin: 0 auto 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--charcoal);
  position: relative;
}
.vsl-placeholder {
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, rgba(245,200,66,.12), transparent 50%),
    radial-gradient(circle at 50% 60%, rgba(255,255,255,0.08), transparent 65%),
    var(--charcoal);
  color: var(--cream);
  position: relative;
}
.vsl-play-btn {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal);
  border: none;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.vsl-play-btn:hover { transform: scale(1.06); background: #FFD24D; }
.vsl-play-btn svg { width: 36px; height: 36px; margin-left: 4px; }
.vsl-meta {
  position: absolute; bottom: 20px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-family: var(--font-head);
  font-size: .92rem;
}
.vsl-meta strong { color: var(--yellow); font-weight: 600; }
.vsl-meta span { color: rgba(251, 246, 233, 0.7); }

.hero-cta-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin: 0 0 28px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
}
.trust-pill {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem; color: var(--charcoal);
}
.trust-pill strong { font-weight: 600; }
.trust-pill.highlight {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

/* ---------- NICHE LOCK-IN ---------- */
.niche-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: 28px;
  text-align: center;
}
.niche-line {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.2vw + .6rem, 1.35rem);
  font-weight: 500;
}
.niche-line strong { color: var(--yellow); font-weight: 700; }
.niche-accent {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  color: rgba(251, 246, 233, 0.7);
}

/* ---------- PROBLEM ---------- */
.problem { background: var(--cream); }
.problem-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.problem-icon { font-size: 2rem; margin-bottom: 12px; }
.problem-card h3 { font-family: var(--font-head); margin-bottom: 10px; }
.problem-card p { color: var(--muted); margin: 0; }
.problem-card strong { color: var(--charcoal); }

/* ---------- WHAT YOU GET ---------- */
.what-you-get { background: var(--cream-soft); }
.features-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .features-grid { grid-template-columns: repeat(5, 1fr); } }
.feature {
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.feature-num {
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}
.feature h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 10px; line-height: 1.25; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }
.feature strong { color: var(--charcoal); }

/* ---------- LIVE DEMO ---------- */
.demo { background: var(--cream); }
.demo-card {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  max-width: 880px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.demo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.demo-card-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #FBF6EE 0%, #E8DCC8 100%);
  position: relative; padding: 0;
}
.demo-browser {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid var(--line);
}
.demo-browser span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-strong);
}
.demo-browser em {
  margin-left: 12px;
  font-style: normal;
  font-size: .82rem;
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.demo-screenshot {
  padding: 32px 28px;
  text-align: center;
}
.demo-screenshot h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 10px;
  color: #1F1A17;
}
.demo-screenshot p {
  color: #5C6F84;
  font-size: .9rem;
  margin: 0 0 18px;
}
.demo-fake-cta {
  display: inline-block;
  background: #A85E3A;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
}
.demo-card-text {
  padding: 20px 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.demo-card-text strong {
  color: var(--charcoal); font-family: var(--font-head); font-size: 1.05rem;
}
.demo-card-text span { color: var(--muted); font-size: .9rem; }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--cream-soft); }
.how-steps {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .how-steps { grid-template-columns: repeat(3, 1fr); } }
.how-steps li {
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.how-num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.how-steps h3 { font-family: var(--font-head); margin-bottom: 10px; }
.how-steps p { color: var(--muted); margin: 0; }

/* ---------- PRICING + GUARANTEE ---------- */
.pricing { background: var(--cream); }
.pricing-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  max-width: 1080px; margin: 0 auto;
}
@media (min-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr 1.05fr; gap: 32px; }
}
.guarantee {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.guarantee-badge {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-block;
  width: 56px; height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
}
.guarantee h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
.guarantee p { color: var(--body); margin-bottom: 14px; }
.guarantee a { color: var(--charcoal); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.guarantee a:hover { color: var(--yellow-dark); }
.guarantee-bullets { font-size: 1rem; line-height: 2; }
.guarantee-bullets strong { color: var(--charcoal); }
.guarantee-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
  font-size: .92rem;
  color: var(--muted);
}

.price-card {
  padding: 36px 32px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-3);
}
.price-card h3, .price-card strong { color: var(--white); }
.price-tag {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 18px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw + 1rem, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.price-period {
  font-size: 1.1rem;
  color: rgba(251,246,233,0.7);
}
.price-anchor {
  font-size: .98rem;
  color: rgba(251,246,233,0.85);
  margin-bottom: 26px;
}
.price-anchor strong { color: var(--yellow); font-weight: 600; }
.price-includes { display: grid; gap: 12px; margin-bottom: 28px; }
.price-includes li {
  position: relative;
  padding-left: 28px;
  color: rgba(251,246,233,0.9);
  font-size: .95rem;
  line-height: 1.5;
}
.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .7rem;
}
.price-card .btn-primary {
  background: var(--yellow);
  color: var(--charcoal);
  margin-bottom: 14px;
}
.price-card .btn-primary:hover { background: #FFD24D; }
.price-foot {
  text-align: center;
  font-size: .85rem;
  color: rgba(251,246,233,0.7);
  margin: 0;
}

/* ---------- BOOK / CALENDAR ---------- */
.book {
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(245,200,66,.10), transparent 60%),
    var(--cream-soft);
}
.book-layout {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 960px) {
  .book-layout { grid-template-columns: 320px 1fr; gap: 36px; }
}
.book-trust {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: fit-content;
}
.book-trust h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.book-trust ul { display: grid; gap: 14px; }
.book-trust li {
  padding-left: 22px;
  position: relative;
  font-size: .95rem;
  color: var(--body);
  line-height: 1.5;
}
.book-trust li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--yellow-dark);
  font-weight: 700;
}
.book-trust li strong { color: var(--charcoal); }

.book-calendar { position: relative; min-height: 700px; }
.ghl-calendar-wrapper {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
@media (max-width: 640px) {
  .ghl-calendar-wrapper iframe { min-height: 1100px !important; }
}
.ghl-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: var(--white);
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  pointer-events: none;
  padding: 24px;
  text-align: center;
}
.ghl-placeholder strong { display: block; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 8px; }
.ghl-placeholder p { color: var(--muted); margin: 0; max-width: 380px; }
.ghl-placeholder code {
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .85rem;
}
.ghl-calendar-wrapper.loaded + .ghl-placeholder { display: none; }

.form-sms-disclaimer {
  max-width: 880px;
  margin: 28px auto 0;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}
.form-sms-disclaimer a { color: var(--charcoal); text-decoration: underline; }
.form-sms-disclaimer strong { color: var(--charcoal); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
details:first-child { border-top: 1px solid var(--line); }
summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--charcoal);
  position: relative;
  transition: color .18s var(--ease);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  position: absolute; right: 8px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s var(--ease);
}
details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
summary:hover { color: var(--yellow-dark); }
details p {
  padding: 0 4px 22px;
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}
details a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FOUNDER ---------- */
.founder { background: var(--cream-soft); }
.founder-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1080px; margin: 0 auto;
}
@media (min-width: 760px) {
  .founder-grid { grid-template-columns: 320px 1fr; gap: 64px; }
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}
.founder-copy .eyebrow { margin-bottom: 16px; }
.founder-copy p { color: var(--body); font-size: 1.05rem; }
.founder-copy strong { color: var(--charcoal); }
.founder-copy .btn { margin-top: 16px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(251, 246, 233, 0.78);
  padding: 64px 0 24px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand-col .brand { color: var(--white); }
.footer-brand-col .brand-icon { color: var(--yellow); }
.footer-brand-col p { margin-top: 14px; max-width: 320px; font-size: .95rem; }
.footer-col ul li { margin-bottom: 8px; font-size: .95rem; }
.footer-col a { color: rgba(251, 246, 233, 0.85); }
.footer-col a:hover { color: var(--yellow); text-decoration: underline; }
.footer-col address { font-style: normal; font-size: .95rem; }
.footer-sms-block {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 246, 233, 0.12);
  font-size: .82rem;
  color: rgba(251, 246, 233, 0.65);
  line-height: 1.6;
}
.footer-sms-block strong { color: rgba(251, 246, 233, 0.9); }
.footer-sms-block a { color: rgba(251, 246, 233, 0.9); text-decoration: underline; }
.footer-base {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 246, 233, 0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .82rem; color: rgba(251, 246, 233, 0.55);
}
.footer-base a { color: rgba(251, 246, 233, 0.7); text-decoration: underline; }

/* ---------- STICKY MOBILE BOTTOM CTA ---------- */
.sticky-mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0)) 14px;
  background: rgba(251, 246, 233, 0.96);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(26,26,26,.08);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-width: 72px; min-height: 48px;
  padding: 0 16px;
  background: var(--white);
  border: 2px solid var(--charcoal);
  border-radius: 999px;
  font-weight: 600;
  color: var(--charcoal);
}
.sticky-call svg { width: 18px; height: 18px; color: var(--yellow-dark); }
.sticky-book { flex: 1; min-height: 48px; }

@media (max-width: 759px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 84px; }
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .sticky-mobile-cta { transform: none !important; }
}
