/* Lee — Personal Training landing page
   Re-themed from the Mind Muscle Training layout to a light, warm palette:
   colour palette per requirement —
     primary   #254F1A (deep green)
     secondary #E2B7B9 (rose)
     tertiary  #FFD700 (gold)
     background#FFF6E6 (cream)
   Archivo display + Inter body. */

:root {
  --green: #254F1A;
  --green-dark: #1a3a12;
  --green-soft: #eef2ea;
  --pink: #E2B7B9;
  --pink-soft: #f6e7e8;
  --gold: #FFD700;
  --gold-dark: #d9b400;
  --cream: #FFF6E6;
  --cream-2: #fffaf0;
  --ink: #1f2a17;
  --muted: #6a7061;
  --line: #ece1cb;
  --line-2: #e6dcc6;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: 'Archivo', sans-serif; letter-spacing: -0.01em; color: var(--ink); }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
iframe { border: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700;
  color: var(--green); margin-bottom: 12px;
}

.btn {
  display: inline-block; padding: 16px 30px; border-radius: 6px; font-weight: 700;
  font-family: 'Archivo', sans-serif; font-size: 16px; text-align: center;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
/* buttons on dark green sections */
.on-dark .btn-primary { background: var(--gold); color: var(--ink); }
.on-dark .btn-primary:hover { background: var(--gold-dark); }
.on-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.on-dark .btn-outline:hover { background: #fff; color: var(--green); border-color: #fff; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,246,230,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand {
  display: flex; align-items: center; gap: 10px; color: var(--green);
  font-weight: 700; font-family: 'Archivo', sans-serif; font-size: 15px;
  text-transform: uppercase; letter-spacing: .02em; flex-shrink: 0;
}
.brand img { width: 38px; height: 38px; }
.site-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.site-nav > a { font-size: 14px; color: var(--muted); font-weight: 500; }
.site-nav > a:hover { color: var(--green); }
.site-nav > a[aria-current="page"] { color: var(--green); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-cta { padding: 11px 20px; font-size: 14px; }

@media (max-width: 760px) {
  .site-header .container { flex-wrap: nowrap; gap: 12px; }
  .site-nav { display: none; }
  .brand { min-width: 0; }
  .brand span { font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-cta { flex-shrink: 0; }
}
@media (max-width: 520px) {
  .brand span { font-size: 13px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(ellipse at top right, rgba(226,183,185,.5) 0%, rgba(255,246,230,0) 55%),
    radial-gradient(ellipse at bottom left, rgba(255,215,0,.18) 0%, rgba(255,246,230,0) 50%),
    var(--cream);
  padding: 64px 0 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 46px; line-height: 1.05; font-weight: 900; margin-bottom: 20px; }
.hero h1 span { color: var(--green); display: block; }
.hero p.sub { font-size: 19px; color: #4a5142; max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-fine { font-size: 13px; color: var(--muted); margin: 14px 0 0; }
.hero-img {
  border-radius: 10px; overflow: hidden; align-self: end;
  position: relative; box-shadow: 0 24px 60px rgba(37,79,26,.20);
}
.hero-img::after {
  content: ""; position: absolute; left: -16px; bottom: -16px; width: 120px; height: 120px;
  background: var(--gold); border-radius: 12px; z-index: -1;
}
.hero-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .hero-img { order: -1; max-width: 360px; margin: 0 auto; }
}

/* ---------- Experience stat panel (deep green feature band) ---------- */

.experience {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 62px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.experience .eyebrow-big {
  text-align: center; font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 26px; letter-spacing: .3em; color: var(--gold); margin-bottom: 40px;
}
.experience .eyebrow-big::after {
  content: ''; display: block; width: 54px; height: 3px; background: var(--gold);
  border-radius: 2px; margin: 14px auto 0;
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1000px; margin: 0 auto; }
.stat { position: relative; text-align: center; padding: 6px 22px; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: rgba(255,255,255,.18);
}
.stat-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 14px; border-radius: 50%;
  color: var(--gold); background: rgba(255,215,0,.14); border: 1px solid rgba(255,215,0,.34);
}
.stat-ico svg { width: 26px; height: 26px; fill: currentColor; }
.stat-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(20px, 2.6vw, 32px); color: #fff; margin-bottom: 8px; line-height: 1.1; }
.stat-label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.72); text-transform: uppercase; line-height: 1.4; }
@media (max-width: 760px) {
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 38px 0; }
  .stat + .stat::before { display: none; }
}
@media (max-width: 520px) {
  .experience .eyebrow-big { font-size: 22px; letter-spacing: .2em; }
}

/* ---------- Sections ---------- */

section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 32px; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 17px; }

/* section background helpers */
.on-cream { background: var(--cream); color: var(--ink); }
.on-white { background: var(--cream-2); color: var(--ink); }
.on-pink { background: var(--pink-soft); color: var(--ink); }
.on-dark { background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; }
.on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark .eyebrow { color: var(--gold); }

/* ---------- Video ---------- */

.video-feature { background: var(--pink-soft); }
.video-wrap { max-width: 820px; margin: 0 auto; position: relative; padding-top: 56.25%; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: 0 24px 60px rgba(37,79,26,.16); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: #000; display: block; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.video-poster::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at center, rgba(0,0,0,.10) 0%, rgba(0,0,0,.48) 100%);
  transition: background .25s ease;
}
.video-poster:hover::before { background: radial-gradient(circle at center, rgba(0,0,0,.02) 0%, rgba(0,0,0,.38) 100%); }
.video-poster .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 84px; height: 84px; background: var(--green); border-radius: 50%;
  box-shadow: 0 8px 26px rgba(0,0,0,.4); transition: background .15s ease, transform .15s ease;
}
.video-poster .play-btn::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-38%, -50%);
  border-style: solid; border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}
.video-poster .play-btn::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,79,26,.5);
  animation: playPulse 2.2s ease-out infinite;
}
@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,79,26,.45); }
  70%  { box-shadow: 0 0 0 22px rgba(37,79,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,79,26,0); }
}
@media (prefers-reduced-motion: reduce) { .video-poster .play-btn::before { animation: none; } }
.video-poster:hover .play-btn { background: var(--green-dark); transform: translate(-50%, -50%) scale(1.06); }

/* ---------- Transformations ---------- */

.transformations { background: var(--cream); color: var(--ink); }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: 12px;
  padding: 14px; box-shadow: 0 6px 22px rgba(37,79,26,.06);
}
.ba-media { display: block; overflow: hidden; border-radius: 8px; margin-bottom: 14px; }
.ba-media img { margin-bottom: 0; display: block; width: 100%; aspect-ratio: 1.05; object-fit: cover; }
.ba-card h4 { font-size: 17px; margin-bottom: 3px; color: var(--ink); }
.ba-card p { color: var(--muted); font-size: 14px; }
.ba-card p strong { color: var(--ink); font-weight: 600; }
.ba-card .ba-stats {
  background: rgba(37,79,26,.07); color: var(--green);
  padding: 9px 11px; border-radius: 7px; margin-top: 12px;
  font-size: 12.5px; line-height: 1.45; font-weight: 600;
}
@media (max-width: 800px) { .ba-grid { grid-template-columns: 1fr; } }

/* ---------- Who this is for ---------- */

.who { background: var(--cream-2); color: var(--ink); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who-card { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 24px; border-top: 4px solid var(--gold); }
.who-card h4 { font-size: 17px; margin-bottom: 10px; }
.who-card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 800px) { .who-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */

.about { background: var(--pink-soft); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.about-figure { position: relative; }
.about-figure::before {
  content: ""; position: absolute; left: -14px; top: -14px; right: 14px; bottom: 14px;
  border: 2px solid var(--green); border-radius: 12px; z-index: 0;
}
.about-figure img {
  position: relative; z-index: 1; display: block; width: 100%;
  border-radius: 12px; box-shadow: 0 20px 44px rgba(37,79,26,.16);
}
.about-copy p { margin-bottom: 16px; color: #3f4738; font-size: 16px; }
.about-copy p:first-of-type { font-size: 17px; color: #2c3324; }
.about-copy p strong { color: var(--green); }
.about-sign {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid #e4cdce;
  font-family: 'Archivo', sans-serif; font-weight: 700; letter-spacing: .02em;
  color: var(--ink); font-size: 15px;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figure::before { left: -8px; top: -8px; right: 8px; bottom: 8px; }
}

/* ---------- What's included (deep green band) ---------- */

.included { background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.included-grid h2 { font-size: 28px; margin-bottom: 18px; color: #fff; }
.included-grid .eyebrow { color: var(--gold); }
.included-grid ul { list-style: none; }
.included-grid li { padding: 9px 0 9px 26px; position: relative; font-size: 15px; color: #eef2ea; }
.included-grid li:before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.included-grid img { border-radius: 12px; box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.included-grid li strong { color: #fff; }
@media (max-width: 800px) {
  .included-grid { grid-template-columns: 1fr; }
  .included-grid img { order: -1; }
}
/* Highlighted "Free gym membership" item */
.included-grid li.inc-highlight {
  background: rgba(255,215,0,.14);
  border: 1px solid rgba(255,215,0,.5);
  border-radius: 8px;
  padding: 12px 16px 12px 42px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}
.included-grid li.inc-highlight::before {
  content: "\2605";
  left: 16px; top: 12px;
  color: var(--gold);
  font-weight: 700;
}
.included-grid li.inc-highlight strong { color: var(--gold); }

/* ---------- Testimonials ---------- */

.testimonials { background: var(--cream); color: var(--ink); }
.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.test-card { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 28px; }
.test-card h4 { font-size: 17px; margin-bottom: 12px; color: var(--green); }
.test-card blockquote { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.test-person { display: flex; align-items: center; gap: 10px; }
.test-person img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.test-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px;
}
@media (min-width: 701px) {
  .test-grid > .test-card:last-child:nth-child(odd) {
    grid-column: 1 / -1; justify-self: center; max-width: calc(50% - 12px);
  }
}
.test-person span { font-size: 14px; font-weight: 600; }
.test-person small { display: block; color: #8a8f82; font-weight: 400; }

.google-rating { display: block; margin: 18px auto 8px; font-weight: 700; color: var(--ink); }
.google-rating span { color: var(--green); }
.google-rating a:hover { text-decoration: underline; }
.google-stars { display: flex; justify-content: center; gap: 3px; }
.google-stars svg { width: 18px; height: 18px; fill: var(--gold-dark); }

.test-card-photo { padding: 0 0 28px; overflow: hidden; }
.test-ba-img { width: 100%; margin-bottom: 20px; border-radius: 0; }
.test-card-photo h4,
.test-card-photo blockquote,
.test-card-photo .test-person { padding-left: 28px; padding-right: 28px; }
@media (max-width: 700px) { .test-grid { grid-template-columns: 1fr; } }

/* ---------- How it works (pink-soft band) ---------- */

.how { background: var(--cream-2); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.how-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 30px 24px 26px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.how-card:hover { border-color: rgba(37,79,26,.4); }
.how-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 19px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px rgba(37,79,26,.10);
}
.how-card h4 { font-size: 17px; margin-bottom: 8px; color: var(--ink); }
.how-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.how-card:not(:last-child)::after {
  content: "\2192";
  position: absolute; top: 53px; right: -26px; width: 26px;
  text-align: center; transform: translateY(-50%);
  color: var(--green); font-weight: 700; font-size: 20px;
}
.how-photo {
  border-radius: 12px; overflow: hidden; max-width: 820px; margin: 44px auto 0;
  border: 1px solid var(--line-2); box-shadow: 0 14px 36px rgba(37,79,26,.14);
}
@media (max-width: 700px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-card:not(:last-child)::after { display: none; }
}

/* ---------- Pricing ---------- */

.pricing { background: var(--cream); color: var(--ink); }
.price-note { text-align: center; color: var(--muted); margin-bottom: 40px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 26px;
  display: flex; flex-direction: column; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(37,79,26,.12); }
.price-card.featured { border: 2px solid var(--green); box-shadow: 0 14px 36px rgba(37,79,26,.14); }
.badge {
  position: absolute; top: -12px; left: 20px; background: var(--gold); color: var(--ink);
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.badge.alt { background: var(--green); color: #fff; }
.price-card h4 { font-size: 17px; margin-bottom: 6px; color: var(--ink); font-family: 'Archivo', sans-serif; }
.price { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 30px; margin-bottom: 2px; color: var(--green); }
.price small { font-size: 14px; font-weight: 600; }
.price-sub { font-size: 13px; color: #8a8f82; margin-bottom: 18px; }
.price-card ul { list-style: none; margin-bottom: 22px; flex-grow: 1; }
.price-card li { font-size: 13.5px; padding: 6px 0 6px 20px; position: relative; color: #3f4738; }
.price-card li:before { content: "•"; position: absolute; left: 0; color: var(--green); }
.price-card .btn { margin-top: auto; }
.price-fine { text-align: center; color: var(--muted); font-size: 14px; margin-top: 28px; max-width: 620px; margin-left: auto; margin-right: auto; }
.price-fine strong { color: var(--green); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- Cross-link teaser ---------- */

.crosslink { background: var(--cream-2); color: var(--ink); }
.crosslink .crosslink-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 60%);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 42px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.crosslink .crosslink-grid::before {
  content: ""; position: absolute; top: -70px; right: -70px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,215,0,.24), transparent 70%);
  pointer-events: none;
}
.crosslink .crosslink-grid > div, .crosslink .crosslink-grid img { position: relative; z-index: 1; }
.crosslink h2 { font-size: 28px; margin-bottom: 14px; color: #fff; }
.crosslink .eyebrow { color: var(--gold); }
.crosslink ul { list-style: none; margin: 22px 0; }
.crosslink li { padding: 9px 0 9px 34px; position: relative; font-size: 15.5px; color: #e8efe4; }
.crosslink li::before {
  content: "\2713"; position: absolute; left: 0; top: 7px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,215,0,.18); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.crosslink img { border-radius: 12px; box-shadow: 0 18px 42px rgba(0,0,0,.32); }
.crosslink .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 800px) { .crosslink .crosslink-grid { grid-template-columns: 1fr; padding: 26px; } }

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center; color: #fff;
  background:
    radial-gradient(ellipse at bottom, rgba(255,215,0,.14) 0%, rgba(37,79,26,0) 60%),
    linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
}
.final-cta .eyebrow { color: var(--gold); }
.final-cta h2 { font-size: 38px; max-width: 640px; margin: 0 auto 16px; color: #fff; }
.final-cta p { color: #dfe6da; max-width: 560px; margin: 0 auto 34px; font-size: 17px; }
.final-cta .hl-free { color: var(--gold); }
.final-cta .btn-primary {
  background: var(--gold); color: var(--ink);
  font-size: 16px; padding: 16px 34px;
  box-shadow: 0 12px 34px rgba(255,215,0,.3);
}
.final-cta .btn-primary:hover { background: var(--gold-dark); }
.urgency { font-size: 14px; color: var(--gold); font-weight: 600; margin-top: 20px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--green-dark); border-top: 1px solid var(--green); color: rgba(255,255,255,.7); padding: 36px 0; font-size: 13.5px; }
.site-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 28px; height: 28px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--gold); }
.site-footer .also { width: 100%; border-top: 1px solid rgba(255,255,255,.15); padding-top: 16px; margin-top: 4px; font-size: 13px; }

/* ---------- Float buttons ---------- */

.float-stack {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
  transition: transform .15s ease, filter .15s ease;
}
.float-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.float-btn svg { width: 30px; height: 30px; fill: #fff; }
.float-messenger { background: #0084ff; }
.float-wa { background: #25d366; }
@media (max-width: 520px) {
  .float-stack { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 43px; height: 43px; }
  .float-btn svg { width: 24px; height: 24px; }
}

/* ============ UI polish ============ */

section[id] { scroll-margin-top: 80px; }

.site-header { transition: box-shadow .2s ease, background .2s ease; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(37,79,26,.12); background: rgba(255,246,230,.96); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================= v3: cutout hero, programmes, gallery ================= */

/* Hero — framed photo, enriched copy column */
.hero { padding: 54px 0 62px; }
.hero-grid { align-items: center; }
.hero p.sub em { font-style: italic; color: var(--green); font-weight: 600; }

/* quick highlights strip under the CTAs */
.hero-highlights {
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line);
}
.hl { display: flex; flex-direction: column; gap: 3px; }
.hl-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 26px; line-height: 1; color: var(--green); }
.hl-txt { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; max-width: 130px; line-height: 1.35; }

/* framed photo + decorative shapes + floating badge */
.hero-media { position: relative; }
.hero-photo {
  position: relative; z-index: 1; border-radius: 16px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(37,79,26,.22); border: 1px solid var(--line-2);
}
.hero-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%; }
.hero-media::after {
  content: ""; position: absolute; right: -20px; top: -20px; width: 128px; height: 128px;
  background: var(--gold); border-radius: 16px; z-index: 0;
}
.hero-media::before {
  content: ""; position: absolute; left: -26px; bottom: 34px; width: 96px; height: 96px;
  background: var(--pink); border-radius: 50%; z-index: 0;
}
.hero-badge {
  position: absolute; left: -20px; bottom: 26px; z-index: 2;
  display: flex; align-items: center; gap: 12px; max-width: 250px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 14px;
  padding: 12px 16px; box-shadow: 0 16px 34px rgba(37,79,26,.18);
}
.hb-mark {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
}
.hb-mark svg { width: 20px; height: 20px; fill: var(--gold); }
.hb-copy strong { display: block; font-family: 'Archivo', sans-serif; font-size: 14px; color: var(--ink); line-height: 1.2; }
.hb-copy small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

@media (max-width: 860px) {
  .hero-media { max-width: 420px; margin: 0 auto; }
  .hero-highlights { gap: 22px; }
}
@media (max-width: 520px) {
  .hero-badge { left: 8px; bottom: 8px; padding: 10px 12px; }
  .hero-media::before { left: -10px; }
}

/* Programme cards (text, no price) */
.price-card .prog-copy {
  color: #3f4738; font-size: 14px; line-height: 1.6; margin-bottom: 22px; flex-grow: 1;
}
.price-card.featured .prog-copy { color: #33402a; }

/* Gallery */
.gallery { background: var(--cream-2); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px; gap: 16px;
}
.gallery-grid figure {
  margin: 0; overflow: hidden; border-radius: 12px; border: 1px solid var(--line-2);
  box-shadow: 0 8px 24px rgba(37,79,26,.08); background: #fff;
}
.gallery-grid figure.g-tall { grid-row: span 2; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-grid figure.g-tall { grid-row: span 2; }
}

/* ================= v6: experience cards, who icons, footer ================= */

/* Experience — card grid on the deep-green band */
.experience { padding: 68px 0; }
.exp-head { text-align: center; margin-bottom: 44px; }
.exp-eyebrow {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.exp-title { color: #fff; font-size: 30px; max-width: 620px; margin: 0 auto; line-height: 1.15; }
.stat-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 100%; }
.stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,215,0,.2);
  border-radius: 16px; padding: 30px 20px 26px; text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.stat:hover { transform: translateY(-5px); border-color: rgba(255,215,0,.55); background: rgba(255,255,255,.08); }
.stat + .stat::before { display: none; }
.stat-ico { margin: 0 auto 16px; width: 54px; height: 54px; }
.stat-num { font-size: 30px; line-height: 1.05; }
.stat-label { max-width: 160px; margin: 0 auto; }
@media (max-width: 760px) {
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .exp-title { font-size: 24px; }
}

/* Who this is for — icon cards */
.who { padding-top: 76px; }
.who-card {
  border-top: none; padding: 30px 26px; text-align: left;
  border: 1px solid var(--line-2); border-radius: 16px; background: #fff;
  position: relative; overflow: hidden;
}
.who-card::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.who-card:hover::after { transform: scaleX(1); }
.who-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 18px;
  background: linear-gradient(160deg, var(--green), var(--green-dark));
}
.who-ico svg { width: 27px; height: 27px; fill: var(--gold); }
.who-card h4 { font-size: 18px; margin-bottom: 10px; }

/* Footer — full layout */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.72); padding: 0; font-size: 14px; }
.site-footer .container { display: block; }
.footer-top {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 44px;
  padding: 52px 0 40px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { width: 40px; height: 40px; }
.footer-logo span { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.footer-brand-block p { max-width: 380px; line-height: 1.6; margin-bottom: 22px; color: rgba(255,255,255,.75); }
.footer-cta { background: var(--gold); color: var(--ink); padding: 13px 26px; font-size: 15px; }
.footer-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.footer-col h5 {
  font-family: 'Archivo', sans-serif; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 700;
}
.footer-col a { display: block; color: rgba(255,255,255,.8); padding: 6px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.6);
}
.footer-tag { font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--gold); letter-spacing: .02em; }
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================= v7: animations, programmes, included, contact, menu ================= */

/* --- Menu polish --- */
.site-nav { gap: 26px; }
.site-nav > a {
  position: relative; font-size: 14.5px; font-weight: 600; color: var(--ink);
  opacity: .82; padding: 4px 1px;
}
.site-nav > a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav > a:hover { opacity: 1; color: var(--green); }
.site-nav > a:hover::after { transform: scaleX(1); }
.nav-cta { border-radius: 30px; box-shadow: 0 8px 20px rgba(37,79,26,.18); }

/* --- Directional reveals --- */
.about-figure.reveal { transform: translateX(-30px); }
.about-copy.reveal { transform: translateX(30px); }
.about-figure.reveal.is-visible, .about-copy.reveal.is-visible { transform: none; }

/* --- Hero: entrance + floating shapes + image zoom --- */
.hero-photo img { transition: transform .6s ease; }
.hero-photo:hover img { transform: scale(1.045); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
  @keyframes heroIn { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: none; } }
  @keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  @keyframes floatSq { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(4deg); } }
  @keyframes floatCirc { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
  .hero-copy > * { animation: heroUp .7s cubic-bezier(.2,.7,.2,1) both; }
  .hero-copy > *:nth-child(1) { animation-delay: .05s; }
  .hero-copy > *:nth-child(2) { animation-delay: .13s; }
  .hero-copy > *:nth-child(3) { animation-delay: .21s; }
  .hero-copy > *:nth-child(4) { animation-delay: .29s; }
  .hero-copy > *:nth-child(5) { animation-delay: .37s; }
  .hero-media { animation: heroIn .8s cubic-bezier(.2,.7,.2,1) both; animation-delay: .18s; }
  .hero-media::after { animation: floatSq 6s ease-in-out infinite; }
  .hero-media::before { animation: floatCirc 7s ease-in-out infinite; }
  .hero-badge { animation: bob 3.6s ease-in-out infinite; }
}

/* --- Experience: icon interaction --- */
.stat-ico { transition: transform .25s ease, background .25s ease; }
.stat:hover .stat-ico { transform: translateY(-3px) scale(1.08); background: rgba(255,215,0,.28); }
.stat-ico svg { fill: var(--gold); }

/* --- About image zoom + ring float --- */
.about-figure { overflow: visible; }
.about-figure img { transition: transform .5s ease; }
.about-figure:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: no-preference) {
  .about-figure::before { animation: floatSq 7s ease-in-out infinite; }
}

/* --- How it works: crop the tall photo into a banner --- */
.how-photo img { aspect-ratio: 16 / 9; object-fit: cover; object-position: 50% 40%; }

/* --- What you get (dark band, icon cards) --- */
.included .section-head p { color: rgba(255,255,255,.8); }
.included .section-head .eyebrow { color: var(--gold); }
.inc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.inc-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,215,0,.18);
  border-radius: 16px; padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.inc-item:hover { transform: translateY(-5px); border-color: rgba(255,215,0,.5); background: rgba(255,255,255,.09); }
.inc-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 13px; margin-bottom: 16px;
  background: rgba(255,215,0,.14); border: 1px solid rgba(255,215,0,.3);
  transition: transform .25s ease;
}
.inc-item:hover .inc-ico { transform: scale(1.08) rotate(-4deg); }
.inc-ico svg { width: 26px; height: 26px; fill: var(--gold); }
.inc-item h4 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.inc-item p { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.55; }
.inc-item.inc-feature { background: rgba(255,215,0,.12); border-color: rgba(255,215,0,.5); }
@media (max-width: 820px) { .inc-grid { grid-template-columns: 1fr; } }

/* --- Programmes: online-coaching plan cards --- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: 18px;
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(37,79,26,.14); }
.plan-card.featured { border: 2px solid var(--green); box-shadow: 0 18px 44px rgba(37,79,26,.16); }
.plan-badge {
  position: absolute; top: -12px; left: 28px; background: var(--gold); color: var(--ink);
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.plan-tag {
  display: inline-block; background: var(--green-soft); color: var(--green);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11.5px;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
}
.plan-card.featured .plan-tag { background: rgba(255,215,0,.22); color: var(--green-dark); }
.plan-top { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line-2); }
.plan-top h3 { font-size: 22px; margin-bottom: 6px; }
.plan-meta { color: var(--muted); font-size: 13.5px; }
.plan-copy { color: #3f4738; font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.plan-feats { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; flex-grow: 1; }
.plan-feats li { position: relative; padding-left: 28px; font-size: 14px; color: #3a4232; line-height: 1.4; }
.plan-feats li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px;
  border-radius: 50%; background: var(--green); color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.plan-card.featured .plan-feats li::before { background: var(--gold); color: var(--ink); }
.plan-btn { margin-top: auto; width: 100%; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* --- Contact --- */
.contact { background: linear-gradient(165deg, var(--pink-soft) 0%, var(--cream) 60%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-intro h2 { font-size: 30px; margin: 8px 0 14px; }
.contact-intro > p { color: var(--muted); max-width: 420px; margin-bottom: 24px; font-size: 16px; }
.contact-list { list-style: none; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--green); }
.ci-ico {
  width: 40px; height: 40px; border-radius: 11px; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-ico svg { width: 21px; height: 21px; fill: var(--gold); }
.contact-form {
  background: #fff; border: 1px solid var(--line-2); border-radius: 18px; padding: 30px;
  box-shadow: 0 18px 44px rgba(37,79,26,.10); display: grid; gap: 16px;
}
.contact-form .field { display: grid; gap: 7px; }
.contact-form label {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid var(--line-2); border-radius: 10px; padding: 13px 14px;
  font-family: 'Inter', sans-serif; font-size: 15px; background: var(--cream-2); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(37,79,26,.12); background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.cf-submit { width: 100%; margin-top: 4px; }
.cf-note { text-align: center; font-size: 12.5px; color: var(--muted); margin: 0; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* fix: What-you-get heading is on the dark green band */
.included .section-head h2 { color: #fff; }

/* new KL logo (wide) — keep aspect ratio */
.brand img { width: auto; height: 34px; }
.footer-logo img { width: auto; height: 38px; }

/* footer logo sits on dark green — give it a cream chip so the green mark reads */
.footer-logo img { background: var(--cream); border-radius: 9px; padding: 5px 8px; height: 44px; }

/* footer: use the light logo directly on the dark band (no chip), fix button text colour */
.footer-logo img { background: none; padding: 0; border-radius: 0; height: 42px; width: auto; }
.site-footer .footer-cta { color: var(--ink); }
.site-footer .footer-cta:hover { color: var(--ink); }

/* ================= Booking demo modal ================= */
.bk-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(20,32,14,.55); backdrop-filter: blur(3px);
  padding: 24px; overflow-y: auto;
}
.bk-overlay.is-open { display: flex; align-items: flex-start; justify-content: center; }
.bk-dialog {
  background: #fff; border-radius: 18px; width: 100%; max-width: 460px;
  margin: auto; position: relative; padding: 26px;
  box-shadow: 0 30px 80px rgba(20,32,14,.4); animation: bkIn .25s ease both;
}
#bkStep2.bk-step:not([hidden]) ~ *, .bk-dialog:has(#bkStep2:not([hidden])) { }
.bk-dialog:has(#bkStep2:not([hidden])) { max-width: 900px; }
@keyframes bkIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.bk-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--cream-2); color: var(--ink); font-size: 22px; cursor: pointer; line-height: 1;
  transition: background .15s ease;
}
.bk-close:hover { background: var(--line); }

/* step 1 head */
.bk-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-right: 30px; }
.bk-avatar { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; object-position: 50% 20%; }
.bk-head h3 { font-size: 19px; }
.bk-head p { color: var(--muted); font-size: 13.5px; margin-top: 2px; }

.bk-durtoggle { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--cream-2); border: 1px solid var(--line-2); border-radius: 10px; padding: 4px; margin-bottom: 18px; }
.bk-dur { border: none; background: none; padding: 10px; border-radius: 7px; font-weight: 700; font-family: 'Archivo',sans-serif; font-size: 14px; color: var(--muted); cursor: pointer; }
.bk-dur.is-active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(20,32,14,.1); }

.bk-week { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bk-wk { width: 40px; height: 40px; border: 1px solid var(--line-2); background: #fff; border-radius: 10px; cursor: pointer; font-size: 16px; color: var(--ink); transition: background .15s; }
.bk-wk:hover { background: var(--cream-2); }
.bk-wkrange { font-family: 'Archivo',sans-serif; font-weight: 700; font-size: 15px; }
.bk-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; padding-bottom: 16px; border-bottom: 1px solid var(--line-2); }
.bk-day { border: none; background: none; cursor: pointer; padding: 6px 0; border-radius: 10px; text-align: center; transition: background .15s; }
.bk-day .bk-dn { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px; }
.bk-day .bk-dd { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; font-weight: 700; font-family: 'Archivo',sans-serif; font-size: 15px; }
.bk-day:hover .bk-dd { background: var(--cream-2); }
.bk-day.is-active .bk-dd { background: var(--green); color: #fff; }
.bk-day.is-active .bk-dn { color: var(--green); }

.bk-tz { color: var(--muted); font-size: 13px; margin: 16px 0 12px; }
.bk-slotwrap { min-height: 40px; }
.bk-slotgroup { margin-bottom: 14px; }
.bk-slotgroup h4 { display: flex; align-items: center; gap: 7px; font-family: 'Archivo',sans-serif; font-size: 14px; margin-bottom: 10px; color: var(--ink); }
.bk-slotgroup h4 svg { width: 17px; height: 17px; fill: var(--gold-dark); }
.bk-slotgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.bk-slot { border: 1px solid var(--line-2); background: #fff; border-radius: 9px; padding: 11px 0; font-weight: 600; font-size: 14px; color: var(--ink); cursor: pointer; transition: border-color .15s, background .15s; }
.bk-slot:hover { border-color: var(--green); }
.bk-slot.is-active { border-color: var(--green); background: var(--green); color: #fff; }
.bk-empty { color: var(--muted); font-size: 14px; padding: 8px 0; }

.bk-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.bk-cancel { font-size: 13px; color: var(--green); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.bk-cancel svg { width: 16px; height: 16px; fill: var(--green); flex-shrink: 0; }
.bk-continue { width: 100%; }
.bk-continue:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* step 2 checkout */
.bk-back { border: none; background: none; color: var(--muted); font-weight: 600; font-size: 14px; cursor: pointer; margin-bottom: 8px; padding: 0; }
.bk-back:hover { color: var(--green); }
.bk-co-title { font-size: 24px; margin-bottom: 20px; }
.bk-co-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; align-items: start; }
.bk-card { border: 1px solid var(--line-2); border-radius: 14px; padding: 20px; margin-bottom: 16px; background: #fff; }
.bk-co-left .bk-card:last-child, .bk-co-right .bk-card { margin-bottom: 0; }
.bk-card-label { font-family: 'Archivo',sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.bk-coach { display: flex; align-items: center; gap: 12px; }
.bk-coach img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.bk-coach strong { display: block; font-size: 17px; }
.bk-stars { color: var(--gold-dark); font-size: 13px; }
.bk-stars small { color: var(--muted); }
.bk-detail { display: flex; align-items: center; gap: 12px; }
.bk-datechip { background: var(--cream-2); border: 1px solid var(--line-2); border-radius: 8px; padding: 8px 10px; font-family: 'Archivo',sans-serif; font-weight: 800; font-size: 13px; color: var(--green); text-align: center; line-height: 1.15; }
.bk-detail strong { display: block; font-size: 15px; }
.bk-detail small { color: var(--muted); font-size: 12.5px; }
.bk-freebar { margin-top: 14px; background: #e7f3ec; color: #1f6b3f; border-radius: 8px; padding: 10px 12px; font-size: 12.5px; display: flex; align-items: center; gap: 7px; }
.bk-freebar svg { width: 15px; height: 15px; fill: #1f6b3f; flex-shrink: 0; }
.bk-line { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; color: #3a4232; }
.bk-line.bk-total { border-top: 1px solid var(--line-2); margin-top: 6px; padding-top: 12px; font-family: 'Archivo',sans-serif; font-weight: 800; font-size: 17px; color: var(--ink); }
.bk-promo { border: none; background: none; color: var(--green); font-weight: 600; font-size: 13.5px; text-decoration: underline; cursor: pointer; padding: 8px 0 0; }
.bk-pays { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.bk-pay { border: 1px solid var(--line-2); background: #fff; border-radius: 9px; padding: 12px 4px; font-weight: 700; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; color: var(--ink); transition: border-color .15s; }
.bk-pay svg { width: 17px; height: 17px; fill: currentColor; }
.bk-pay.is-active { border-color: var(--green); box-shadow: 0 0 0 1px var(--green) inset; }
.bk-input { width: 100%; border: 1px solid var(--line-2); border-radius: 9px; padding: 13px 14px; font-family: 'Inter',sans-serif; font-size: 15px; background: var(--cream-2); margin-bottom: 10px; }
.bk-input:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(37,79,26,.12); }
.bk-cardrow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bk-check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #3a4232; margin: 4px 0 16px; cursor: pointer; }
.bk-wallet { background: var(--cream-2); border: 1px dashed var(--line-2); border-radius: 9px; padding: 18px; text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.bk-paybtn { width: 100%; }
.bk-policy { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.bk-ssl { font-size: 11.5px; color: #9aa08f; margin-top: 8px; }

/* success */
.bk-success { text-align: center; padding: 20px 10px; }
.bk-tick { width: 64px; height: 64px; border-radius: 50%; background: #e7f3ec; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.bk-tick svg { width: 32px; height: 32px; fill: #1f6b3f; }
.bk-success h3 { font-size: 24px; margin-bottom: 10px; }
.bk-success p { color: var(--muted); margin-bottom: 22px; max-width: 340px; margin-left: auto; margin-right: auto; }

@media (max-width: 680px) {
  .bk-co-grid { grid-template-columns: 1fr; }
  .bk-dialog:has(#bkStep2:not([hidden])) { max-width: 460px; }
  .bk-overlay { padding: 12px; }
}

/* ================= Sub-page hero + CTA band ================= */
.page-hero {
  text-align: center;
  background:
    radial-gradient(ellipse at top right, rgba(226,183,185,.45) 0%, rgba(255,246,230,0) 55%),
    radial-gradient(ellipse at bottom left, rgba(255,215,0,.16) 0%, rgba(255,246,230,0) 55%),
    var(--cream);
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { color: var(--green); }
.page-hero h1 { font-size: 44px; font-weight: 900; line-height: 1.05; margin-bottom: 14px; }
.page-hero h1 span { color: var(--green); }
.page-hero p { color: #4a5142; font-size: 18px; max-width: 560px; margin: 0 auto; }
@media (max-width: 640px) { .page-hero h1 { font-size: 32px; } }

.cta-band {
  text-align: center; color: #fff;
  background:
    radial-gradient(ellipse at bottom, rgba(255,215,0,.14) 0%, rgba(37,79,26,0) 60%),
    linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
}
.cta-band h2 { color: #fff; font-size: 32px; margin-bottom: 12px; }
.cta-band p { color: #dfe6da; font-size: 17px; margin-bottom: 26px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band-btn { background: var(--gold); color: var(--ink); }
.cta-band-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* booking step 0 — plan picker */
.bk-plans { display: grid; gap: 10px; margin-top: 4px; }
.bk-plan { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; width: 100%; border: 1px solid var(--line-2); background: #fff; border-radius: 12px; padding: 16px; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.bk-plan:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,79,26,.1); }
.bk-plan.is-pop { border-color: var(--green); box-shadow: 0 0 0 1px var(--green) inset; }
.bk-plan-main { display: flex; flex-direction: column; gap: 3px; }
.bk-plan-tag { font-family: 'Archivo',sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--green); }
.bk-plan-main strong { font-size: 16px; font-family: 'Archivo',sans-serif; }
.bk-plan-main small { color: var(--muted); font-size: 12.5px; }
.bk-plan-side { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.bk-plan-side b { font-family: 'Archivo',sans-serif; font-size: 16px; color: var(--ink); }
.bk-plan-arrow { color: var(--green); font-size: 18px; }
