:root {
  --ink: #111827;
  --muted: #687184;
  --paper: #f7f4ec;
  --cream: #ece6d8;
  --navy: #111d38;
  --navy-2: #182747;
  --blue: #4950bc;
  --gold: #d1ad5f;
  --gold-2: #a9792f;
  --line: rgba(17, 29, 56, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 29, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  background: rgba(17, 29, 56, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(209, 173, 95, 0.2);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(17, 29, 56, 0.97);
  box-shadow: 0 12px 36px rgba(17, 29, 56, 0.18);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  letter-spacing: 0.12em;
}

.brand-emblem {
  align-items: center;
  height: 42px;
  object-fit: cover;
  object-position: center;
  width: 42px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 22px;
}

.hero {
  color: var(--white);
  background: var(--navy);
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 29, 56, 0.94) 0%, rgba(17, 29, 56, 0.78) 42%, rgba(17, 29, 56, 0.5) 72%),
    linear-gradient(0deg, rgba(17, 29, 56, 0.82) 0%, rgba(17, 29, 56, 0.2) 50%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 820px;
  padding: 21vh clamp(20px, 6vw, 74px) 96px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.experience h2,
.contact h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(66px, 11vw, 142px);
  letter-spacing: 0.1em;
  line-height: 0.9;
  margin: 0 0 26px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 650px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button-primary {
  background: linear-gradient(135deg, #f3d983, var(--gold));
  color: var(--navy);
}

.button-primary:hover {
  background: #cba76c;
}

.button-secondary {
  border: 1px solid rgba(209, 173, 95, 0.54);
  color: var(--white);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 88px clamp(20px, 5vw, 54px);
}

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

.intro-grid,
.experience-grid,
.contact-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
}

.intro h2,
.experience h2,
.contact h2,
.section-heading h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  margin: 0;
}

.intro p,
.experience-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.services,
.plans {
  background: var(--paper);
}

.section-heading {
  max-width: 800px;
}

.service-grid,
.plan-grid {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

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

.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 46px rgba(17, 29, 56, 0.08);
  padding: 28px;
}

.service-card {
  min-height: 230px;
}

.service-number {
  color: var(--blue);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 44px;
}

.service-card h3,
.plan-card h3,
.timeline h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.service-card p,
.plan-card p,
.timeline p {
  color: var(--muted);
  margin: 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: 6px;
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 22px;
}

.timeline-item span {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.plan-card {
  min-height: 230px;
}

.plan-card.featured {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-12px);
}

.plan-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.plan-card a {
  color: var(--blue);
  display: inline-block;
  font-weight: 800;
  margin-top: 28px;
}

.plan-card.featured a {
  color: var(--gold);
}

.experience-image {
  border: 1px solid rgba(17, 29, 56, 0.12);
  border-radius: 6px;
  margin-top: 28px;
  max-height: 430px;
  object-fit: cover;
  width: 100%;
}

.experience-copy h2 {
  margin-bottom: 26px;
}

.membership {
  background: var(--cream);
}

.membership-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
}

.membership h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  margin: 0;
}

.membership-copy {
  border-left: 4px solid var(--gold);
  display: grid;
  gap: 18px;
  padding-left: 28px;
}

.membership-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

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

.membership-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 46px rgba(17, 29, 56, 0.08);
  min-height: 230px;
  padding: 28px;
}

.membership-card.featured {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-12px);
}

.membership-card h3 {
  font-size: 20px;
  margin: 0 0 14px;
}

.membership-card p {
  color: var(--muted);
  margin: 0;
}

.membership-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.membership-price {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 18px !important;
}

.membership-card.featured .membership-price {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
}

.form-trap {
  display: none;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(23, 32, 28, 0.16);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(73, 80, 188, 0.14);
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.form-note {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  min-height: 22px;
}

.site-footer {
  align-items: center;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 54px);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(17, 29, 56, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 10px 20px 20px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 190px;
  }

  .intro-grid,
  .experience-grid,
  .contact-grid,
  .service-grid,
  .plan-grid,
  .membership-grid,
  .membership-cards {
    grid-template-columns: 1fr;
  }

  .service-card,
  .plan-card {
    min-height: 0;
  }

  .plan-card.featured,
  .membership-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    font-size: 15px;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .membership-copy {
    padding-left: 20px;
  }
}
