/* ════════════════════════════════════════
   TOKENS
════════════════════════════════════════ */
:root {
  --bg:          #0c1a10;
  --bg-alt:      #111e14;
  --bg-card:     #152018;
  --teal:        #3d8a7a;
  --teal-light:  #5aab9a;
  --gold:        #c9a96e;
  --text:        #e8e4dc;
  --text-muted:  #8fa898;
  --border:      rgba(61,138,122,0.18);
  --overlay:     rgba(8,18,10,0.62);
  --parchment:   #f0e8d4;
  --ink:         #1a2a1e;

  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;

  --max-w:       1160px;
  --pad-v:       96px;
  --radius:      6px;
}

/* ════════════════════════════════════════
   RESET
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h2.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 48px;
}

h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: calc(var(--i, 0) * 0.13s);
}
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { transition: none; opacity: 1; transform: none; }
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: #d4b97c;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(201,169,110,0.32);
  color: var(--bg);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(232,228,220,0.28);
}
.btn-secondary:hover {
  border-color: var(--text);
  background: rgba(232,228,220,0.06);
  transform: scale(1.02);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 32px;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(11,24,14,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 32px;
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.25s ease, transform 0.2s ease;
}
.nav-links .nav-cta:hover {
  background: #d4b97c;
  transform: scale(1.02);
  color: var(--bg);
}

/* Book Now dropdown */
.nav-book-wrap { position: relative; }
.book-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  z-index: 200;
  overflow: hidden;
}
.nav-book-wrap.open .book-dropdown { display: block; }
.book-dropdown a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease;
}
.book-dropdown a:hover { background: var(--teal); color: var(--bg); }
.book-dropdown li + li { border-top: 1px solid var(--border); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   INNER PAGE HERO
════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,18,10,0.45) 0%,
    rgba(8,18,10,0.72) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 120px 28px 0;
}
.page-hero-content .hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(90,171,154,0.35);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.page-hero-content .page-hero-sub {
  font-size: 1.05rem;
  color: rgba(232,228,220,0.72);
  max-width: 500px;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   HOMEPAGE HERO
════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Web%20Design%20/Hero%20Section%20/Hero%20Imaga.png');
  background-size: cover;
  background-position: center 40%;
}
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(90,171,154,0.35);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.07;
  color: var(--text);
  margin-bottom: 22px;
  animation: fadeUp 1s ease 0.42s both;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(232,228,220,0.75);
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeUp 1s ease 0.62s both;
}
.hero-content .cta-group {
  animation: fadeUp 1s ease 0.80s both;
}
.hero-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.52s both;
}
.hero-review-badge .review-stars-sm {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.hero-review-badge .review-text {
  font-size: 13px;
  color: rgba(232,228,220,0.72);
  letter-spacing: 0.04em;
}
.hero-book-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(232,228,220,0.45);
  animation: fadeUp 1s ease 0.97s both;
}

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
#about {
  padding: var(--pad-v) 0;
  background: linear-gradient(to bottom, var(--bg) 0px, var(--bg-alt) 80px);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: -64px -48px;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(61,138,122,0.22) 0%, transparent 54%),
    radial-gradient(ellipse at 16% 84%, rgba(201,169,110,0.09) 0%, transparent 42%);
  pointer-events: none;
  z-index: 0;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: -20px -12px;
  background-image: radial-gradient(circle, rgba(90,171,154,0.22) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 82% 82% at 50% 50%, black 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 82% 82% at 50% 50%, black 0%, transparent 72%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.about-photo-wrap {
  position: relative;
  z-index: 2;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.14);
  border-radius: 10px;
  z-index: 0;
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,0.26);
  z-index: 3;
  pointer-events: none;
}
.about-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.92) saturate(0.85);
  box-shadow: 0 24px 56px rgba(0,0,0,0.44), 0 6px 18px rgba(0,0,0,0.28);
  display: block;
}
.about-text .section-label { margin-bottom: 12px; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-credentials strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--gold);
}
.about-credentials span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   SERVICES SECTION (grid/cards)
════════════════════════════════════════ */
#services {
  padding: var(--pad-v) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#services .container { position: relative; z-index: 1; }
.services-intro {
  max-width: 560px;
  margin-bottom: 52px;
}
.services-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.service-card:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,0.38);
  transform: translateY(-3px);
}
.service-card-img {
  height: 320px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s ease, filter 0.9s ease;
  filter: brightness(0.8) saturate(0.78);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
  filter: brightness(0.96) saturate(0.96);
}
.service-card-body {
  padding: 26px 28px 30px;
  border-top: 2px solid var(--gold);
}
.service-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color 0.2s ease, gap 0.2s ease;
}
.service-card-link:hover { color: var(--text); gap: 10px; }

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
#gallery {
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease, filter 0.9s ease;
  filter: brightness(0.78) saturate(0.75);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(0.95);
}

/* ════════════════════════════════════════
   ANCIENT BAND
════════════════════════════════════════ */
.ancient-band {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.ancient-band-img {
  position: absolute;
  inset: 0;
}
.ancient-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.5) saturate(0.35) sepia(0.25);
}
.ancient-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,18,10,0.82) 0%,
    rgba(8,18,10,0.38) 55%,
    rgba(8,18,10,0.72) 100%
  );
}
.ancient-band-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.ancient-band-text .section-label {
  color: var(--gold);
  opacity: 0.9;
}
.ancient-band-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 520px;
}
.ancient-band-text p {
  font-size: 15px;
  color: rgba(232,228,220,0.62);
  max-width: 420px;
  line-height: 1.75;
}

/* ════════════════════════════════════════
   PULL QUOTE
════════════════════════════════════════ */
.pull-quote {
  padding: 88px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote-mark {
  font-family: var(--font-head);
  font-size: 22rem;
  color: var(--gold);
  opacity: 0.06;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pull-quote-inner {
  position: relative;
  z-index: 1;
}
.pull-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 22px;
}
.pull-quote cite {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip {
  padding: 68px 0;
  background: linear-gradient(to bottom,
    var(--bg-alt)  0%,
    var(--bg-card) 14%,
    var(--bg-card) 86%,
    var(--bg)      100%
  );
  position: relative;
  overflow: hidden;
}
.stats-strip .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   HEALTH FUNDS
════════════════════════════════════════ */
#health-funds {
  padding: var(--pad-v) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
#health-funds .section-label { color: var(--teal-light); }
#health-funds h2.section-title { margin-bottom: 20px; }
.health-funds-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 52px;
  line-height: 1.75;
}
.funds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 28px;
}
.fund-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.fund-badge::before {
  content: '✓';
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.fund-badge:hover {
  border-color: var(--teal);
  background: rgba(61,138,122,0.06);
}
.health-funds-note {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ════════════════════════════════════════
   CONDITIONS / WHO THIS IS FOR
════════════════════════════════════════ */
#conditions {
  padding: var(--pad-v) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
#conditions .container { position: relative; z-index: 1; }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  margin-bottom: 52px;
  max-width: 860px;
}
.conditions-grid li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.5;
}
.conditions-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.section-cta {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
#faq {
  padding: var(--pad-v) 0;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: '';
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  height: 120%;
  background-image: url('Images/Ancient2.JPG');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
#faq .container { position: relative; z-index: 1; }
#faq .section-label { color: var(--gold); }
#faq h2.section-title { color: var(--ink); }
#faq .faq-intro { color: rgba(26,42,30,0.6); }
#faq .faq-item { border-bottom-color: rgba(26,42,30,0.14); }
#faq .faq-item:first-of-type { border-top-color: rgba(26,42,30,0.14); }
#faq .faq-item summary { color: var(--ink); }
#faq .faq-item summary:hover { color: var(--teal); }
#faq .faq-item summary::after {
  border-right-color: var(--teal);
  border-bottom-color: var(--teal);
}
#faq .faq-answer p { color: rgba(26,42,30,0.68); }
.faq-intro {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 48px;
  margin-top: -30px;
}
.faq-list {
  max-width: 740px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-item summary:hover { color: var(--teal-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-right: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-answer {
  padding: 0 44px 22px 0;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
}

/* ════════════════════════════════════════
   REVIEWS
════════════════════════════════════════ */
#reviews {
  padding: var(--pad-v) 0;
  background: linear-gradient(to bottom, var(--bg) 0px, var(--bg-alt) 80px);
  position: relative;
  overflow: hidden;
}
#reviews .container { position: relative; z-index: 1; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.22;
  position: absolute;
  top: 10px;
  left: 22px;
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.review-card blockquote {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card cite {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
#cta-section {
  padding: var(--pad-v) 0;
  background: linear-gradient(to bottom, var(--bg-alt) 0px, var(--bg) 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-section::before {
  content: '';
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  height: 130%;
  background-image: url('Images/Ancient2.JPG');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
#cta-section .container { position: relative; z-index: 1; }
#cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
#cta-section .cta-group {
  justify-content: center;
}
.cta-contacts {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.cta-contact-item span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cta-contact-item a {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s ease;
}
.cta-contact-item a:hover { color: var(--text); }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact {
  padding: var(--pad-v) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
#contact .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact-block-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact-person {
  margin-bottom: 18px;
}
.contact-person strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-person a {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--teal-light);
  transition: color 0.2s ease;
}
.contact-person a:hover { color: var(--text); }
.contact-email {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.contact-email:hover { color: var(--text); }
.hours-heading {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.hours-table td {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text);
}
.hours-table .closed { color: rgba(232,228,220,0.28); }
.contact-location {
  font-size: 13px;
  color: var(--text-muted);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s ease;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(143,168,152,0.45); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -4px;
}
.contact-map-wrap {
  position: relative;
}
.contact-map-wrap iframe {
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  filter: brightness(0.78) saturate(0.65);
  display: block;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #070f09;
  border-top: 1px solid var(--border);
}

/* ── 3-column footer layout ── */
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 28px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.4;
  margin: 0 0 16px;
}
.footer-brand-name span {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 0.88em;
  color: rgba(201,169,110,0.65);
}

.footer-address {
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
  margin: 0 0 16px;
}

.footer-contacts {
  font-size: 13px;
  line-height: 2;
  margin-bottom: 18px;
}
.footer-contacts a {
  display: block;
  color: var(--teal-light);
  transition: color 0.2s ease;
}
.footer-contacts a:hover { color: var(--text); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin: 0 0 18px;
}

.footer-hours-table {
  border-collapse: collapse;
  font-size: 13px;
  color: var(--text-muted);
  width: 100%;
}
.footer-hours-table td {
  padding: 5px 0;
  vertical-align: middle;
}
.footer-hours-table td:last-child {
  text-align: right;
  color: var(--teal-light);
}
.footer-hours-table td.closed {
  color: rgba(255,255,255,0.18);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-creds {
  font-size: 11px;
  color: rgba(143,168,152,0.28);
  line-height: 1.7;
}
.footer-copy {
  font-size: 11px;
  color: rgba(143,168,152,0.22);
  white-space: nowrap;
}

.fb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #1877F2;
  border-radius: 22%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  vertical-align: middle;
  margin-top: 10px;
  color: white;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.fb-icon:hover {
  opacity: 0.88 !important;
  transform: scale(1.07);
  color: white !important;
}

/* ════════════════════════════════════════
   PARCHMENT TRANSITIONS
════════════════════════════════════════ */
.parchment-fade-in {
  display: block;
  height: 72px;
  background: linear-gradient(to bottom, var(--bg), var(--parchment));
}
.parchment-fade-out {
  display: block;
  height: 72px;
  background: linear-gradient(to bottom, var(--parchment), var(--bg-alt));
}

/* ════════════════════════════════════════
   GRAIN TEXTURE
════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ════════════════════════════════════════
   CALLIGRAPHY TEXTURE OVERLAYS
════════════════════════════════════════ */
#about::before {
  content: '';
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 125%;
  background-image: url('Images/Ancient2.JPG');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
#about .container { position: relative; z-index: 1; }

#about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/calligraphy.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 68% 85% at 14% 52%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 68% 85% at 14% 52%, black 0%, transparent 70%);
  filter: invert(1) saturate(0);
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/calligraphy.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 65% 88% at 84% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 65% 88% at 84% 50%, black 0%, transparent 70%);
  filter: invert(1) saturate(0);
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

#conditions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/calligraphy.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 60% 82% at 16% 50%, black 0%, transparent 68%);
  mask-image: radial-gradient(ellipse 60% 82% at 16% 50%, black 0%, transparent 68%);
  filter: invert(1) saturate(0);
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/calligraphy.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 66% 84% at 83% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 66% 84% at 83% 50%, black 0%, transparent 70%);
  filter: invert(1) saturate(0);
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

#reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/calligraphy.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 62% 80% at 15% 52%, black 0%, transparent 68%);
  mask-image: radial-gradient(ellipse 62% 80% at 15% 52%, black 0%, transparent 68%);
  filter: invert(1) saturate(0);
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

#faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/calligraphy.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 62% 82% at 14% 50%, black 0%, transparent 68%);
  mask-image: radial-gradient(ellipse 62% 82% at 14% 50%, black 0%, transparent 68%);
  opacity: 0.07;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

#cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/calligraphy.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 82% 50%, black 0%, transparent 66%);
  mask-image: radial-gradient(ellipse 60% 80% at 82% 50%, black 0%, transparent 66%);
  filter: invert(1) saturate(0);
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/calligraphy.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 16% 50%, black 0%, transparent 66%);
  mask-image: radial-gradient(ellipse 60% 80% at 16% 50%, black 0%, transparent 66%);
  filter: invert(1) saturate(0);
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════════════
   SERVICES FULL PAGE (services.html)
════════════════════════════════════════ */
.service-full {
  padding: var(--pad-v) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-full:last-child { border-bottom: none; }
.services-list .service-full:nth-child(even) { background: var(--bg-alt); }
.services-list .service-full:nth-child(odd)  { background: var(--bg); }
.service-full .container { position: relative; z-index: 1; }
.service-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.services-list .service-full:nth-child(even) .service-full-grid {
  direction: rtl;
}
.services-list .service-full:nth-child(even) .service-full-grid > * {
  direction: ltr;
}
.service-full-img {
  position: relative;
}
.service-full-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.88) saturate(0.82);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
}
.service-full-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.2);
  pointer-events: none;
}
.service-full-body {}

.img-coming-soon img {
  filter: brightness(0.15) saturate(0.2);
}
.coming-soon-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius);
}
.service-full-body .section-label { margin-bottom: 10px; }
.service-full-body h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text);
}
.service-full-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-athlete-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}
.service-athlete-callout .callout-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.service-athlete-callout p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.75;
}
.service-ext-links {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.service-ext-links p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.service-ext-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-ext-links li {
  font-size: 14px;
}
.service-ext-links a {
  color: var(--teal-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.service-ext-links a:hover { color: var(--text); }
.service-ext-links .ext-src {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 6px;
}

/* ════════════════════════════════════════
   FRED PAGE
════════════════════════════════════════ */
.bio-section {
  padding: var(--pad-v) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.bio-section .container { position: relative; z-index: 1; }
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.bio-photo {
  position: relative;
}
.bio-photo-wrap {
  position: relative;
  z-index: 2;
}
.bio-photo-wrap::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.14);
  border-radius: 10px;
  z-index: 0;
}
.bio-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,0.26);
  z-index: 3;
  pointer-events: none;
}
.bio-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.92) saturate(0.85);
  box-shadow: 0 24px 56px rgba(0,0,0,0.44), 0 6px 18px rgba(0,0,0,0.28);
  display: block;
  aspect-ratio: 3 / 4;
}
.bio-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--text);
}
.bio-title {
  font-size: 14px;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  display: block;
}
.bio-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.bio-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.bio-cred-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.bio-cred-item span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.styles-section {
  padding: var(--pad-v) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.styles-section .container { position: relative; z-index: 1; }
.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
}
.style-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}
.style-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.sports-section {
  padding: var(--pad-v) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.sports-section .container { position: relative; z-index: 1; }
.sports-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}
.sports-section p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 700px;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.sports-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.sports-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61,138,122,0.12);
  border: 1px solid rgba(61,138,122,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sports-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.5;
}
.sports-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}
.sports-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ════════════════════════════════════════
   LYNNE PAGE
════════════════════════════════════════ */
.lynne-profile {
  padding: var(--pad-v) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.lynne-profile .container { position: relative; z-index: 1; }
.lynne-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.lynne-visual {
  position: relative;
}
.lynne-visual-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lynne-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  gap: 18px;
}
.lynne-visual-placeholder svg {
  width: 60px;
  height: 60px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1;
  opacity: 0.5;
}
.lynne-visual-placeholder span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}
.lynne-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--text);
}
.lynne-title {
  font-size: 14px;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  display: block;
}
.lynne-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.lynne-modalities {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.lynne-modalities h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.lynne-modality-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.lynne-modality-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.5;
}
.lynne-modality-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.bio-coming-soon {
  padding: var(--pad-v) 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bio-coming-soon .container { position: relative; z-index: 1; }
.bio-coming-soon-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.bio-coming-soon-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.bio-coming-soon-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
}
.bio-coming-soon-inner p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ════════════════════════════════════════
   BOOKING SECTION
════════════════════════════════════════ */
#booking {
  padding: var(--pad-v) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.booking-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.booking-card:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,0.38);
  transform: translateY(-3px);
}
.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.booking-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
  flex: 1;
}
.booking-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════
   PRACTITIONERS
════════════════════════════════════════ */
#practitioners {
  padding: var(--pad-v) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
#practitioners .container { position: relative; z-index: 1; }
.practitioners-photo {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid rgba(201,169,110,0.18);
}
.practitioners-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.9) saturate(0.85);
  display: block;
}
.practitioners-bios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 8px;
}
.practitioner-bio {
  border-top: 2px solid var(--gold);
  padding-top: 28px;
}
.practitioner-bio h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.practitioner-title {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.practitioner-bio p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ════════════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 920px) {
  :root { --pad-v: 72px; }

  .hero-bg video { display: none; }

  .nav-toggle { display: flex; z-index: 10000; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #090c0a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 9999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; color: var(--text); }
  .nav-links .nav-cta { padding: 14px 40px; font-size: 1.1rem; }
  /* Dropdown toggle — centered column under Book Now */
  .nav-book-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .nav-book-wrap.open .book-dropdown { display: flex; }
  .book-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    width: auto;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .book-dropdown a {
    display: block;
    width: 280px;
    text-align: center;
    white-space: nowrap;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 24px;
    letter-spacing: 0.04em;
    transition: background 0.2s ease;
  }
  .book-dropdown a:hover, .book-dropdown a:active {
    background: rgba(201,169,110,0.12);
    color: var(--gold);
  }
  .book-dropdown li + li { border-top: none; }

  .practitioners-bios { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .booking-cards { grid-template-columns: 1fr; }
  .funds-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { aspect-ratio: 4/3; object-position: center 15%; max-height: 340px; width: 100%; }
  .about-photo-wrap::before { right: 0; bottom: -12px; top: 12px; left: 12px; }
  .about-credentials { grid-template-columns: 1fr; }

  .conditions-grid { grid-template-columns: repeat(2, 1fr); gap: 0 24px; }

  .services-grid { grid-template-columns: 1fr; }

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

  .reviews-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-map-wrap iframe { min-height: 260px; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-col--info { grid-column: 1 / -1; }

  .page-hero { min-height: 300px; padding-bottom: 48px; }

  .service-full-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-list .service-full:nth-child(even) .service-full-grid { direction: ltr; }

  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-photo img { aspect-ratio: 1/1; object-position: center 48%; }
  .bio-creds { grid-template-columns: 1fr; }

  .styles-grid { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: 1fr; }

  .lynne-grid { grid-template-columns: 1fr; gap: 40px; }
  .lynne-modality-list { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .hero-content h1 { font-size: 2.6rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; gap: 20px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .bio-coming-soon-inner { padding: 36px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 28px; }
  .footer-col--info { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}
