:root {
  --bg: #fcf9f2;
  --surface: #f6f3ec;
  --ink: #1c1c18;
  --muted: #6b6f68;
  --primary: #182519;
  --primary-container: #2d3b2d;
  --secondary: #8a6230;
  --secondary-container: #ffd79b;
  --line: rgba(24, 37, 25, 0.09);
  --radial-a: rgba(255, 215, 155, 0.24);
  --radial-b: rgba(188, 203, 184, 0.24);
  --container: 1180px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.center { text-align: center; }

/* ---------- Topbar ---------- */
.topbar {
  background: color-mix(in srgb, var(--surface) 82%, var(--secondary) 14%);
  font-size: 12px;
  color: var(--muted);
}
.topbar-wrap { display: flex; justify-content: flex-end; align-items: center; padding: 9px 0; }
.topbar-right-align { display: flex; gap: 28px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 14px; height: 14px; color: var(--secondary); flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-right a { text-decoration: none; }
.soc {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  color: #fff; font-size: 11px; font-weight: 700;
  text-transform: lowercase;
}
.soc-fb { background: #1877f2; }
.soc-tw { background: #1da1f2; }
.soc-sp { background: #1db954; }
.soc-ig { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); }

/* ---------- Header ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 18px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--secondary); color: #fff;
  font: 700 13px/1 "Public Sans", sans-serif;
  letter-spacing: .02em;
}
.logo strong { display: block; font-family: "Newsreader", serif; font-size: 26px; line-height: 1; }
.logo small { text-transform: uppercase; letter-spacing: .18em; font-size: 9px; color: var(--muted); }
nav { display: flex; gap: 26px; }
nav a { text-decoration: none; color: var(--ink); font-size: 13px; font-weight: 500; position: relative; padding: 6px 0; }
nav a.active { color: var(--secondary); }
nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--secondary); }

.header-right { display: flex; align-items: center; gap: 14px; }
.chip-call {
  display: flex; align-items: center; gap: 12px;
  padding: 0; background: transparent;
}
.chip-call.dark { background: transparent; }
.chip-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 60%, var(--ink) 8%);
  color: var(--secondary); font-size: 18px;
}
.chip-call small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 2px; }
.chip-call strong { display: block; font-size: 16px; font-weight: 700; letter-spacing: .02em; }
.chip-call.dark small { color: rgba(255,255,255,.65); }
.chip-call.dark strong { color: #fff; }
.chip-call.dark .chip-icon { background: rgba(255,255,255,.08); color: var(--secondary-container); }

.theme-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 8px 6px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700;
}
#theme-picker { border: 0; background: transparent; padding: 6px 8px; font: inherit; font-size: 12px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  border: 0;
  padding: 14px 24px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  border-radius: 2px;
  transition: filter .15s ease;
}
.btn:hover { filter: brightness(1.08); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
}
.eyebrow.center { display: flex; justify-content: center; }
.eyebrow .bar { width: 28px; height: 1px; background: currentColor; opacity: .6; display: inline-block; }
.eyebrow-dark { color: var(--secondary); }

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-family: "Newsreader", serif;
  margin: 0 0 16px;
  line-height: 1.15;
  font-weight: 500;
}
h1 { font-size: clamp(40px, 5.6vw, 64px); font-weight: 500; }
h2 { font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: 22px; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: inherit; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 760px; overflow: hidden; background: #14110d; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("sample-hero.jpg");
  background-size: cover;
  background-position: center right;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,8,6,.85) 0%, rgba(10,8,6,.55) 40%, rgba(10,8,6,.15) 70%, rgba(10,8,6,0) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; padding: 120px 0 140px; }
.hero-content > * { max-width: 640px; }
.hero-content .cta-row,
.hero-content .hero-dots { max-width: none; }
.hero-content .eyebrow { color: #fff; opacity: .9; }
.hero-content .eyebrow .bar { background: var(--secondary); opacity: 1; width: 22px; height: 2px; }
.hero-content h1 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.08;
  margin-bottom: 26px;
}
.hero-content h1 em {
  font-style: italic; font-weight: 400;
  display: inline-block;
}
.hero-content .lead { max-width: 480px; font-size: 16px; opacity: .85; line-height: 1.7; }
.cta-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero-dots {
  position: absolute; left: max(24px, calc((100% - var(--container)) / 2 + 24px));
  bottom: 60px; display: flex; gap: 10px; z-index: 3;
}
.hero-dots .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: transparent; border: 1.5px solid rgba(255,255,255,.55);
  padding: 0; cursor: pointer;
}
.hero-dots .dot.active {
  background: #fff; border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.18);
}

/* ---------- Unified hero-overlap bar ---------- */
.unified-bar {
  margin-top: -90px;
  position: relative; z-index: 4;
}
.ub-grid {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(0,0,0,.1);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 28px;
  align-items: start;
}
.ub-intro { grid-column: 1; grid-row: 1; }
.ub-intro .eyebrow { margin-bottom: 12px; }
.ub-intro h3 {
  font-size: 26px;
  line-height: 1.25;
  margin: 0;
  max-width: 560px;
}
.ub-phone {
  grid-column: 2; grid-row: 1;
  display: flex; align-items: center; gap: 14px;
  padding-left: 36px;
  border-left: 1px solid var(--line);
  align-self: center;
}
.ub-phone .phone-icon {
  background: var(--surface);
  color: var(--secondary);
  border: 0;
}
.ub-phone small {
  display: block; font-size: 11px;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted); margin-bottom: 2px;
}
.ub-phone strong {
  display: block;
  font: 500 24px/1 "Newsreader", serif;
  color: var(--ink);
}
.ub-services {
  grid-column: 1; grid-row: 2;
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  align-self: end;
}
.ub-services li {
  position: relative;
  padding: 6px 14px 6px 32px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.ub-services li::before {
  content: "✓"; position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--secondary); font-weight: 700;
}
.ub-actions {
  grid-column: 2; grid-row: 2;
  display: flex; gap: 10px;
  justify-content: flex-end; align-self: end;
}

@media (max-width: 900px) {
  .ub-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding: 28px;
  }
  .ub-intro, .ub-phone, .ub-services, .ub-actions {
    grid-column: 1; grid-row: auto;
  }
  .ub-phone { padding-left: 0; border-left: 0; padding-top: 20px; border-top: 1px solid var(--line); }
  .ub-actions { justify-content: stretch; flex-direction: column; }
}

/* ---------- Floating panels (legacy, retained for reference) ---------- */
.floating-panels {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
  margin-top: -90px; position: relative; z-index: 4;
}
.panel { padding: 32px; border-radius: 4px; box-shadow: 0 24px 48px rgba(0,0,0,.1); }
.panel-light { background: #fff; }
.panel-accent {
  position: relative; overflow: hidden; color: #f5ece0;
  background: #3d2a1c;
  background-image:
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,.35), transparent 60%),
    radial-gradient(ellipse at 0% 0%, rgba(255,255,255,.04), transparent 55%);
}
.panel-accent::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: .5; pointer-events: none;
  mask-image: linear-gradient(135deg, #000 0%, transparent 60%);
}
.panel-accent::after {
  content: ""; position: absolute; right: -90px; bottom: -90px;
  width: 260px; height: 260px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.panel-accent-inner { position: relative; z-index: 1; }
.panel-accent h3 { font-size: 28px; margin-bottom: 14px; }
.panel-accent-sub { margin: 0 0 26px; font-size: 14px; opacity: .9; }
.panel-accent-sub a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.phone-block {
  display: flex; align-items: center; gap: 16px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
}
.phone-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,0,0,.22);
  color: #f5ece0; font-size: 22px; flex-shrink: 0;
}
.phone-block small {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: .18em; opacity: .8; margin-bottom: 2px;
}
.phone-block strong {
  display: block; font: 500 28px/1 "Newsreader", serif;
  letter-spacing: .01em;
}
.panel h3 { margin-bottom: 12px; }
.panel-sub { color: var(--muted); margin: 0 0 18px; font-size: 14px; }
.check-list { list-style: none; padding: 0; margin: 0 0 18px; columns: 2; column-gap: 24px; }
.check-list li { font-size: 14px; padding-left: 22px; position: relative; margin: 6px 0; break-inside: avoid; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--secondary); font-weight: 700;
}
.link-arrow { color: var(--secondary); text-decoration: none; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.link-arrow:hover { text-decoration: underline; }
.panel-accent a { color: #fff; }

/* ---------- Section base ---------- */
.section { padding: 100px 0; }

/* ---------- Intro ---------- */
.intro { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.intro-photo { min-height: 520px; background-color: #cfc2b0; background-image: linear-gradient(140deg, #cfc2b0, #ede7dc); background-size: cover; background-position: center; border-radius: 2px; position: relative; }
.intro-photo::after {
  content: ""; position: absolute; inset: auto -18px -18px auto;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--secondary) 1px, transparent 1.5px);
  background-size: 10px 10px; opacity: .6;
}
blockquote {
  margin: 28px 0 16px; font-family: "Newsreader", serif;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.3;
  font-style: italic; position: relative; padding-left: 40px;
}
.quote-mark { position: absolute; left: 0; top: -8px; font-size: 56px; color: var(--secondary); line-height: 1; font-family: "Newsreader", serif; }
.signature { font-family: "Newsreader", serif; font-size: 22px; font-style: italic; margin: 0 0 20px; }
.signature span { color: var(--muted); font-style: normal; font-size: 13px; letter-spacing: .08em; }

/* ---------- Stats ---------- */
.stats { background: color-mix(in srgb, var(--surface) 92%, white); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 70px 0; text-align: center;
}
.stat {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative;
  padding: 0 20px;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 70px;
  background: var(--line);
}
.stat-icon {
  width: 36px; height: 36px;
  color: var(--secondary);
  display: block;
}
.stat strong {
  font: 400 46px/1 "Newsreader", serif;
  color: color-mix(in srgb, var(--ink) 72%, var(--secondary) 28%);
  letter-spacing: -.005em;
}
.stat span:last-child {
  text-transform: uppercase;
  font-size: 11px; color: var(--muted);
  letter-spacing: .22em; font-weight: 600;
  margin-top: 4px;
}

/* ---------- Dark sections ---------- */
.dark { color: #f0ece4; background: #14110d; }
.dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .eyebrow { color: var(--secondary-container); }

.practice { background: #14110d; }
.practice-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.practice-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 36px; }
.practice-item h4 { font-size: 22px; margin: 12px 0 6px; }
.practice-item p { font-size: 14px; opacity: .75; margin: 0; }
.practice-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 215, 155, .14); color: var(--secondary-container);
  font-size: 20px;
}

/* ---------- Zoom banner ---------- */
.zoom-banner {
  display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: center;
  margin: -50px auto 0; position: relative; z-index: 3;
  background: #fff; padding: 28px 36px; border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.zoom-image { min-height: 160px; background-color: #cfc2b0; background-image: linear-gradient(140deg, #cfc2b0, #ede7dc); background-size: cover; background-position: center; border-radius: 2px; }
.zoom-copy h3 { font-size: 30px; margin: 0 0 8px; }
.zoom-copy a { color: var(--secondary); font-weight: 600; }

/* ---------- Programs ---------- */
.programs { background: var(--bg); }
.programs h2.center, .pricing h2.center, .blog h2.center { margin-bottom: 50px; }

.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); padding: 28px; border-radius: 4px; box-shadow: 0 8px 24px rgba(20,15,10,.04); }
.ph {
  height: 200px;
  background-color: #d8cdbc;
  background-image: linear-gradient(140deg, #d8cdbc, #f0ebe1);
  background-size: cover; background-position: center;
  margin: -28px -28px 22px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14px; }

.appt-strip {
  margin-top: 40px; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; background: #fff; border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(20,15,10,.04);
  gap: 24px; flex-wrap: wrap;
}
.appt-strip > div:first-child { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.appt-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--secondary); color: #fff;
}
.appt-strip strong { font-family: "Newsreader", serif; font-size: 20px; font-weight: 500; }
.appt-sub { color: var(--muted); font-size: 13px; }
.appt-actions { display: flex; gap: 10px; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.split-left { display: flex; }
.split-left .inner { max-width: 540px; margin-left: auto; padding: 110px 60px 110px 24px; }
.split-right {
  background-color: #6e5840;
  background-image: linear-gradient(140deg, #b8a489, #6e5840);
  background-size: cover; background-position: center;
  position: relative; min-height: 480px;
}
.split-right::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(20,15,10,.25);
}
.split-right .play-btn { z-index: 1; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--secondary); color: #fff;
  border: 6px solid rgba(255,255,255,.35);
  font-size: 22px; cursor: pointer;
}
.bullet-list { list-style: none; padding: 0; margin: 18px 0 0; }
.bullet-list li {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 15px; padding-left: 26px; position: relative;
}
.bullet-list li::before {
  content: "♦"; position: absolute; left: 0; color: var(--secondary-container);
}

/* ---------- Pricing ---------- */
.pricing { background: var(--bg); }
.price { text-align: center; padding: 36px 28px; position: relative; }
.price .ph { display: none; }
.price .amount {
  font: 500 56px/1 "Newsreader", serif; margin: 18px 0 6px;
  color: var(--secondary);
}
.price .per { color: var(--muted); font-size: 13px; margin: 0 0 20px; }
.price ul { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.price ul li { padding: 8px 0; padding-left: 24px; position: relative; font-size: 14px; border-bottom: 1px dashed var(--line); }
.price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }
.price .btn { width: 100%; }
.price.featured { background: var(--surface); border-color: var(--secondary); }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--secondary); color: #fff;
  padding: 5px 14px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; border-radius: 2px;
}
.pricing-note { margin-top: 36px; color: var(--muted); }
.pricing-note a { color: var(--secondary); font-weight: 600; }

/* ---------- Testimonial ---------- */
.testimonial {
  padding: 110px 0;
  background:
    linear-gradient(rgba(20,15,10,.78), rgba(20,15,10,.78)),
    radial-gradient(ellipse at 30% 40%, #6e5840, #1a120c);
  color: #fff; text-align: center;
}
.testimonial-quote {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  max-width: 760px; margin: 0 auto 18px;
  line-height: 1.3; padding: 0; position: relative;
}
.testimonial-quote .quote-mark { position: static; display: block; font-size: 64px; color: var(--secondary-container); margin-bottom: 8px; }
.testimonial-meta { color: var(--secondary-container); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Featured in ---------- */
.featured-in { padding: 60px 0; display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 30px; border-bottom: 1px solid var(--line); }
.featured-label { font-size: 11px; letter-spacing: .22em; color: var(--muted); font-weight: 600; }
.featured-logos {
  display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  font-family: "Newsreader", serif; color: var(--muted);
  font-size: 22px; letter-spacing: .08em; opacity: .8;
}

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.process-image { min-height: 480px; background-color: #6e5840; background-image: linear-gradient(140deg, #b8a489, #6e5840); background-size: cover; background-position: center; border-radius: 2px; }
.steps { list-style: none; padding: 0; margin: 28px 0 0; counter-reset: step; }
.steps li { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.steps li:last-child { border-bottom: 0; }
.step-icon {
  flex: 0 0 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--secondary);
  margin-top: 2px;
}
.step-icon svg { width: 28px; height: 28px; }
.steps h4 { margin: 0 0 4px; font-size: 19px; }
.steps p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- FAQ ---------- */
.faq {
  position: relative;
  background:
    radial-gradient(ellipse at 100% 0%, color-mix(in srgb, var(--secondary) 4%, transparent), transparent 55%),
    radial-gradient(ellipse at 0% 100%, color-mix(in srgb, var(--secondary-container) 8%, transparent), transparent 60%),
    color-mix(in srgb, var(--surface) 92%, var(--secondary) 3%);
}
.faq::before, .faq::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.faq::before { top: 0; }
.faq::after { bottom: 0; }
.faq h2.center { margin-bottom: 50px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(20,15,10,.03);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] {
  border-color: color-mix(in srgb, var(--secondary) 40%, var(--line));
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: "Newsreader", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--secondary); }
.faq-icon {
  position: relative; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface);
  transition: background .2s ease, transform .25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--secondary);
  transition: transform .25s ease, opacity .2s ease;
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { background: var(--secondary); transform: rotate(180deg); }
.faq-item[open] .faq-icon::before { background: #fff; }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-body {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  animation: faq-reveal .25s ease;
}
.faq-body p { margin: 0 0 10px; }
.faq-body p:last-child { margin-bottom: 0; }
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Blog ---------- */
.blog { background: var(--bg); }
.blog-card .meta { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--secondary); font-weight: 600; margin: 0 0 10px; }
.blog-card .byline { font-size: 12px; color: var(--muted); margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line); }

/* ---------- Booking ---------- */
.booking { padding: 100px 0; }
.booking-wrap {
  display: grid; grid-template-columns: .85fr 1.4fr;
  background: #fff; color: var(--ink);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}
.booking-wrap aside {
  padding: 60px 48px;
  background: linear-gradient(160deg, #2d2421, #0f0b0b);
  color: #fff;
  display: flex; flex-direction: column;
}
.booking-wrap aside .eyebrow { color: var(--secondary-container); margin-bottom: 18px; }
.booking-wrap aside .eyebrow .bar { background: var(--secondary-container); opacity: 1; width: 22px; height: 2px; }
.booking-wrap aside h3 { font-size: 28px; line-height: 1.3; color: #fff; margin-bottom: 28px; }
.booking-points { list-style: none; padding: 0; margin: 0 0 36px; }
.booking-points li {
  position: relative; padding: 10px 0 10px 28px;
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.booking-points li:last-child { border-bottom: 0; }
.booking-points li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  color: var(--secondary-container); font-weight: 700;
}
.booking-alt {
  margin: auto 0 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px; color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
.booking-alt strong {
  display: block; margin-top: 4px;
  font: 500 22px/1 "Newsreader", serif;
  color: var(--secondary-container);
  letter-spacing: .01em;
}

.booking-wrap form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
  padding: 56px 52px;
}
.booking-wrap label {
  display: flex; flex-direction: column;
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .16em;
  gap: 10px; font-weight: 600;
}
.booking-wrap input, .booking-wrap select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  font: inherit; font-size: 14px;
  color: var(--ink); border-radius: 3px;
  letter-spacing: 0; text-transform: none; font-weight: 400;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.booking-wrap input::placeholder { color: color-mix(in srgb, var(--muted) 60%, transparent); }
.booking-wrap input:focus, .booking-wrap select:focus {
  outline: none;
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondary) 18%, transparent);
}
.booking-wrap label.full { grid-column: 1 / -1; }
.form-actions {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.form-note { font-size: 12px; color: var(--muted); margin: 0; max-width: 320px; line-height: 1.5; }
.form-actions button { padding: 16px 32px; }

/* ---------- Contact blocks ---------- */
.contact-blocks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 0 0 80px;
}
.cb { padding: 32px 30px; background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 8px 24px rgba(20,15,10,.04); transition: box-shadow .2s ease, border-color .2s ease; }
.cb:hover { border-color: color-mix(in srgb, var(--secondary) 35%, var(--line)); box-shadow: 0 14px 30px rgba(0,0,0,.05); }
.cb-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: color-mix(in srgb, var(--secondary-container) 40%, var(--surface));
  color: var(--secondary); margin-bottom: 18px;
}
.cb-icon svg { width: 24px; height: 24px; }
.cb h4 { font-size: 22px; margin-bottom: 12px; }
.cb p { margin: 4px 0; font-size: 14px; color: var(--muted); }
.cb p strong { color: var(--ink); }
.cb .muted { font-style: italic; }
.cb .link-arrow { display: inline-block; margin-top: 10px; }

/* ---------- Newsletter ---------- */
.newsletter { background: #14110d; }
.news-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 50px 0; flex-wrap: wrap; }
.news-wrap h3 { margin: 0; font-size: 28px; max-width: 540px; line-height: 1.3; }
.news-wrap form { display: flex; gap: 8px; }
.news-wrap input {
  padding: 14px 18px; min-width: 320px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  color: #fff;
}
.news-wrap input::placeholder { color: rgba(255,255,255,.5); }

/* ---------- Footer ---------- */
.footer-main { background: #0f0c09; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { padding: 70px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { font-size: 18px; margin-bottom: 18px; }
.footer-grid p { font-size: 14px; opacity: .75; margin: 6px 0; }
.footer-brand .logo strong { color: #fff; }
.footer-brand .logo small { color: rgba(255,255,255,.5); }
.footer-brand p { margin-top: 20px; max-width: 320px; }
.footer-licenses { font-size: 12px; letter-spacing: .08em; opacity: .65 !important; margin-top: 12px !important; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { font-size: 14px; padding: 6px 0; opacity: .8; }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; text-decoration: none; font-size: 12px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 12px; opacity: .6; }
.footer-bottom p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1050px) {
  .floating-panels, .intro, .practice-grid, .cards.three, .split, .process, .booking-wrap, .footer-grid, .zoom-banner, .contact-blocks, .featured-in {
    grid-template-columns: 1fr;
  }
  .stats-grid, .practice-list, .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .booking-wrap form { grid-template-columns: 1fr; }
  .hero { min-height: 580px; }
  .hero-content { padding: 70px 0 100px; }
  .split-left .inner { padding: 60px 24px; max-width: none; margin: 0; }
  .news-wrap input { min-width: 0; width: 100%; }

  .nav-wrap { gap: 12px; }
  nav { gap: 18px; }
  nav a { font-size: 12px; }
  .chip-call .chip-icon { width: 38px; height: 38px; font-size: 16px; }
  .chip-call small { font-size: 9px; }
  .chip-call strong { font-size: 14px; }
}

@media (max-width: 760px) {
  .site-header nav { display: none; }
  .nav-wrap {
    flex-direction: column; align-items: center; text-align: center;
    gap: 16px; padding: 18px 0;
  }
  .header-right { justify-content: center; }
  .nav-wrap .chip-call {
    flex-direction: column; align-items: center;
    gap: 8px; text-align: center;
  }
  .nav-wrap .chip-call strong { font-size: 18px; }

  .topbar-wrap { justify-content: center; }
  .topbar-right-align {
    flex-direction: column; align-items: center;
    gap: 6px; text-align: center;
  }
  .topbar-item { justify-content: center; }
}
@media (max-width: 600px) {
  .stats-grid, .practice-list, .pricing-cards { grid-template-columns: 1fr; }
  .check-list { columns: 1; }
  .hero-arrows { display: none; }
}
