@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --ink: #172231;
  --ink-2: #243447;
  --muted: #5f6b79;
  --line: #e5e9ee;
  --soft: #f6f8fa;
  --soft-2: #eef4f2;
  --gold: #ad8a3b;
  --gold-dark: #8f6f2c;
  --sage: #55756d;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(23, 34, 49, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-name {
  font-size: 1.14rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: var(--gold-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: #cdd5dd;
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.hero {
  padding: 82px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(246, 248, 250, 0.88), rgba(255, 255, 255, 0) 54%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 64px;
  align-items: center;
}

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

.page-kicker {
  max-width: 760px;
}

h1,
h2,
h3,
.serif {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.13rem, 1.8vw, 1.44rem);
  line-height: 1.45;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.visual-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 34, 49, 0.84), rgba(36, 52, 71, 0.58)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=82") center / cover;
  box-shadow: var(--shadow);
}

.visual-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  backdrop-filter: blur(18px);
}

.visual-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.visual-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--soft);
}

.section-sage {
  background: var(--soft-2);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

.section-title {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.3rem);
  font-weight: 650;
}

.section-lede {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(23, 34, 49, 0.04);
}

.card:hover {
  border-color: #d5c49c;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
  background: #f8f4ec;
  border-radius: 10px;
}

.card h3,
.card h4 {
  margin: 0 0 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.meta {
  display: block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
}

.check-list i {
  margin-top: 5px;
  color: var(--gold-dark);
}

.program {
  border-top: 1px solid var(--line);
}

.program-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 48px;
}

.module-number {
  display: block;
  margin-bottom: 8px;
  color: rgba(173, 138, 59, 0.24);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 0.86;
}

.program h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.pill {
  padding: 7px 11px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.timeline div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline strong {
  color: var(--ink);
}

.quote-panel {
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: var(--white);
  color: var(--muted);
  font-style: italic;
}

.bio-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.bio-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.caption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.contact-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.booking-box {
  display: inline-block;
  margin: 22px 0;
  padding: 18px 24px;
  border: 1px dashed #c9d1da;
  border-radius: 12px;
  color: var(--muted);
  background: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-embed {
  min-height: 520px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding: 54px 0 44px;
  }

  .hero-grid,
  .section-grid,
  .program-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .visual-panel {
    min-height: 390px;
  }

  .cards,
  .cards.two,
  .split-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .visual-panel {
    min-height: 330px;
  }

  .contact-panel {
    padding: 28px 20px;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
