:root {
  --navy-950: #07111f;
  --navy-900: #101b2e;
  --navy-800: #16253d;
  --burgundy-900: #431426;
  --burgundy-800: #6f1d35;
  --burgundy-700: #8a2543;
  --gold-700: #a57827;
  --gold-600: #b98a2f;
  --gold-500: #d1a84b;
  --gold-200: #f4df9d;
  --gold-100: #fff2c7;
  --cream-50: #fffaf1;
  --cream-100: #f7edda;
  --ivory: #fffdf8;
  --ink: #182130;
  --muted: #69727f;
  --line: rgba(185, 138, 47, 0.26);
  --line-strong: rgba(185, 138, 47, 0.44);
  --line-dark: rgba(255, 242, 199, 0.23);
  --shadow: 0 30px 90px rgba(7, 17, 31, 0.22);
  --soft-shadow: 0 18px 50px rgba(7, 17, 31, 0.10);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 8%, rgba(209, 168, 75, 0.15), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(111, 29, 53, 0.07), transparent 32%),
    linear-gradient(180deg, var(--cream-50) 0%, #fff 45%, var(--cream-100) 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(185, 138, 47, 0.18);
}

.nav-shell {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy-950);
}

.brand-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-text::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--burgundy-800));
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(24, 33, 48, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--burgundy-800);
  background: rgba(185, 138, 47, 0.12);
}

.nav-links .nav-cta {
  margin-left: 4px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--burgundy-800), var(--navy-950));
  box-shadow: 0 14px 30px rgba(67, 20, 38, 0.20);
}

.nav-links .nav-cta:hover {
  color: var(--ivory);
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--burgundy-700), var(--navy-800));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-950);
  border-radius: 10px;
  transition: 180ms ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 90px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.99) 0%, rgba(28, 19, 38, 0.98) 52%, rgba(67, 20, 38, 0.98) 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(209, 168, 75, 0.78), transparent);
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: -180px;
  right: 2%;
  background: radial-gradient(circle, rgba(209, 168, 75, 0.27), transparent 64%);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  bottom: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 242, 199, 0.13), transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 790px;
  font-size: clamp(3rem, 6.8vw, 6.1rem);
}

h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

h3 {
  color: var(--navy-950);
  font-size: 1.48rem;
}

.hero-lead {
  max-width: 700px;
  margin: 26px 0 10px;
  color: rgba(255, 253, 248, 0.94);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-weight: 600;
}

.hero-body {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  box-shadow: 0 18px 42px rgba(209, 168, 75, 0.25);
}

.button-secondary {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 242, 199, 0.32);
}

.button-secondary:hover {
  border-color: rgba(255, 242, 199, 0.55);
}

.button-light {
  color: var(--navy-950);
  background: var(--ivory);
  box-shadow: 0 18px 38px rgba(7, 17, 31, 0.18);
  white-space: nowrap;
}

.hero-photo-card {
  position: relative;
  width: min(430px, 100%);
  justify-self: end;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 242, 199, 0.26);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.09);
  box-shadow: var(--shadow);
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: -1;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(209, 168, 75, 0.78), rgba(111, 29, 53, 0.55), rgba(255, 242, 199, 0.16));
}

.coach-portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 242, 199, 0.42);
  box-shadow: 0 24px 54px rgba(7, 17, 31, 0.28);
}

.intro-section,
.approach-section,
.credentials-section,
.faq-section,
.booking-section {
  padding: 88px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.section-heading h2 {
  max-width: 550px;
}

.rich-card,
.feature-card,
.credentials-card,
.booking-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--soft-shadow);
}

.rich-card {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.rich-card p {
  margin: 0;
  color: rgba(24, 33, 48, 0.78);
  font-size: 1.08rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stats-row div {
  padding: 18px 16px;
  border: 1px solid rgba(185, 138, 47, 0.20);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(209, 168, 75, 0.13), rgba(111, 29, 53, 0.04));
}

.stats-row strong {
  display: block;
  color: var(--burgundy-800);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.15rem;
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.approach-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.34), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 85% 0%, rgba(111, 29, 53, 0.09), transparent 30%);
}

.center-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.center-heading p:last-child {
  max-width: 670px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-md);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy-800), var(--gold-500));
}

.feature-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(111, 29, 53, 0.24);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
}

.feature-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.credentials-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 237, 218, 0.88)),
    radial-gradient(circle at 90% 20%, rgba(209, 168, 75, 0.20), transparent 30%);
}

.credentials-copy p {
  margin: 0;
  color: rgba(24, 33, 48, 0.76);
}

.credentials-copy p + p {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--burgundy-800);
  font-weight: 800;
  border-bottom: 1px solid rgba(111, 29, 53, 0.35);
}

.faq-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(209, 168, 75, 0.13), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(111, 29, 53, 0.20), transparent 32%),
    var(--navy-950);
  color: var(--ivory);
}

.faq-section h2,
.faq-section h3 {
  color: var(--ivory);
}

.faq-section .center-heading p:last-child {
  color: rgba(255, 253, 248, 0.68);
}

.faq-toolbar {
  max-width: 760px;
  margin: 0 auto 26px;
}

.faq-toolbar label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-100);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq-toolbar input {
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 242, 199, 0.22);
  border-radius: 999px;
  outline: none;
  transition: 180ms ease;
}

.faq-toolbar input::placeholder {
  color: rgba(255, 253, 248, 0.46);
}

.faq-toolbar input:focus {
  border-color: rgba(209, 168, 75, 0.8);
  box-shadow: 0 0 0 4px rgba(209, 168, 75, 0.12);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-button {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ivory);
  text-align: left;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 242, 199, 0.18);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: 180ms ease;
}

.faq-button:hover,
.faq-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(209, 168, 75, 0.58);
  background: rgba(255, 255, 255, 0.11);
  outline: none;
}

.faq-button span:first-child {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.faq-button span:last-child {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  border-radius: 50%;
  font-weight: 800;
}

.no-results {
  grid-column: 1 / -1;
  padding: 28px;
  color: rgba(255, 253, 248, 0.72);
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 242, 199, 0.26);
  border-radius: var(--radius-md);
}

.booking-section {
  padding-bottom: 106px;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 44px;
  color: var(--ivory);
  border-color: rgba(209, 168, 75, 0.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.99), rgba(28, 19, 38, 0.97) 60%, rgba(111, 29, 53, 0.92));
  box-shadow: var(--shadow);
}

.booking-card h2 {
  color: var(--ivory);
}

.booking-card p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.76);
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 253, 248, 0.74);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 242, 199, 0.14);
}

.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
}

.footer-inner {
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  gap: 18px;
}

.footer-links a {
  color: var(--gold-100);
  font-weight: 800;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  background: rgba(7, 17, 31, 0.76);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 820px);
  overflow: auto;
  padding: 38px;
  border: 1px solid rgba(209, 168, 75, 0.38);
  border-radius: 30px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 250, 241, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(209, 168, 75, 0.18), transparent 34%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--burgundy-800), var(--navy-950));
  border: 1px solid rgba(209, 168, 75, 0.34);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.modal h3 {
  max-width: 620px;
  padding-right: 26px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3rem);
}

.modal-body {
  margin-top: 22px;
  color: rgba(24, 33, 48, 0.82);
  font-size: 1rem;
}

.modal-body p {
  margin: 0 0 16px;
}

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

.modal-body ul {
  margin: 12px 0 0;
  padding-left: 1.25rem;
}

.modal-body li {
  margin: 8px 0;
}

.modal-body strong {
  color: var(--burgundy-800);
}

.modal-body a {
  color: var(--burgundy-800);
  font-weight: 800;
  border-bottom: 1px solid rgba(111, 29, 53, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .split-section,
  .credentials-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-photo-card {
    justify-self: start;
    width: min(400px, 100%);
  }

  .credentials-card {
    gap: 24px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 9px 10px;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 61;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    z-index: 60;
    display: grid;
    gap: 8px;
    padding: 16px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: 180ms ease;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    margin: 0;
    padding: 12px 14px;
  }

  .hero-section {
    padding-top: 76px;
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--max-width));
  }

  .brand-text {
    gap: 10px;
    font-size: 1.3rem;
  }

  .brand-text::before {
    width: 24px;
  }

  .hero-section {
    padding: 64px 0 66px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 18px;
    text-align: center;
  }

  .hero-photo-card {
    width: min(320px, 100%);
    justify-self: center;
    padding: 10px;
  }

  .intro-section,
  .approach-section,
  .credentials-section,
  .faq-section,
  .booking-section {
    padding: 68px 0;
  }

  .rich-card,
  .credentials-card,
  .booking-card,
  .modal {
    padding: 26px;
    border-radius: 24px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .faq-button {
    min-height: 76px;
    padding: 18px;
  }

  .modal-overlay {
    padding: 14px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
