*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1D2B4E;
  --navy-dark: #0F1929;
  --navy-mid: #253660;
  --gold: #C9A84C;
  --gold-light: #DFC278;
  --cream: #F8F4ED;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-medium: #555;
  --text-light: #888;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: var(--navy-dark);
  padding: 1rem 3rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  height: 68px;
  width: auto;
  transition: height 0.4s ease;
}

nav.scrolled .nav-logo { height: 52px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-apply-link {
  color: var(--gold) !important;
  opacity: 1 !important;
}
.nav-apply-link::after { background: var(--gold); }

.nav-member-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.nav-member-btn:hover,
.nav-member-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* Overlay behind mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 149;
}

.nav-overlay.visible { display: block; }

/* ─── HERO ─── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: url('/course-2.webp') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 18, 38, 0.45) 0%,
    rgba(9, 18, 38, 0.6) 50%,
    rgba(9, 18, 38, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.hero h1 span {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.15em;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
}

.hero-details {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.hero-location {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.countdown-unit {
  text-align: center;
}

.countdown-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
}

.countdown-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 0.4rem;
}

.hero-cta {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: background 0.3s, color 0.3s;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: bounce 2.5s infinite;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-indicator svg { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── STATS BAR ─── */

.stats-bar {
  background: var(--navy);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255,255,255,0.08);
}

.stats-bar-inner {
  display: contents;
}

.stat {
  background: var(--navy);
  padding: 2rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat:last-child { border-right: none; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── SECTION COMMONS ─── */

section { position: relative; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-heading.light { color: var(--white); }

.section-rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.section-rule.centered { margin: 0 auto 2rem; }

.body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  max-width: 640px;
}

.body-text.light {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* ─── ABOUT ─── */

.about {
  background: var(--cream);
  padding: 7rem 0;
  text-align: center;
}

.about .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .body-text { text-align: center; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  margin-top: 4rem;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.08);
}

.pillar {
  background: var(--cream);
  padding: 2.5rem 2rem;
  text-align: center;
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-medium);
}

/* ─── COURSE ─── */

.course {
  background: var(--white);
  padding: 7rem 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.course-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.course-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.course-photos img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  margin-bottom: 2rem;
}

.course-stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.course-stat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.course-stat p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 0.2rem;
}

/* ─── LODGING ─── */

.lodging {
  background: var(--navy-dark);
  padding: 7rem 0;
  color: var(--white);
}

.lodging-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lodging-photos {
  position: relative;
}

.lodging-photo-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.lodging-photo-inset {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border: 4px solid var(--navy-dark);
}

.lodging-includes {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.lodging-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.lodging-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
}

/* ─── FORMAT ─── */

.format {
  background: var(--cream);
  padding: 7rem 0;
  text-align: center;
}

.format .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  width: 100%;
}

.format-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  text-align: left;
  border-top: 3px solid var(--gold);
  position: relative;
}

.format-day {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.format-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.format-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-medium);
}

.format-card .format-number {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(29, 43, 78, 0.06);
  line-height: 1;
}

/* ─── GALLERY ─── */

.gallery {
  background: var(--white);
  padding: 7rem 0;
}

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

.gallery-grid {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.35) transparent;
}

.gallery-grid:active { cursor: grabbing; }

.gallery-grid::-webkit-scrollbar { height: 3px; }
.gallery-grid::-webkit-scrollbar-track { background: transparent; }
.gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.35);
  border-radius: 2px;
}

.gallery-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(9,18,38,0.8), transparent);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

@media (max-width: 640px) {
  .gallery-item { flex: 0 0 260px; }
  .gallery-item img { width: 260px; height: 340px; }
}

/* ─── SPONSORS ─── */

.sponsors {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.sponsors .section-eyebrow { color: rgba(255,255,255,0.4); }

.sponsors h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 3rem;
}

.sponsor-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.sponsor-placeholder {
  width: 160px;
  height: 60px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.sponsors-note {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

.sponsors-cta-link {
  color: var(--gold);
  text-decoration: none;
}

.sponsors-cta-link:hover { text-decoration: underline; }

/* ─── REGISTER ─── */

.register {
  background: var(--navy-dark);
  padding: 7rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.register::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/course-1.webp') center center / cover no-repeat;
  opacity: 0.07;
}

.register .section-inner { position: relative; z-index: 1; }

.register .section-heading.light { margin-bottom: 1.5rem; }

.register .body-text.light {
  margin: 0 auto 4rem;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 4rem;
}

.pricing-card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover { border-color: var(--gold); }

.pricing-card.featured {
  border-color: var(--gold);
}

.pricing-card.featured::before {
  content: 'Most Private';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}

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

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 0.5rem;
}

.pricing-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.pricing-divider {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 1.5rem auto;
}

.pricing-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.register-coming-soon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.register-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2rem 3.5rem;
  transition: background 0.3s;
  cursor: default;
  opacity: 0.6;
}

.register-btn-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}

.register-includes {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.register-includes h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.include-item {
  text-align: center;
  padding: 0;
}

.include-item .include-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.include-item .include-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── FOOTER ─── */

footer {
  background: #080E1A;
  padding: 3rem;
  text-align: center;
  color: rgba(255,255,255,0.25);
}

footer img {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

/* ─── MOBILE ─── */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 201;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  nav.scrolled { padding: 0.85rem 1.5rem; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75vw;
    max-width: 300px;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.35s ease;
    z-index: 150;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.9rem; }

  .nav-toggle { display: flex; }

  .nav-member-btn {
    font-size: 0.6rem;
    padding: 0.45rem 0.8rem;
    gap: 0.35rem;
  }

  .nav-member-btn svg { width: 11px; height: 11px; }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .about-pillars { grid-template-columns: 1fr; }

  .course-layout,
  .lodging-layout { grid-template-columns: 1fr; gap: 3rem; }

  .lodging-photo-inset { display: none; }

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


  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured::before { font-size: 0.55rem; }

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

  .countdown { gap: 1.25rem; }
  .countdown-number { font-size: 2rem; }

  .steps { flex-direction: column; }
  .step-connector { width: 1px; height: 40px; background: rgba(201,168,76,0.3); margin: 0 auto; }

  .apply-layout { grid-template-columns: 1fr; }
  .apply-photo-stack { display: none; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 3rem; }
  .hero h1 span { font-size: 1.5rem; }
  .section-inner { padding: 0 1.25rem; }
  .includes-grid { grid-template-columns: 1fr; }
}

/* ─── HOW TO ATTEND ─── */

.how-to-attend {
  background: var(--white);
  padding: 7rem 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-medium);
}

.step-connector {
  flex-shrink: 0;
  width: 80px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
  margin-top: 2.5rem;
}

/* ─── ITINERARY ─── */

.itinerary {
  background: var(--navy-dark);
  padding: 7rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.itinerary-bg {
  position: absolute;
  inset: 0;
  background: url('/course-1.webp') center center / cover no-repeat;
  opacity: 0.08;
}

.itinerary-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.itinerary-day {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.itinerary-day:last-child { border-right: none; }

.itin-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.itinerary-day h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.itinerary-day p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 900px) {
  .itinerary-days {
    grid-template-columns: 1fr;
  }
  .itinerary-day {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.75rem 1.5rem;
  }
  .itinerary-day:last-child {
    border-bottom: none;
  }
}

/* ─── APPLY CTA SECTION ─── */

.apply-cta-section {
  background: var(--navy-dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.apply-cta-bg {
  position: absolute;
  inset: 0;
  background: url('/course-2.webp') center 70% / cover no-repeat;
  opacity: 0.12;
}

.apply-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.apply-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  transition: background 0.3s;
}

.apply-cta-btn:hover { background: var(--gold-light); }

/* ─── APPLY PAGE ─── */

.apply-hero {
  position: relative;
  height: 42vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  color: var(--white);
  text-align: center;
}

.apply-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/lodge-1.webp') center center / cover no-repeat;
  z-index: 0;
}

.apply-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,18,38,0.5), rgba(9,18,38,0.85));
}

.apply-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 2rem;
}

.apply-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.apply-hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
}

.apply-body {
  background: var(--cream);
  padding: 5rem 0 7rem;
}

.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.apply-context-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.apply-note {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.apply-note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.1rem;
}

.apply-note h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.apply-note p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-medium);
}

.apply-photo-stack {
  margin-top: 2.5rem;
}

.apply-photo-stack img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.apply-form-wrap {
  background: var(--white);
  padding: 3rem;
  border-top: 3px solid var(--gold);
}

.apply-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.apply-form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.apply-form-header p {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.paperform-placeholder {
  border: 2px dashed rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 4rem 2rem;
  text-align: center;
}

.paperform-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.paperform-placeholder p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.paperform-sub {
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
}

/* ─── MEMBERS / PASSWORD WALL ─── */

.pw-wall {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy-dark);
}

.pw-bg {
  position: absolute;
  inset: 0;
  background: url('/course-2.webp') center center / cover no-repeat;
  opacity: 0.06;
}

.pw-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
}

.pw-logo {
  width: 90px;
  height: auto;
  margin-bottom: 2rem;
}

.pw-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pw-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.pw-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pw-input-wrap {
  margin-bottom: 0.5rem;
}

.pw-input-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  padding: 1rem 1.25rem;
  text-align: center;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color 0.2s;
}

.pw-input-wrap input::placeholder { color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }
.pw-input-wrap input:focus { border-color: var(--gold); }

.pw-error {
  font-size: 0.78rem;
  color: #e07070;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: none;
}

.pw-btn {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.pw-btn:hover { background: var(--gold-light); }

.pw-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.pw-note a {
  color: var(--gold);
  text-decoration: none;
}

.pw-note a:hover { text-decoration: underline; }

/* ─── MEMBER CONTENT ─── */

.member-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  color: var(--white);
  text-align: center;
}

.member-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/course-1.webp') center center / cover no-repeat;
}

.member-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,18,38,0.5), rgba(9,18,38,0.85));
}

.member-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 2rem;
}

.member-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.member-body {
  background: var(--navy-dark);
  padding: 5rem 0 7rem;
  color: var(--white);
}

.member-coming-soon {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.member-cs-icon {
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.member-cs-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.member-cs-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.member-pricing {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.member-pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.member-includes {
  text-align: center;
}

.member-pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */

/* ─── Hero entrance (CSS keyframes, no JS needed) ─── */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero .hero-eyebrow  { animation: heroFadeUp 1s   0.35s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero h1             { animation: heroFadeUp 1s   0.6s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .hero-divider  { animation: heroFadeUp 0.8s 0.9s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .hero-details  { animation: heroFadeUp 0.9s 1.05s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .hero-location { animation: heroFadeUp 0.9s 1.15s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .countdown     { animation: heroFadeUp 0.9s 1.35s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .hero-cta      { animation: heroFadeUp 0.9s 1.65s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* ─── Scroll-triggered: base state ─── */

[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-aos="fade-left"]  { transform: translateX(44px); }
[data-aos="fade-right"] { transform: translateX(-44px); }
[data-aos="fade-in"]    { transform: none; }

/* Gold rule: grow from left (or center) */
[data-aos="line-reveal"] {
  transform: scaleX(0);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.4s ease;
  transform-origin: center center;
}

/* Active state — all types */
[data-aos].in-view {
  opacity: 1;
  transform: none;
}

[data-aos="line-reveal"].in-view {
  transform: scaleX(1);
  opacity: 1;
}

/* ─── Card hover lifts ─── */

.format-card {
  transition:
    transform  0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.format-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.pillar {
  transition:
    transform  0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

/* Pricing cards already have transition; add lift */
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

/* ─── Apply CTA button pulse ─── */

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
  50%       { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
}

.apply-cta-btn {
  animation: ctaPulse 3s 2.5s ease-in-out infinite;
}

/* ─── Nav member button lock wiggle ─── */

.nav-member-btn:hover svg {
  animation: lockWiggle 0.4s ease;
}

@keyframes lockWiggle {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25%  { transform: rotate(-10deg) translateY(-1px); }
  75%  { transform: rotate(10deg)  translateY(-1px); }
}

/* ─── Gallery image reveal ─── */

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ─── Footer OptSpot credit ─── */

.footer-credit {
  margin-top: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.18);
}

.footer-credit a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════
   ADA ACCESSIBILITY WIDGET
   ════════════════════════════════════════ */

.ada-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ada-trigger:hover {
  background: var(--navy-mid);
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}

.ada-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.ada-trigger svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.ada-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 499;
  width: 272px;
  background: var(--navy-dark);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom right;
}

.ada-panel.ada-open {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.ada-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.875rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.ada-panel-header span {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ada-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.2rem 0.3rem;
  transition: color 0.2s;
  border-radius: 4px;
}

.ada-close:hover { color: #fff; }

.ada-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.ada-panel-body { padding: 0.5rem 0; }

.ada-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.25rem;
  gap: 1rem;
}

.ada-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  user-select: none;
}

/* Toggle switch */
.ada-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.ada-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s;
}

.ada-toggle[aria-checked="true"] {
  background: var(--gold);
  border-color: var(--gold);
}

.ada-toggle[aria-checked="true"]::after {
  transform: translateX(18px);
  background: #fff;
}

.ada-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Text size controls */
.ada-text-controls {
  display: flex;
  gap: 0.3rem;
}

.ada-btn-text {
  width: 32px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 0.72rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ada-btn-text:hover:not(:disabled) {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
  color: #fff;
}

.ada-btn-text.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.ada-btn-text:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.ada-btn-text:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Reset button */
.ada-reset-wrap {
  padding: 0.65rem 1.25rem 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.ada-reset {
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.ada-reset:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.85);
}

.ada-reset:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── ADA active state overrides ─── */

html.ada-text--1 { font-size: 14px; }
html.ada-text-1  { font-size: 18px; }
html.ada-text-2  { font-size: 20px; }

html.ada-high-contrast                      { filter: contrast(175%); }
html.ada-grayscale                          { filter: grayscale(100%); }
html.ada-high-contrast.ada-grayscale        { filter: contrast(175%) grayscale(100%); }

body.ada-highlight-links a {
  outline: 2px solid var(--gold) !important;
  outline-offset: 2px !important;
  text-decoration: underline !important;
}

body.ada-no-animations *,
body.ada-no-animations *::before,
body.ada-no-animations *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

/* Keep the widget itself responsive even when animations are off */
body.ada-no-animations .ada-panel,
body.ada-no-animations .ada-toggle,
body.ada-no-animations .ada-toggle::after,
body.ada-no-animations .ada-trigger {
  transition-duration: 0.22s !important;
}

/* Mobile */
@media (max-width: 640px) {
  .ada-trigger {
    bottom: 1rem;
    right: 1rem;
    width: 46px;
    height: 46px;
  }

  .ada-trigger svg {
    width: 22px;
    height: 22px;
  }

  .ada-panel {
    right: 0.75rem;
    bottom: 4.5rem;
    width: calc(100vw - 1.5rem);
    max-width: 300px;
  }
}
