/* ============================================================
   LANGDON OSTEOPATHY — STYLE.CSS
   "Clinical luxury, anatomically calm."
   Palette derived from the Langdon mark: steel blue #23669B,
   deep navy, warm cream, rare soft gold.
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Dark grounds */
  --navy: #0a1628;
  --navy-700: #0f1e35;
  --navy-500: #16294a;

  /* Brand steel blue (from logo) */
  --steel: #23669b;
  --steel-light: #5b93c4;
  --steel-soft: #a8c6df;
  --steel-wash: #e8f1f8;
  --steel-deep: #17466b;
  --steel-ink: #0f3252;

  /* Neutrals */
  --cream: #faf8f5;
  --cream-deep: #f4f1ec;
  --grey-light: #f5f3ef;
  --grey-mid: #e6e2db;
  --grey-line: rgba(10, 22, 40, 0.08);
  --grey-brand: #999999;
  --grey-text: #67707e;
  --text-dark: #12203a;
  --text-body: #3d4654;
  --white: #ffffff;

  /* Rare luxury accent */
  --gold: #c4a265;
  --gold-light: #d9c298;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --container-pad: 1.5rem;
  --section-pad: 7.5rem;
  --section-pad-sm: 5rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 999px;

  /* Layered shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05), 0 2px 6px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 1px 2px rgba(10, 22, 40, 0.05), 0 6px 18px rgba(10, 22, 40, 0.07);
  --shadow-lg: 0 2px 4px rgba(10, 22, 40, 0.05), 0 14px 40px rgba(10, 22, 40, 0.10);
  --shadow-xl: 0 4px 10px rgba(10, 22, 40, 0.06), 0 28px 70px rgba(10, 22, 40, 0.14);
  --shadow-card: 0 1px 2px rgba(10, 22, 40, 0.04), 0 4px 14px rgba(10, 22, 40, 0.05);
  --shadow-steel: 0 10px 30px rgba(35, 102, 155, 0.22);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.22s var(--ease-soft);
  --transition-med: 0.42s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 90px;
  /* Navy so the mobile overscroll bounce area matches the header, not the page */
  background-color: var(--navy);
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: rgba(35, 102, 155, 0.16);
  color: var(--text-dark);
}

:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--steel);
  margin-bottom: 1.1rem;
}

.section-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex: 0 0 26px;
}

.section-header .section-label::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: 0 0 26px;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.heading-light {
  display: block;
  font-weight: 300;
  font-style: italic;
  font-size: 0.5em;
  letter-spacing: 0.01em;
  color: var(--steel);
  margin-top: 0.35rem;
}

.section-desc {
  font-size: 1.06rem;
  color: var(--grey-text);
  max-width: 560px;
  margin: 0 auto;
  text-wrap: pretty;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Sections ---------- */
.section { padding: var(--section-pad) 0; position: relative; }

.section-about { background-color: var(--cream); }

.section-treatments {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(35, 102, 155, 0.05), transparent 60%),
    var(--cream-deep);
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}

.section-pricing { background-color: var(--cream); }

.section-process {
  background:
    radial-gradient(90% 120% at 80% 10%, rgba(35, 102, 155, 0.28), transparent 60%),
    var(--navy);
}

.section-process .section-label { color: var(--gold); }
.section-process .section-heading { color: var(--white); }

.section-faq { background-color: var(--cream); }

.section-contact {
  background:
    radial-gradient(100% 100% at 15% 0%, rgba(35, 102, 155, 0.26), transparent 62%),
    var(--navy);
}

.section-contact .section-label { color: var(--gold); }
.section-contact .section-heading { color: var(--white); }
.section-contact .section-desc { color: rgba(255, 255, 255, 0.68); }

/* Hairline dividers on dark sections */
.section-process::before,
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 147, 196, 0.5), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.1rem;
  min-height: 48px;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
              background-color var(--transition-fast), border-color var(--transition-fast),
              color var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.22) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}

.btn:hover::after { transform: translateX(120%); }

.btn-primary {
  background-color: var(--steel);
  color: var(--white);
  border: 1.5px solid var(--steel);
  box-shadow: 0 1px 2px rgba(10, 22, 40, 0.12), 0 8px 22px rgba(35, 102, 155, 0.24);
}

.btn-primary:hover {
  background-color: var(--steel-deep);
  border-color: var(--steel-deep);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(10, 22, 40, 0.12), 0 16px 34px rgba(35, 102, 155, 0.32);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(10, 22, 40, 0.28);
}

.btn-outline:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 1.05rem 2.5rem; font-size: 0.98rem; min-height: 54px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-med), box-shadow var(--transition-med),
              padding var(--transition-med), backdrop-filter var(--transition-med);
  padding: 1.35rem 0;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 147, 196, 0.35), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.site-header.scrolled {
  background-color: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 34px rgba(10, 22, 40, 0.28);
  padding: 0.7rem 0;
}

.site-header.scrolled::after { opacity: 1; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  z-index: 1001;
}

.logo-mark-img {
  width: 46px;
  height: 46px;
  /* PNG is high-res: rendered at half size for crisp 2x output */
  image-rendering: -webkit-optimize-contrast;
  transition: width var(--transition-med), height var(--transition-med), transform var(--transition-med);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
}

.site-header.scrolled .logo-mark-img { width: 40px; height: 40px; }

.logo:hover .logo-mark-img { transform: rotate(-4deg) scale(1.04); }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.14;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-weight: 400;
  font-size: 0.82em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  letter-spacing: 0.03em;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.35rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::before { transform: scaleX(1); }

.nav-link.nav-cta {
  background-color: var(--steel);
  color: var(--white);
  margin-left: 0.6rem;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(35, 102, 155, 0.3);
}

.nav-link.nav-cta::before { display: none; }

.nav-link.nav-cta:hover {
  background-color: var(--steel-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(35, 102, 155, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  z-index: 1001;
  border-radius: var(--radius-full);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO — layered CSS/SVG composition (no photograph)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hero-canvas { position: absolute; inset: 0; z-index: 0; }

/* Base gradient mesh */
.hero-mesh {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(48% 42% at 22% 26%, rgba(35, 102, 155, 0.42), transparent 65%),
    radial-gradient(42% 38% at 78% 20%, rgba(91, 147, 196, 0.22), transparent 68%),
    radial-gradient(60% 55% at 62% 82%, rgba(23, 70, 107, 0.55), transparent 70%),
    linear-gradient(160deg, #0b1a30 0%, #0a1628 45%, #081120 100%);
  animation: meshDrift 26s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  50%  { transform: scale(1.06) translate3d(-1.5%, 1%, 0); }
  100% { transform: scale(1.03) translate3d(1.5%, -1.5%, 0); }
}

/* Soft steel glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}

.hero-glow--a {
  width: 46vw;
  height: 46vw;
  top: -8vw;
  left: -6vw;
  background: radial-gradient(circle, rgba(35, 102, 155, 0.6), transparent 70%);
  animation: glowFloatA 20s ease-in-out infinite alternate;
}

.hero-glow--b {
  width: 38vw;
  height: 38vw;
  bottom: -10vw;
  right: 4vw;
  background: radial-gradient(circle, rgba(91, 147, 196, 0.4), transparent 70%);
  animation: glowFloatB 24s ease-in-out infinite alternate;
}

@keyframes glowFloatA {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(4vw, 3vw, 0); }
}

@keyframes glowFloatB {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-3vw, -4vw, 0); }
}

/* Faint architectural rule */
.hero-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196, 162, 101, 0.28) 30%, rgba(91, 147, 196, 0.18) 70%, transparent);
}

/* Large low-opacity logo watermark, off-centre right */
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(62vh, 640px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
  animation: watermarkBreathe 18s ease-in-out infinite alternate;
}

@keyframes watermarkBreathe {
  from { transform: translateY(-50%) scale(1); opacity: 0.05; }
  to   { transform: translateY(-52%) scale(1.035); opacity: 0.08; }
}

/* Grain */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Vignette to seat the type */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 30%, rgba(6, 14, 26, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, transparent 28%, rgba(8, 17, 32, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 9rem var(--container-pad) 7rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  background: rgba(196, 162, 101, 0.08);
  border: 1px solid rgba(196, 162, 101, 0.3);
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  margin-bottom: 2.2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-badge svg { color: var(--gold); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8.4vw, 6.25rem);
  font-weight: 400;
  color: var(--white);
  line-height: 0.98;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-tagline::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 1.4rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.7), transparent);
}

.hero-subtitle {
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 500px;
  margin: 1.4rem auto 2.6rem;
  line-height: 1.7;
}

.hero-cta { font-size: 1rem; padding: 1.1rem 2.7rem; min-height: 56px; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-scroll-indicator span {
  font-size: 0.64rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.38);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.55); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   ABOUT — editorial
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 4.5rem;
  align-items: start;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius-lg);
  background-color: var(--grey-mid);
  box-shadow: var(--shadow-xl);
  filter: saturate(0.94) contrast(1.03);
  transition: transform var(--transition-med), filter var(--transition-med);
}

.about-image-wrapper::before {
  /* single offset steel frame behind the photo */
  content: "";
  position: absolute;
  inset: 1.75rem -1.75rem -1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--steel-wash), rgba(35, 102, 155, 0.10));
  border: 1px solid rgba(35, 102, 155, 0.16);
  z-index: -1;
}

.about-image-wrapper:hover .about-photo {
  transform: translateY(-4px);
  filter: saturate(1) contrast(1.05);
}

.about-image-accent { display: none; }

.about-text-col .section-heading { margin-bottom: 1.75rem; }

.about-body p {
  margin-bottom: 1.15rem;
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-body);
}

.about-body p:first-child::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.82;
  font-weight: 500;
  color: var(--steel);
  padding: 0.12em 0.12em 0 0;
}

.about-body p:last-child { margin-bottom: 0; }

.about-credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  background: linear-gradient(120deg, var(--steel-wash), rgba(255, 255, 255, 0.7));
  padding: 1.05rem 1.35rem;
  border-radius: var(--radius-md);
  border-left: 2px solid var(--steel);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.credential:hover { transform: translateX(3px); box-shadow: var(--shadow-md); }

.credential svg { flex-shrink: 0; color: var(--steel); margin-top: 2px; }

/* ============================================================
   TREATMENTS
   ============================================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.65rem;
}

.treatment-card {
  position: relative;
  background: var(--white);
  padding: 2.5rem 1.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-line);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  overflow: hidden;
}

/* subtle top-border gradient accent */
.treatment-card::before,
.pricing-card::before,
.location-card::before,
.review-card.google-review::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--steel), var(--steel-light), transparent);
  transform: scaleX(0.25);
  opacity: 0.55;
  transition: transform var(--transition-med), opacity var(--transition-med);
}

.treatment-card:hover::before,
.pricing-card:hover::before,
.location-card:hover::before,
.review-card.google-review:hover::before,
.testimonial-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(35, 102, 155, 0.22);
}

.treatment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: linear-gradient(140deg, rgba(35, 102, 155, 0.14), rgba(91, 147, 196, 0.06));
  border: 1px solid rgba(35, 102, 155, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 1.4rem;
  color: var(--steel);
  transition: transform var(--transition-med), background var(--transition-med), color var(--transition-med);
}

.treatment-card:hover .treatment-icon {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(140deg, var(--steel), var(--steel-deep));
  color: var(--white);
}

.treatment-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.65rem;
  letter-spacing: -0.005em;
}

.treatment-desc {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.65;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--white);
  padding: 3.25rem 2.5rem 2.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--grey-line);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  overflow: hidden;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.pricing-card-featured {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(35, 102, 155, 0.35), transparent 65%),
    var(--navy);
  border-color: rgba(91, 147, 196, 0.28);
  box-shadow: var(--shadow-xl);
}

.pricing-card-featured::after {
  content: "Most booked";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196, 162, 101, 0.35);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.7rem;
}

.pricing-card-featured .pricing-label { color: var(--gold); }
.pricing-card-featured .pricing-amount { color: var(--white); }
.pricing-card-featured .pricing-desc { color: rgba(255, 255, 255, 0.65); }
.pricing-card-featured .pricing-amount::after { background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.6), transparent); }

.pricing-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--steel);
  margin-bottom: 1.1rem;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}

.pricing-amount::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(35, 102, 155, 0.5), transparent);
}

.currency {
  font-size: 0.42em;
  vertical-align: super;
  margin-right: 3px;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--grey-text);
  margin-bottom: 2rem;
  line-height: 1.6;
  min-height: 3.2em;
}

.pricing-card-featured .btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.pricing-card-featured .btn-primary:hover {
  background: var(--steel-light);
  border-color: var(--steel-light);
  color: var(--white);
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  text-align: center;
  flex: 0 0 250px;
  max-width: 250px;
  padding: 0 1rem;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.process-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.process-connector {
  flex: 0 0 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--steel-light), transparent);
  opacity: 0.4;
  margin-top: 2.1rem;
}

/* ============================================================
   TESTIMONIALS / GOOGLE REVIEWS (single merged section)
   ============================================================ */
.section-testimonials {
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(35, 102, 155, 0.05), transparent 60%),
    var(--cream-deep);
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  padding: var(--section-pad) 0;
}

.google-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.google-stars {
  display: inline-flex;
  gap: 4px;
  font-size: 1.4rem;
  line-height: 1;
  color: #f5b400;
  letter-spacing: 2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.google-rating-text {
  margin: 0;
  color: var(--text-body);
  font-size: 0.96rem;
}

.google-rating-text strong { color: var(--navy); font-size: 1.1rem; }

.google-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.6rem 1.15rem;
  min-height: 44px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-full);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.google-rating-link:hover {
  border-color: rgba(35, 102, 155, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.review-card.google-review {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.review-card.google-review:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.review-card .review-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--steel), var(--steel-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: var(--shadow-steel);
}

.review-meta { flex: 1; min-width: 0; }
.review-author { font-weight: 600; color: var(--navy); font-size: 1rem; }

.review-sub {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--grey-text);
}

.review-badge {
  background: rgba(35, 102, 155, 0.1);
  color: var(--steel-deep);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.google-glyph { flex-shrink: 0; opacity: 0.95; }

.review-stars {
  color: #f5b400;
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-text {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.2rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

.reviews-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-line);
  box-shadow: var(--shadow-lg);
  min-height: 340px;
  background: var(--steel-wash);
  position: relative;
}

.reviews-map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.9);
}

/* Legacy patient quotes, nested in the same section */
.legacy-testimonials {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--grey-line);
}

.legacy-head { text-align: center; margin-bottom: 2.5rem; }

.legacy-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.65rem;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-line);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-quote {
  color: var(--steel);
  opacity: 0.24;
  margin-bottom: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.72;
  flex-grow: 1;
  margin: 0 0 1.5rem;
  border: 0;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-mid);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--navy), var(--steel-ink));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.reviews-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 2rem;
}

.faq-item { border-bottom: 1px solid var(--grey-mid); }
.faq-item:last-child { border-bottom: none; }
.faq-item:first-child { border-top: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  min-height: 56px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--steel); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-med), color var(--transition-fast);
  color: var(--steel);
}

.faq-item.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med), opacity var(--transition-med);
  opacity: 0;
}

.faq-item.active .faq-answer { max-height: 340px; opacity: 1; }

.faq-answer p {
  font-size: 0.95rem;
  color: var(--grey-text);
  line-height: 1.75;
  padding: 0 0 1.4rem;
  border-left: 2px solid rgba(35, 102, 155, 0.25);
  padding-left: 1rem;
  margin-bottom: 0.2rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.contact-btn { min-width: 200px; }

.contact-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.contact-actions .btn-outline:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.65rem;
  max-width: 840px;
  margin: 0 auto;
}

.location-card {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.1rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition-med), background var(--transition-med), border-color var(--transition-med);
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(91, 147, 196, 0.35);
  transform: translateY(-4px);
}

.location-icon { color: var(--gold); margin-bottom: 1rem; }

.location-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.location-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.location-details { display: flex; flex-direction: column; gap: 0.55rem; }

.location-details li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
}

.location-details li svg { flex-shrink: 0; color: var(--steel-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:
    radial-gradient(80% 120% at 10% 0%, rgba(35, 102, 155, 0.16), transparent 60%),
    var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4.5rem var(--container-pad) 3rem;
}

.footer-logo { display: inline-block; }

.footer-logo-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  opacity: 0.95;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-logo:hover .footer-logo-img { opacity: 1; transform: translateY(-2px); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.1rem;
  line-height: 1.55;
  max-width: 30ch;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.35rem; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
  padding: 0.35rem 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover { color: var(--white); transform: translateX(3px); }
.footer-links a svg { color: var(--steel-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255, 255, 255, 0.36); }

.footer-gosc { display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-gosc svg { opacity: 0.5; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 1s var(--ease-out) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 6rem; }

  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-rule { left: 70%; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4.5rem;
    --container-pad: 1.25rem;
  }

  /* Mobile header: solid navy from the top so there's no cream gap above the bar,
     and the iOS/Android overscroll area appears seamlessly navy. */
  .site-header {
    background-color: var(--navy);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 6px 20px rgba(10, 22, 40, 0.28);
    padding-top: calc(0.9rem + env(safe-area-inset-top, 0px));
    padding-bottom: 0.9rem;
  }

  .site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 200px;
    background: var(--navy);
    pointer-events: none;
  }

  .site-header.scrolled {
    padding-top: calc(0.55rem + env(safe-area-inset-top, 0px));
    padding-bottom: 0.55rem;
  }

  /* Mobile nav */
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background:
      radial-gradient(90% 60% at 50% 20%, rgba(35, 102, 155, 0.28), transparent 65%),
      var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-med), visibility var(--transition-med);
    z-index: 999;
  }

  .main-nav.open { opacity: 1; visibility: visible; }

  .nav-list { flex-direction: column; gap: 0.35rem; text-align: center; }

  .nav-link {
    font-size: 1.3rem;
    padding: 0.85rem 1.5rem;
    min-height: 52px;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 500;
  }

  .nav-link::before { display: none; }

  .nav-link.nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
  }

  /* Hero */
  .hero-content { padding: 7.5rem var(--container-pad) 5.5rem; }
  .hero-scroll-indicator { display: none; }
  .hero-watermark { width: 120vw; right: -45%; opacity: 0.05; }
  .hero-rule { display: none; }
  .hero-glow--a { width: 90vw; height: 90vw; }
  .hero-glow--b { width: 80vw; height: 80vw; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { max-width: 380px; margin: 0 auto 1rem; }
  .about-image-wrapper::before { inset: 0.9rem -0.9rem -0.9rem 0.9rem; }
  .about-body p:first-child::first-letter { font-size: 3rem; }

  /* Treatments */
  .treatments-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-desc { min-height: 0; }

  /* Process */
  .process-grid { flex-direction: column; align-items: center; gap: 0; }
  .process-step { flex: none; max-width: 100%; width: 100%; padding: 1.5rem 0; }

  .process-connector {
    width: 1px;
    height: 44px;
    flex: 0 0 44px;
    background: linear-gradient(to bottom, transparent, var(--steel-light), transparent);
    margin: 0;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
  .reviews-map-card { min-height: 280px; }
  .review-card.google-review { padding: 1.6rem; }
  .google-rating-link { font-size: 0.88rem; }
  .legacy-testimonials { margin-top: 3rem; padding-top: 2.5rem; }

  /* FAQ */
  .faq-list { padding: 0.25rem 1.35rem; }
  .faq-question { font-size: 1.08rem; }

  /* Contact */
  .contact-actions { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; max-width: 340px; }
  .locations-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 3.25rem var(--container-pad) 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.6rem; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-pad: 3.75rem; }

  .hero-title { font-size: 2.9rem; }
  .section-heading { font-size: 1.85rem; }
  .section-header { margin-bottom: 2.75rem; }
  .treatment-card { padding: 1.9rem 1.4rem; }
  .pricing-card { padding: 2.5rem 1.75rem 2rem; }
  .pricing-amount { font-size: 2.9rem; }
  .testimonial-card { padding: 1.75rem; }
  .review-text { font-size: 1.08rem; }
  .location-card { padding: 1.6rem; }
  .logo-text { font-size: 1rem; }
  .logo-mark-img { width: 40px; height: 40px; }
}

/* ============================================================
   SUBTLE PAGE GRAIN
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ========== BOOKING LIGHTBOX ========== */
.booking-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 32, 0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-lightbox__panel {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(92vh, 1100px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--text-dark);
  box-shadow: 0 30px 90px rgba(8, 17, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: grid;
  grid-template-rows: auto 1fr;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
}

.booking-lightbox.is-open .booking-lightbox__panel { transform: translateY(0) scale(1); }

.booking-lightbox__header {
  padding: clamp(20px, 3vw, 32px);
  padding-right: 64px;
  border-bottom: 1px solid var(--grey-line);
  background: linear-gradient(160deg, var(--steel-wash), rgba(255, 255, 255, 0));
}

.booking-lightbox__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-deep);
  font-weight: 600;
}

.booking-lightbox__header h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--navy);
}

.booking-lightbox__header p {
  margin: 0;
  max-width: 52ch;
  color: var(--text-body);
  font-size: 0.96rem;
}

.booking-lightbox__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(35, 102, 155, 0.09), rgba(35, 102, 155, 0.05));
  border: 1px solid rgba(35, 102, 155, 0.22);
  color: var(--navy);
}

.booking-lightbox__notice svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--steel);
}

.booking-lightbox__notice p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--navy);
  max-width: none;
}

.booking-lightbox__notice strong { color: var(--navy); font-weight: 600; }

.booking-lightbox__notice a {
  color: var(--steel-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-lightbox__notice a:hover { color: var(--steel); }

.booking-lightbox__body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.booking-lightbox__body iframe {
  display: block;
  width: 100%;
  min-height: 1000px;
  background: #fff;
  border: 0;
}

.booking-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, background 0.18s ease;
}

.booking-lightbox__close:hover { transform: scale(1.06) rotate(90deg); background: #fff; }
.booking-lightbox__close:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; }

body.booking-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .booking-lightbox { padding: 0; }
  .booking-lightbox__panel {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
  .booking-lightbox__header { padding: 18px 56px 14px 18px; }
  .booking-lightbox__close { top: 10px; right: 10px; }
}

/* ========== ABOUT IMAGE STICKY ========== */
.about-image-col {
  position: sticky;
  top: 104px;
  align-self: start;
}

@media (max-width: 900px) {
  .about-image-col { position: static; top: auto; }
}

/* ========== INSURANCE PARTNERS TICKER ========== */
.section-insurance {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--cream);
  overflow: hidden;
}

.section-insurance::before,
.section-insurance::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.section-insurance::before { top: 3.5rem; }
.section-insurance::after { bottom: 3.5rem; }

.section-insurance .section-header { text-align: center; margin-bottom: 3.5rem; }

.section-insurance .section-label {
  color: var(--steel);
  letter-spacing: 0.26em;
}

.section-insurance .section-heading { margin-bottom: 1.25rem; }

.insurance-subtitle {
  max-width: 660px;
  margin: 0 auto;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
}

.insurance-subtitle strong { color: var(--steel-deep); font-weight: 600; }

.insurance-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.insurance-track {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  animation: insurance-scroll 36s linear infinite;
  will-change: transform;
}

.insurance-ticker:hover .insurance-track,
.insurance-ticker:focus-within .insurance-track {
  animation-play-state: paused;
}

.insurance-item {
  flex: 0 0 auto;
  position: relative;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
  opacity: 0.5;
}

.insurance-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.4px;
  color: var(--navy);
  white-space: nowrap;
  line-height: 1;
  transition: color var(--transition-fast);
}

.insurance-item:hover .insurance-name { color: var(--steel); }

@keyframes insurance-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .section-insurance::before { top: 2.4rem; }
  .section-insurance::after { bottom: 2.4rem; }
  .section-insurance .section-header { margin-bottom: 2.5rem; }
  .insurance-item { padding: 0 40px; }
  .insurance-name { font-size: 1.5rem; }
  .insurance-track { animation-duration: 28s; }
  .insurance-subtitle { font-size: 0.94rem; }
}

@media (max-width: 480px) {
  .insurance-item { padding: 0 28px; }
  .insurance-item::after { width: 4px; height: 4px; }
  .insurance-name { font-size: 1.3rem; }
  .insurance-track { animation-duration: 22s; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal, .anim-fade-up { opacity: 1 !important; transform: none !important; }

  .insurance-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px 32px;
  }

  .insurance-ticker {
    -webkit-mask-image: none;
            mask-image: none;
  }

  .insurance-item::after { display: none; }
  .hero-mesh, .hero-glow, .hero-watermark, .scroll-line { animation: none; }
}
