/* ===================================================================
   Body Healing Studio — Website
   White & sage editorial redesign
   =================================================================== */
* { box-sizing: border-box; }
body { margin: 0; }

.bhs-site { background: var(--bhs-page); color: var(--bhs-ink); font-family: var(--font-body); min-height: 100vh; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ── Top Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 30;
  --np: 0;
  background: rgba(73, 102, 64, calc(0.10 + var(--np) * 0.70));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255, 255, 255, calc(0.22 - var(--np) * 0.10));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,calc(0.28 - var(--np) * 0.10)),
    0 4px 32px rgba(27,40,22,calc(var(--np) * 0.18));
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: var(--bhs-ink); letter-spacing: -0.005em; cursor: pointer;
  display: flex; align-items: center; gap: 10px; line-height: 1;
}
.nav-brand-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.nav--scrolled .nav-brand-logo {
  height: 44px;
}
.nav--scrolled .nav-links a { color: rgba(255,255,255,0.80); }
.nav--scrolled .nav-links a:hover,
.nav--scrolled .nav-links a.active { color: #fff; }
.nav--scrolled .lang { border-color: rgba(255,255,255,0.28); }
.nav--scrolled .lang button { color: rgba(255,255,255,0.65); }
.nav--scrolled .lang button.active { background: rgba(255,255,255,0.18); color: #fff; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--bhs-ink-soft); cursor: pointer;
  border: 0; background: none; padding: 0; text-decoration: none;
  letter-spacing: 0.01em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bhs-ink); }
.nav-links a.active { color: var(--bhs-green); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* nav over hero — white text */
.nav--at-top .nav-links a { color: rgba(255,255,255,0.82); }
.nav--at-top .nav-links a:hover,
.nav--at-top .nav-links a.active { color: #fff; }
.nav--at-top .lang { border-color: rgba(255,255,255,0.32); }
.nav--at-top .lang button { color: rgba(255,255,255,0.68); }
.nav--at-top .lang button.active { background: rgba(255,255,255,0.18); color: #fff; }
.nav--at-top .btn-dark { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.45); color: #fff; }
.nav--at-top .btn-dark:hover { background: rgba(255,255,255,0.26); }

/* ── Language switch ─────────────────────────────────────────────── */
.lang { display: inline-flex; border: 1px solid rgba(73,102,64,0.2); border-radius: 999px; padding: 3px; }
.lang button {
  font-family: inherit; font-size: 10px; font-weight: 600; letter-spacing: .14em;
  padding: 6px 12px; border: 0; background: transparent; border-radius: 999px;
  color: var(--bhs-ink-mute); cursor: pointer; transition: all .2s;
}
.lang button.active { background: var(--bhs-green); color: #fff; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  font-family: inherit; font-size: 13px; font-weight: 500; letter-spacing: .04em;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .22s var(--ease-out); line-height: 1;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary   { background: var(--bhs-green); color: #fff; border-color: var(--bhs-green); }
.btn-primary:hover { background: var(--bhs-forest); border-color: var(--bhs-forest); }
.btn-outline   { background: transparent; color: var(--bhs-green); border-color: var(--bhs-green); }
.btn-outline:hover { background: var(--bhs-green); color: #fff; }
.btn-dark      { background: var(--bhs-forest); color: #fff; border-color: var(--bhs-forest); }
.btn-dark:hover{ background: #1a2717; border-color: #1a2717; }
.btn-white     { background: #fff; color: var(--bhs-forest); border-color: #fff; }
.btn-white:hover { background: var(--bhs-bone); }
.btn-sm        { padding: 9px 18px; font-size: 11px; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  background: url('/assets/photos/hero-moon.jpg') center/cover no-repeat;
  position: relative; margin-top: -72px; padding: 202px 0 110px; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,14,7,0.42) 0%, rgba(8,14,7,0.18) 100%);
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: center;
  position: relative; z-index: 1;
}
.hero-left { max-width: 700px; }
.hero-eb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-bottom: 22px;
}
.hero-eb::before {
  content: ""; width: 22px; height: 2px; background: rgba(255,255,255,0.72); border-radius: 999px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(56px, 7vw, 96px);
  font-weight: 400; line-height: 0.96; letter-spacing: -0.022em;
  color: #fff; margin: 0 0 24px;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.70); line-height: 1.65;
  max-width: 460px; margin: 0 0 38px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero .btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); color: #fff; }
.hero-proof { display: flex; align-items: center; gap: 14px; }
.av-stack { display: flex; }
.av-stack .av {
  width: 36px; height: 36px; border-radius: 999px; background: var(--bhs-green-pale);
  border: 2.5px solid rgba(255,255,255,0.22); overflow: hidden; margin-left: -9px;
}
.av-stack .av:first-child { margin-left: 0; }
.av-stack .av img { width: 100%; height: 100%; object-fit: cover; }
.hero-proof p { font-size: 13px; color: rgba(255,255,255,0.62); margin: 0; line-height: 1.4; }
.hero-proof strong { color: rgba(255,255,255,0.90); }
.hero-right { display: none; }
.hero-img-wrap {
  border-radius: 28px; overflow: hidden;
  background: var(--bhs-green-pale); aspect-ratio: 3/4;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-badge { display: none; }

/* ── Stats bar ───────────────────────────────────────────────────── */
.stats-bar {
  background: url('/assets/photos/space.jpg') center/cover no-repeat;
  position: relative; border-bottom: none; padding: 72px 0;
}
.stats-bar::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,40,22,0.78) 0%, rgba(27,40,22,0.55) 100%);
}
.stats-bar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative; z-index: 1;
}
.stat-item {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 8px 24px rgba(0,0,0,0.18);
  text-align: center; padding: 32px 24px;
  transition: background 0.2s;
}
.stat-item:hover { background: rgba(255,255,255,0.14); }
.stat-item:last-child { border-right: none; }
.stat-item .n {
  font-family: var(--font-display); font-size: 52px; color: #fff;
  line-height: 1; letter-spacing: -0.025em;
}
.stat-item .l {
  font-size: 11px; color: rgba(255,255,255,0.58); letter-spacing: .1em;
  text-transform: uppercase; margin-top: 8px; font-weight: 500;
}

/* ── Marquee ─────────────────────────────────────────────────────── */
.marquee { padding: 24px 0; overflow: hidden; background: var(--bhs-bone); }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: slide 48s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; padding: 0 28px;
  font-size: 13px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--bhs-ink-soft);
}
.marquee-item::after { content: "•"; color: var(--bhs-sage-pale); margin-left: 28px; font-size: 7px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section shared ──────────────────────────────────────────────── */
.section-head { margin-bottom: 48px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.section-eb {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--bhs-green); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 46px); font-weight: 400;
  color: var(--bhs-ink); line-height: 1.1; letter-spacing: -0.015em; margin: 0;
}
.section-sub { font-size: 15px; color: var(--bhs-ink-soft); line-height: 1.65; max-width: 460px; margin: 14px 0 0; }

/* ── Benefits section ────────────────────────────────────────────── */
.benefits-section { background: #fff; padding: 96px 0; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.benefits-photos {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; gap: 12px;
}
.benefits-photos .ph { border-radius: 14px; overflow: hidden; background: var(--bhs-pebble); }
.benefits-photos .ph img { width: 100%; height: 100%; object-fit: cover; }
.benefits-photos .ph-tall { grid-row: span 2; }
.benefit-list { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 11px;
  background: var(--bhs-green-pale); display: flex; align-items: center;
  justify-content: center; color: var(--bhs-green);
}
.benefit-item h4 { font-size: 14px; font-weight: 600; color: var(--bhs-ink); margin: 0 0 3px; letter-spacing: 0; }
.benefit-item p { font-size: 13px; color: var(--bhs-ink-soft); line-height: 1.55; margin: 0; }

/* ── Classes section ─────────────────────────────────────────────── */
.classes-section { background: var(--bhs-page); padding: 96px 0; }
.class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.class-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  transition: transform .28s var(--ease-out), box-shadow .28s;
  box-shadow: 0 2px 12px rgba(43,61,39,0.06);
}
.class-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(43,61,39,0.12); }
.class-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bhs-green-pale); }
.class-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-out); }
.class-card:hover .class-card-img img { transform: scale(1.04); }
.class-card-body { padding: 26px 28px 28px; }
.class-card-eb { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--bhs-green); margin-bottom: 8px; }
.class-card-body h3 {
  font-family: var(--font-display); font-size: 24px; color: var(--bhs-ink);
  margin: 0 0 10px; font-weight: 400; letter-spacing: -0.005em;
}
.class-card-body p { font-size: 13px; color: var(--bhs-ink-soft); line-height: 1.6; margin: 0 0 20px; }
.class-card-link {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bhs-green); background: var(--bhs-green-pale); border: none;
  padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all .2s;
}
.class-card-link:hover { background: var(--bhs-green); color: #fff; }

/* ── Features highlight ──────────────────────────────────────────── */
.features-hl { background: #fff; padding: 96px 0; }
.features-hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-logo-icon {
  width: 48px; height: 48px; background: var(--bhs-green-pale);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  color: var(--bhs-green); margin-bottom: 24px;
}
.feature-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.feature-tile { background: var(--bhs-page); border-radius: 14px; padding: 20px 22px; }
.feature-tile-icon {
  width: 38px; height: 38px; background: var(--bhs-green-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--bhs-green); margin-bottom: 11px;
}
.feature-tile h4 { font-size: 14px; font-weight: 600; color: var(--bhs-ink); margin: 0 0 5px; letter-spacing: 0; }
.feature-tile p { font-size: 12px; color: var(--bhs-ink-mute); line-height: 1.5; margin: 0; }
.features-hl-right { position: relative; }
.features-hl-img { border-radius: 24px; overflow: hidden; background: var(--bhs-green-pale); aspect-ratio: 4/5; }
.features-hl-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Team section ────────────────────────────────────────────────── */
.team-section { background: #fff; padding: 96px 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 360px)); justify-content: center; gap: 32px; }
.team-card { text-align: center; }
.team-card-img { aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; background: var(--bhs-green-pale); margin-bottom: 18px; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--bhs-ink); margin: 0 0 4px; font-weight: 400; letter-spacing: -0.005em; }
.team-card .role { font-size: 11px; font-weight: 600; color: var(--bhs-green); letter-spacing: .12em; text-transform: uppercase; }
.team-card .bio { font-size: 13px; color: var(--bhs-ink-soft); margin: 10px 0 0; line-height: 1.55; }

/* ── Testimonials ────────────────────────────────────────────────── */
.testi-section { background: var(--bhs-page); padding: 96px 0; }
.testi-layout { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 12px; }
.testi-stars span { color: var(--bhs-terracotta); font-size: 20px; }
.testi-score {
  font-family: var(--font-display); font-size: 68px; color: var(--bhs-ink);
  line-height: 1; letter-spacing: -0.03em; margin-bottom: 4px;
}
.testi-count { font-size: 13px; color: var(--bhs-ink-mute); margin: 0 0 28px; }
.testi-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.testi-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(43,61,39,0.06); }
.testi-card .stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testi-card .stars span { color: var(--bhs-terracotta); font-size: 12px; }
.testi-card .q { font-size: 13px; color: var(--bhs-ink-soft); line-height: 1.65; margin: 0 0 14px; font-style: italic; }
.testi-card .att { display: flex; align-items: center; gap: 10px; }
.testi-card .att-av { width: 32px; height: 32px; border-radius: 999px; background: var(--bhs-green-pale); overflow: hidden; flex-shrink: 0; }
.testi-card .att-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-card .att-name { font-size: 12px; font-weight: 600; color: var(--bhs-ink); }
.testi-card .att-loc { font-size: 11px; color: var(--bhs-ink-mute); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-section { background: #fff; padding: 96px 0; }
.accordion { max-width: 800px; }
.acc-item { border-bottom: 1px solid rgba(73,102,64,0.12); }
.acc-item:last-child { border-bottom: 0; }
.acc-btn {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; font-family: var(--font-display); font-size: 19px;
  color: var(--bhs-ink); font-weight: 400; letter-spacing: -0.005em;
}
.acc-btn .caret {
  width: 28px; height: 28px; min-width: 28px; border-radius: 999px;
  background: var(--bhs-green-pale); display: inline-flex; align-items: center;
  justify-content: center; color: var(--bhs-green); font-size: 14px;
  transition: transform .25s, background .2s; flex-shrink: 0;
}
.acc-item.open .acc-btn .caret { transform: rotate(45deg); background: var(--bhs-green); color: #fff; }
.acc-body { padding: 0 0 22px; font-size: 14px; line-height: 1.7; color: var(--bhs-ink-soft); display: none; }
.acc-item.open .acc-body { display: block; }

/* ── Package cards ───────────────────────────────────────────────── */
.packages-section { background: var(--bhs-page); padding: 96px 0; }
.pkg-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.pkg {
  background: #fff; border-radius: 18px; padding: 32px 26px; color: var(--bhs-ink);
  display: flex; flex-direction: column; gap: 10px;
  flex: 1 1 260px;
  max-width: 290px;
  min-height: 360px;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  box-shadow: 0 2px 12px rgba(43,61,39,0.06);
}
.pkg:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(43,61,39,0.12); }
.pkg .eb { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--bhs-green); }
.pkg .title { font-family: var(--font-display); font-size: 28px; letter-spacing: -0.01em; line-height: 1.1; font-weight: 400; }
.pkg .price { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--bhs-green); }
.pkg .rule { border: 0; border-top: 1px solid rgba(73,102,64,0.12); margin: 4px 0; }
.pkg .desc { font-size: 13px; color: var(--bhs-ink-soft); line-height: 1.6; }
.pkg .pkg-cta {
  margin-top: auto; align-self: flex-start; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 10px 20px; border-radius: 999px;
  background: var(--bhs-green-pale); color: var(--bhs-green); cursor: pointer; border: none; transition: all .2s;
}
.pkg .pkg-cta:hover { background: var(--bhs-green); color: #fff; }
.pkg-featured { background: var(--bhs-forest) !important; color: #fff !important; }
.pkg-featured .eb { color: rgba(255,255,255,0.45); }
.pkg-featured .title { color: #fff; }
.pkg-featured .price { color: var(--bhs-terracotta-soft); }
.pkg-featured .desc { color: rgba(255,255,255,0.6); }
.pkg-featured .rule { border-top-color: rgba(255,255,255,0.14); }
.pkg-featured .pkg-cta { background: var(--bhs-terracotta); color: #fff; }
.pkg-featured .pkg-cta:hover { background: var(--bhs-terracotta-deep); }

/* ── Interactive Pricing Categories ────────────────────────────── */
.pricing-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 6px;
  background: rgba(73,102,64,0.06);
  border-radius: 20px;
}
.pricing-cat-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--bhs-ink-soft);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}
.pricing-cat-tab:hover {
  color: var(--bhs-green);
  background: rgba(255,255,255,0.4);
}
.pricing-cat-tab.active {
  background: #fff;
  color: var(--bhs-green);
  border-color: rgba(73,102,64,0.12);
  box-shadow: 0 4px 16px rgba(43,61,39,0.06);
}
.pricing-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--bhs-green-pale);
  color: var(--bhs-green);
  transition: all 0.25s;
}
.pricing-cat-tab.active .pricing-cat-icon {
  background: var(--bhs-green);
  color: #fff;
}
.pricing-cat-name {
  letter-spacing: 0.01em;
}
.pricing-header-info {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  animation: pageFadeIn 0.4s ease;
}
.pricing-cat-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--bhs-ink);
  margin-bottom: 12px;
}
.pricing-cat-desc {
  font-size: 15px;
  color: var(--bhs-ink-soft);
  line-height: 1.6;
  margin: 0 0 16px;
}
.pricing-cat-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--bhs-ink-mute);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-cat-item-tag {
  background: var(--bhs-green-pale);
  color: var(--bhs-green);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.class-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  background: rgba(111,126,98,0.07);
  border-radius: 999px;
  padding: 6px;
}
.class-type-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--bhs-ink-soft);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.class-type-tab:hover { color: var(--bhs-ink); }
.class-type-tab.active {
  background: var(--bhs-green);
  color: #fff;
}
.class-type-tab-icon { display: flex; align-items: center; opacity: 0.75; }
.class-type-tab.active .class-type-tab-icon { opacity: 1; }

/* ── CTA banner ──────────────────────────────────────────────────── */
.cta-banner { background: var(--bhs-forest); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/photos/studio-lounge.jpg') center/cover; opacity: 0.1;
}
.cta-banner-inner { position: relative; max-width: 600px; margin: 0 auto; padding: 0 40px; }
.cta-banner .eb { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 16px; }
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 54px); font-weight: 400;
  color: #fff; line-height: 1.06; letter-spacing: -0.015em; margin: 0 0 28px;
}
.cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── About letter grid ───────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.about-letter { background: #fff; border-radius: 20px; padding: 44px; }
.about-portrait {
  width: 96px; height: 96px; border-radius: 999px; overflow: hidden;
  background: var(--bhs-green-pale); margin-bottom: 22px;
  border: 3px solid var(--bhs-green-pale);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-letter h1 { font-family: var(--font-display); font-size: clamp(36px, 3.8vw, 50px); color: var(--bhs-ink); font-weight: 400; margin: 0; letter-spacing: -0.015em; line-height: 1.05; }
.about-body p { font-family: var(--font-display); font-size: 16px; color: var(--bhs-ink-soft); line-height: 1.7; margin: 0 0 16px; }
.about-body p:first-child { font-style: italic; font-size: 19px; color: var(--bhs-ink); }
.about-img { border-radius: 20px; overflow: hidden; background: var(--bhs-green-pale); aspect-ratio: 3/4; }
.about-letter-title { font-family: var(--font-display); font-size: clamp(36px, 3.8vw, 50px); color: var(--bhs-ink); font-weight: 400; margin: 0; letter-spacing: -0.015em; line-height: 1.05; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Principles ──────────────────────────────────────────────────── */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle { background: #fff; border-radius: 16px; padding: 30px; border-top: 3px solid var(--bhs-green); }
.principle .num { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--bhs-green); }
.principle h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; margin: 10px 0 8px; letter-spacing: -0.01em; color: var(--bhs-ink); }
.principle p { font-size: 13px; color: var(--bhs-ink-soft); line-height: 1.65; margin: 0; }

/* ── Contact page ────────────────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.contact-form-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 40px rgba(43,61,39,0.08); }
.contact-form-card h2 { font-family: var(--font-display); font-size: 30px; color: var(--bhs-ink); font-weight: 400; margin: 0 0 26px; letter-spacing: -0.01em; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card { background: #fff; border-radius: 16px; padding: 24px 28px; border-left: 3px solid var(--bhs-green); box-shadow: 0 2px 12px rgba(43,61,39,0.06); }
.contact-info-card h4 { font-size: 11px; font-weight: 600; color: var(--bhs-green); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 10px; }
.contact-info-card p { font-size: 13px; color: var(--bhs-ink-soft); margin: 0; line-height: 1.75; }

/* ── Field ───────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bhs-ink-mute); font-weight: 600; }
.field input, .field textarea {
  border: 0; border-bottom: 1.5px solid rgba(73,102,64,0.18); background: transparent;
  padding: 10px 0; font-family: inherit; font-size: 15px; color: var(--bhs-ink);
  outline: none; transition: border-color .2s; resize: none;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--bhs-ink-mute); font-style: italic; font-family: var(--font-display); font-size: 16px;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--bhs-green); }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--bhs-forest); padding: 72px 0 36px; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 48px; align-items: start; margin-bottom: 52px; }
.footer-brand { font-family: var(--font-display); font-size: 22px; color: #fff; line-height: 1; cursor: pointer; }
.footer-brand-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-brand-logo:hover {
  opacity: 1;
}
.footer-tagline { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.5); max-width: 250px; margin: 14px 0 22px; }
.footer-sub { display: flex; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 4px; }
.footer-sub input { flex: 1; background: transparent; border: 0; outline: none; padding: 8px 12px; color: #fff; font-family: inherit; font-size: 13px; }
.footer-sub input::placeholder { color: rgba(255,255,255,0.38); font-style: italic; font-family: var(--font-display); }
.footer-sub button { background: #fff; color: var(--bhs-forest); border: 0; border-radius: 999px; padding: 8px 16px; font-family: inherit; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.footer-sub button:hover { background: var(--bhs-bone); }
.footer h5 { font-family: var(--font-body); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin: 0 0 16px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { font-size: 14px; line-height: 2.1; }
.footer li a { color: rgba(255,255,255,0.55); cursor: pointer; border: 0; text-decoration: none; transition: color .2s; }
.footer li a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ── Page transitions ────────────────────────────────────────────── */
.page { animation: pageIn 420ms var(--ease-out); }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── Chips ───────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  font-family: inherit; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; padding: 10px 20px; border-radius: 999px;
  background: transparent; color: var(--bhs-ink); border: 1.5px solid rgba(73,102,64,0.22); cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: var(--bhs-green); color: var(--bhs-green); }
.chip.active { background: var(--bhs-green); color: #fff; border-color: var(--bhs-green); }

/* ── Section padding helpers ─────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* ── Hamburger button (hidden on desktop) ─────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none;
  cursor: pointer; padding: 8px; border-radius: 8px; transition: background .2s;
}
.hamburger:hover { background: var(--bhs-page); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--bhs-ink); border-radius: 2px;
  transition: transform .25s var(--ease-out), opacity .2s;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid rgba(73,102,64,0.1);
  padding: 20px 24px 28px;
}
.mobile-links { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.mobile-links a {
  font-size: 16px; font-weight: 500; color: var(--bhs-ink-soft); cursor: pointer;
  padding: 14px 0; border-bottom: 1px solid rgba(73,102,64,0.08);
  text-decoration: none; transition: color .2s;
}
.mobile-links a:hover, .mobile-links a.active { color: var(--bhs-green); }
.mobile-links a:last-child { border-bottom: 0; }
.mobile-actions { display: flex; align-items: center; gap: 14px; padding-top: 8px; }

/* ── Tablet breakpoint (≤ 1024px) ────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }

  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .stats-bar-inner { padding: 0 28px; }

  .benefits-grid { gap: 48px; }
  .features-hl-grid { gap: 48px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .pkg-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* ── Mobile breakpoint (≤ 768px) ─────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav-inner { padding: 0 20px; height: 64px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .nav-brand-logo {
    height: 44px;
  }
  .nav--scrolled .nav-brand-logo {
    height: 40px;
  }

  /* Hero */
  .hero { padding: 80px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero h1 { font-size: clamp(42px, 10vw, 62px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats bar */
  .stats-bar { padding: 40px 0; }
  .stats-bar-inner {
    padding: 0 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .stat-item { padding: 20px 14px; }
  .stat-item .n { font-size: 38px; }

  /* Benefits */
  .benefits-section { padding: 60px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 36px; }
  .benefits-photos { grid-template-rows: 180px 180px; }

  /* Classes */
  .classes-section { padding: 60px 0; }
  .class-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Features */
  .features-hl { padding: 60px 0; }
  .features-hl-grid { grid-template-columns: 1fr; gap: 36px; }
  .features-hl-right { order: -1; }
  .features-hl-img { aspect-ratio: 16/9; border-radius: 16px; }
  .feature-tiles { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Team */
  .team-section { padding: 60px 0; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

  /* Testimonials */
  .testi-section { padding: 60px 0; }
  .testi-layout { grid-template-columns: 1fr; gap: 32px; }
  .testi-cards { grid-template-columns: 1fr; }
  .testi-score { font-size: 52px; }

  /* FAQ */
  .faq-section { padding: 60px 0; }
  .acc-btn { font-size: 16px; }

  /* Packages & Categories */
  .packages-section { padding: 60px 0; }
  .pricing-categories { gap: 8px; margin-bottom: 32px; padding: 6px; display: flex; flex-wrap: wrap; justify-content: center; }
  .pricing-cat-tab { padding: 10px 16px; font-size: 13px; border-radius: 10px; }
  .pricing-cat-icon { width: 28px; height: 28px; }
  .pricing-header-info { margin-bottom: 36px; }
  .pricing-cat-title { font-size: 28px; }
  .pricing-cat-desc { font-size: 14px; }
  .pkg-grid { display: flex; flex-direction: column; gap: 16px; max-width: 360px; margin: 0 auto; }
  .pkg { max-width: 100%; min-height: auto; }

  /* CTA Banner */
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: clamp(30px, 8vw, 44px); }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* About */
  .about-split { grid-template-columns: 1fr; gap: 20px; }
  .about-img { aspect-ratio: 4/3; }
  .principles { grid-template-columns: 1fr; gap: 14px; }

  /* Contact */
  .contact-split { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .field.full { grid-column: 1; }

  /* Section head row */
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Footer */
  .footer { padding: 52px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  /* General section padding */
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
}

/* ── Small mobile (≤ 480px) ──────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-img-wrap { aspect-ratio: 4/3; }
  .benefits-photos { grid-template-columns: 1fr; grid-template-rows: 200px; }
  .benefits-photos .ph-tall, .benefits-photos .ph:last-child { display: none; }
  .benefits-photos .ph:nth-child(2) { border-radius: 14px; }
  .feature-tiles { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-sub { flex-direction: column; border-radius: 14px; gap: 8px; padding: 12px; }
  .footer-sub input { padding: 4px 8px; }
  .footer-sub button { border-radius: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATION LAYERS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Layer 1: Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ── Layer 3: Hero Entrance ──────────────────────────────────────── */
.hero-el-enter {
  opacity: 0;
  transform: translateY(var(--hero-dy, 24px));
}
.hero-el-ready {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.hero-img-enter {
  opacity: 0;
  transform: scale(0.96);
}
.hero-img-ready {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-badge-enter {
  opacity: 0;
  transform: translateX(-16px);
}
.hero-badge-ready {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* ── Layer 4: Nav Scroll Behaviour ──────────────────────────────── */
.nav--scrolled {
  border-bottom-color: rgba(73, 102, 64, 0.13);
}

/* ── Layer 5: Page Fade Transition ───────────────────────────────── */
.page-fade-out { animation: pageFadeOut 0.22s ease forwards; pointer-events: none; }
.page-fade-in  { animation: pageFadeIn  0.28s ease forwards; }

@keyframes pageFadeOut { to { opacity: 0; transform: translateY(8px); } }
@keyframes pageFadeIn  { from { opacity: 0; transform: translateY(-8px); } }

/* ── Layer 6: Button Ripple ──────────────────────────────────────── */
.btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute; border-radius: 50%;
  width: 60px; height: 60px; margin: -30px 0 0 -30px;
  background: rgba(255,255,255,0.35); pointer-events: none;
  animation: rippleGrow 0.5s ease-out forwards;
}
@keyframes rippleGrow { to { transform: scale(3); opacity: 0; } }

/* ── prefers-reduced-motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-el-enter, .hero-img-enter, .hero-badge-enter, .page-fade-out, .page-fade-in, .ripple {
    animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important;
  }
  .nav { transition: none; }
}

