:root {
  --cream: #F3EEE4;
  --cream-light: #FAF7F1;
  --paper: #EBE4D6;
  --ink: #161513;
  --ink-mid: #2A2925;
  --ink-soft: #3A3832;
  --muted: #5A564C;
  --gold: #C4A36A;
  --gold-deep: #8A6B3C;
  --gold-light: #D4B483;
  --gold-pale: #E8D5B0;
  --line: #D6CCB8;
  --line-strong: #C4B89F;
  --charcoal: #161513;
  --charcoal-mid: #242320;
  --charcoal-light: #3A3832;
  --olive: #4F5D40;
  --white: #FFFcf7;
  --max: 1120px;
  --gutter: 28px;
  --section: 112px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* LOADING SCREEN */
#loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.loader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: loaderGrow 1.5s ease forwards 0.3s;
}
@keyframes loaderGrow { to { width: 120px; } }
.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px max(var(--gutter), calc((100% - var(--max)) / 2));
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled, nav.solid {
  background: rgba(22,21,19,0.94);
  backdrop-filter: blur(16px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: rgba(196,163,106,0.18);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--cream);
  text-transform: uppercase;
  text-decoration: none;
  z-index: 2;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,241,0.88);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 11px 22px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  z-index: 2;
  font-weight: 500;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 18px;
  position: relative;
  z-index: 2;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--cream);
  position: absolute;
  transition: 0.3s;
}
.nav-toggle span { top: 8px; }
.nav-toggle span::before { content: ''; top: -8px; }
.nav-toggle span::after { content: ''; top: 8px; }

/* HERO */
#hero, .page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero {
  height: 100vh;
  min-height: 680px;
}
.page-hero {
  height: 56vh;
  min-height: 400px;
  padding: 88px var(--gutter) 56px;
}
.hero-bg, .page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg, .page-hero.loaded .page-hero-bg { transform: scale(1); }
.hero-content, .page-hero-content {
  position: relative;
  text-align: center;
  color: var(--cream-light);
  padding: 0 24px;
  max-width: 760px;
}
.hero-eyebrow, .page-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 22px;
  font-weight: 400;
}
.hero-eyebrow {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.8s;
}
.hero-title, .page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  color: #FFFaf3;
  text-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.hero-title {
  font-size: clamp(44px, 6.4vw, 80px);
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 2s;
}
.page-title { font-size: clamp(38px, 5.5vw, 64px); }
.hero-title em, .page-title em { font-style: italic; color: var(--gold-pale); }
.section-title em { color: inherit; font-style: italic; }
.hero-sub, .page-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: rgba(255,250,243,0.92);
  margin-bottom: 40px;
}
.hero-sub {
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 2.2s;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 2.4s;
}
.btn-primary, .btn-outline, .btn-ghost {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 32px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.3s, border-color 0.3s, color 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}
.btn-primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  color: #FFFaf3;
  background: transparent;
  border-color: rgba(255,250,243,0.7);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
  transform: translateY(-1px);
}
.btn-ghost,
#resort .btn-outline,
.section-cream .btn-outline,
.section-light .btn-outline,
#pricing .btn-outline,
#testimonials .btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}
.btn-ghost:hover,
#resort .btn-outline:hover,
.section-cream .btn-outline:hover,
.section-light .btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-mid); color: var(--gold-pale); }
.hero-limit {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 2.6s;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 3s;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,250,243,0.7);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* SECTION COMMONS */
section { position: relative; }
.wrap,
.experience-inner,
.courses-header,
.section-header-row,
.tours-grid,
.courses-grid,
.resort-inner,
.itinerary-inner,
.pricing-inner,
.video-inner,
.testimonials-inner,
.footer-inner,
.final-cta-inner,
.terms-wrap {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
}
.section-dark .section-eyebrow,
#courses .section-eyebrow,
#itinerary .section-eyebrow,
#final-cta .section-eyebrow,
.page-hero .section-eyebrow {
  color: var(--gold-pale);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.section-title.light { color: #FFFaf3; }
.section-title.light em { color: var(--gold-pale); }
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold-deep);
  margin: 22px 0 28px;
}
.section-dark .gold-rule,
#courses .gold-rule,
#itinerary .gold-rule,
#final-cta .gold-rule { background: var(--gold); }
.gold-rule.centered { margin: 22px auto 28px; }
.body-copy,
.experience-body,
.resort-body,
.team-bio,
.terms-wrap p,
.terms-wrap li {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 400;
}
.body-copy p + p { margin-top: 18px; }
.section-lede {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,250,243,0.82);
  max-width: 340px;
  font-weight: 400;
}

/* ABOUT / EXPERIENCE */
#experience, .section-cream {
  background: var(--cream-light);
  padding: var(--section) 0;
}
.experience-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
.experience-img {
  position: relative;
  height: 520px;
}
.experience-img-main {
  width: 86%;
  height: 100%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 50px rgba(22,21,19,0.12);
}
.experience-img-accent {
  position: absolute;
  bottom: 24px;
  right: 0;
  width: 48%;
  height: 42%;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--cream-light);
  box-shadow: 0 16px 40px rgba(22,21,19,0.16);
}
.experience-text { padding-bottom: 8px; }
.experience-body { margin-bottom: 28px; }
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}
.highlight-item {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.highlight-icon {
  width: 34px;
  height: 34px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.highlight-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.35;
}
.highlight-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 3px;
}
.section-dark .highlight-label { color: #FFFaf3; }
.section-dark .highlight-sub { color: rgba(255,250,243,0.72); }
.section-dark .highlight-item { border-top-color: rgba(255,250,243,0.14); }

.affiliates {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.affiliates img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.75;
}

/* COURSES / TOURS GRID */
#courses, .section-dark {
  background: var(--ink);
  padding: var(--section) 0;
}
.courses-header, .section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.tours-grid, .courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (min-width: 1025px) {
  .courses-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .courses-grid .course-card { grid-column: span 2; }
  .courses-grid .course-card:nth-child(4):nth-last-child(2) { grid-column: 2 / span 2; }
  .courses-grid .course-card:nth-child(5):last-child { grid-column: 4 / span 2; }
}
.course-card, .tour-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  background: var(--charcoal-mid);
}
.course-bg, .tour-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.course-card:hover .course-bg,
.tour-card:hover .tour-bg { transform: scale(1.05); }
.course-overlay, .tour-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,15,13,0.96) 0%, rgba(16,15,13,0.62) 42%, rgba(16,15,13,0.18) 72%, rgba(16,15,13,0.08) 100%);
}
.course-content, .tour-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 26px 26px;
}
.course-num, .tour-cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-pale);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.course-name, .tour-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #FFFaf3;
  line-height: 1.15;
  margin-bottom: 10px;
}
.course-desc, .tour-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,250,243,0.86);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: none;
  opacity: 1;
}
.course-tag, .tour-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 5px 11px;
  margin-top: 14px;
  opacity: 1;
  transform: none;
  font-weight: 500;
}
.tour-tag.waitlist { background: var(--gold-pale); }
.tours-hero .page-hero-content { max-width: 820px; }
.page-hero.tours-hero { height: auto; min-height: 68vh; padding-bottom: 64px; }
.tours-stats { background: var(--charcoal); }
.tours-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 0;
}
.tours-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 8px;
}
.tours-stat-l {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
.tours-head { max-width: 640px; margin-bottom: 8px; }
.tours-lede {
  color: rgba(245,240,232,0.7);
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
}
.tour-card { height: 460px; }
.tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,250,243,0.55);
}
.tour-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.tour-more {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.interest-band {
  background: #100F0D;
  padding: var(--section) 0;
}
.interest-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.interest-copy {
  color: rgba(245,240,232,0.72);
  font-size: 16.5px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}
.interest-points {
  list-style: none;
  display: grid;
  gap: 12px;
}
.interest-points li {
  color: rgba(245,240,232,0.82);
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}
.interest-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
}
.interest-card {
  background: var(--cream-light);
  padding: 40px 36px 32px;
  color: var(--ink);
}
.interest-card-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.interest-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 10px;
}
.interest-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.interest-card .field { margin-bottom: 14px; }
.interest-card .btn-primary { width: 100%; text-align: center; margin-top: 8px; }
.interest-fine {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.how-item {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.how-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.how-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
.how-item p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.how-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-tab {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: 0.25s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.filter-tabs.light .filter-tab {
  color: rgba(255,250,243,0.82);
  border-color: rgba(255,250,243,0.28);
}
.filter-tabs.light .filter-tab:hover,
.filter-tabs.light .filter-tab.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* RESORT / INDEPENDENT */
#resort, .section-light {
  background: var(--cream);
  padding: var(--section) 0;
  overflow: hidden;
}
.resort-header { margin-bottom: 56px; }
.resort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.resort-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 170px;
  gap: 10px;
}
.resort-img {
  background: var(--paper);
  background-size: cover;
  background-position: center;
}
.resort-img.large { grid-column: 1 / 2; grid-row: 1 / 3; }
.resort-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.resort-sub-name {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
  font-weight: 500;
}
.resort-body { margin-bottom: 28px; }
.resort-amenities { display: flex; flex-direction: column; }
.amenity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.amenity-dot {
  width: 6px; height: 6px;
  background: var(--gold-deep);
  flex-shrink: 0;
}

/* FEATURE PANELS */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  max-width: 860px;
}
.feature-panel {
  border: 1px solid rgba(255,250,243,0.16);
  padding: 32px 28px;
  background: rgba(255,250,243,0.04);
}
.feature-panel .highlight-item { border: none; padding: 0; }

/* ITINERARY */
#itinerary, .section-mid {
  background: var(--charcoal-mid);
  padding: var(--section) 0;
}
.itinerary-inner { max-width: 820px; }
.itinerary-header { text-align: center; margin-bottom: 56px; }
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  margin-bottom: 44px;
  align-items: center;
}
.timeline-item:nth-child(even) .tl-left { order: 3; text-align: left; }
.timeline-item:nth-child(even) .tl-center { order: 2; }
.timeline-item:nth-child(even) .tl-right { order: 1; text-align: right; }
.tl-left { text-align: right; padding-right: 28px; }
.tl-right { padding-left: 28px; }
.tl-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-dot {
  width: 11px; height: 11px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.tl-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.45;
}
.tl-date {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 6px;
  font-weight: 500;
}
.tl-course {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #FFFaf3;
  margin-bottom: 4px;
}
.tl-detail {
  font-size: 13px;
  color: rgba(255,250,243,0.72);
  letter-spacing: 0.03em;
}

/* PRICING */
#pricing { background: var(--cream); padding: var(--section) 0; }
.pricing-inner {
  max-width: 820px;
  text-align: center;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin: 28px 0 8px;
  letter-spacing: -0.02em;
}
.price-amount sup {
  font-size: 0.38em;
  vertical-align: super;
  color: var(--gold-deep);
}
.price-basis {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
  font-weight: 400;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 44px;
  border: none;
}
.includes-item {
  padding: 28px 16px;
  text-align: center;
  background: var(--cream-light);
  border: 1px solid var(--line);
}
.includes-item:last-child { border-right: 1px solid var(--line); }
.includes-icon { font-size: 22px; margin-bottom: 10px; }
.includes-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 500;
}

.panel {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

/* VIDEO */
#video-section { background: var(--ink); padding: var(--section) 0; text-align: center; }
.video-inner { max-width: 1000px; }
.video-header { margin-bottom: 48px; }
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--charcoal-mid);
  overflow: hidden;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-size: cover;
  background-position: center;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(16,15,13,0.62);
}
.play-btn {
  position: relative;
  width: 76px; height: 76px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.play-btn:hover { background: var(--gold-light); transform: scale(1.04); }
.play-btn svg { width: 26px; fill: var(--ink); margin-left: 4px; }
.video-label {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FFFaf3;
}

/* TESTIMONIALS */
#testimonials { background: var(--cream-light); padding: var(--section) 0; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  padding: 44px 32px 36px;
  position: relative;
  border: 1px solid var(--line);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold-deep);
  opacity: 0.35;
  position: absolute;
  top: 8px; left: 22px;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 0;
  position: relative;
}
.testimonial-author {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.testimonial-detail {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.45;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.team-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
}
.team-photo {
  height: 320px;
  background-size: cover;
  background-position: top center;
}
.team-info { padding: 28px 24px 32px; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--ink);
}
.team-role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  font-weight: 500;
}
.team-bio {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

.clamp-wrap {
  position: relative;
  margin-bottom: 18px;
}
.testimonial-card .clamp-wrap { margin-bottom: 22px; }
.clamp-wrap.is-collapsed .team-bio,
.clamp-wrap.is-collapsed .testimonial-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.clamp-wrap.is-collapsed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.6em;
  background: linear-gradient(to bottom, rgba(255,252,247,0), var(--white));
  pointer-events: none;
}
.text-expand {
  display: inline-block;
  margin: -6px 0 16px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  cursor: pointer;
  transition: color 0.25s;
}
.testimonial-card .text-expand { margin-bottom: 18px; }
.text-expand:hover { color: var(--ink); }
.text-expand::after { content: ' +'; }
.clamp-wrap.is-expanded + .text-expand::after { content: ' −'; }
.team-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-links a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}
.team-links a:hover { color: var(--gold-deep); }

/* FORMS */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-deep);
}
.field input::placeholder, .field textarea::placeholder { color: #8A8578; }
.field select {
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A6B3C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}
.form-success {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--olive);
  margin-top: 16px;
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 36px;
}
.contact-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-block h3 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-block a, .contact-block p {
  font-size: 16px;
  text-decoration: none;
  line-height: 1.65;
  color: var(--ink-soft);
}
.contact-block a:hover { color: var(--gold-deep); }

/* TERMS */
.terms-wrap {
  max-width: 760px;
  padding-bottom: var(--section);
}
.terms-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin: 40px 0 12px;
  color: var(--ink);
}
.terms-wrap ul { padding-left: 20px; margin: 12px 0 20px; }
.terms-wrap li { margin-bottom: 8px; }
.terms-wrap a { color: var(--gold-deep); }

/* TOUR DETAIL */
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}
.tour-meta span {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
}
.tour-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.detail-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.pdf-frame {
  width: 100%;
  min-height: 72vh;
  border: 1px solid var(--line);
  background: var(--cream-light);
  margin-top: 8px;
}

/* CATALOG TOUR PAGE */
.page-hero.tp-hero { height: auto; min-height: 88vh; padding-bottom: 72px; }
.tp-facts {
  background: var(--charcoal);
  border-top: 1px solid rgba(232,213,176,0.14);
  border-bottom: 1px solid rgba(232,213,176,0.08);
}
.tp-facts-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px 20px;
  padding: 28px 0;
}
.tp-fact-k {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.tp-fact-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--cream);
  line-height: 1.25;
}
.tp-block { padding: var(--section) 0; }
.tp-jump {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 72px;
  z-index: 20;
}
.tp-jump-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 14px 0;
}
.tp-jump a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.tp-jump a:hover { color: var(--gold-deep); }
.tp-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.tp-signup {
  background: #161513;
  color: var(--cream);
  padding: 32px 28px 28px;
  position: sticky;
  top: 132px;
}
.tp-signup-status {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 10px;
  margin-bottom: 14px;
  font-weight: 500;
}
.tp-signup-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 8px;
}
.tp-signup h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}
.tp-signup > p {
  color: rgba(245,240,232,0.68);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.tp-signup-facts {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232,213,176,0.14);
}
.tp-signup-facts div { display: grid; grid-template-columns: 72px 1fr; gap: 10px; }
.tp-signup-facts dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}
.tp-signup-facts dd { font-size: 15px; color: #FFFaf3; }
.tp-signup .field label { color: var(--gold-pale); }
.tp-signup .field { margin-bottom: 12px; }
.tp-signup .btn-primary { width: 100%; text-align: center; }
.tp-signup-alt {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.tp-signup-fine {
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  margin-top: 14px;
  line-height: 1.5;
}
.tp-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
.tp-kicker {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 16px;
}
.tp-highlights { display: grid; gap: 14px; }
.tp-highlight {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 20px 22px;
}
.tp-highlight-k {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.tp-highlight-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}
.tp-dark { background: var(--charcoal); color: var(--cream); }
.tp-dark .gold-rule { background: var(--gold); }
.tp-dark .section-eyebrow, .section-eyebrow.light { color: var(--gold-pale); }
.section-cream#itinerary .section-eyebrow { color: var(--gold-deep); }
.section-cream#itinerary .section-title { color: var(--ink); }
.tp-itinerary-note {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 8px 0 40px;
}
.tp-itinerary-note.light { color: rgba(243,238,228,0.62); }
.tp-days { display: flex; flex-direction: column; gap: 0; }
.tp-day {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.tp-dark .tp-day { border-top-color: rgba(232,213,176,0.12); }
.tp-day-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.tp-day-date {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.tp-dark .tp-day-date { color: var(--gold-pale); }
.tp-day-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}
.tp-day-copy {
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}
.tp-dark .tp-day-copy { color: rgba(243,238,228,0.62); }
.tp-pdf {
  margin-top: 36px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--cream-light);
}
.tp-dark .tp-pdf { background: rgba(255,252,247,0.04); border-color: rgba(232,213,176,0.16); }
.tp-pdf-k {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.tp-dark .tp-pdf-k { color: var(--gold-pale); }
.tp-pdf-v { font-size: 14px; color: var(--muted); max-width: 520px; line-height: 1.6; }
.tp-dark .tp-pdf-v { color: rgba(243,238,228,0.62); }
.tp-includes, .tp-amenity {
  list-style: none;
  display: grid;
  gap: 14px;
}
.tp-includes li, .tp-amenity li {
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-soft);
}
.tp-includes li::before, .tp-amenity li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
}
.tp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.tp-shot {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}
.tp-courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.tp-course {
  border: 1px solid rgba(232,213,176,0.16);
  padding: 22px 20px;
  background: rgba(255,252,247,0.03);
}
.tp-course-date {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.tp-course-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.tp-course p { color: rgba(243,238,228,0.62); font-size: 14px; line-height: 1.65; }
.tp-price-band { background: var(--cream-light); }
.tp-price-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}
.tp-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1;
  color: var(--ink);
  margin: 12px 0 8px;
}
.tp-price-note { color: var(--muted); margin-bottom: 0; }
.tp-cta { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; text-align: center; }
.tp-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.tp-cta-inner { position: relative; z-index: 1; padding: 80px var(--gutter); max-width: 760px; }
.tp-stickbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: #100F0D;
  border-top: 1px solid rgba(232,213,176,0.16);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(245,240,232,0.7);
  font-size: 13px;
}
.tp-stickbar .btn-primary { padding: 12px 20px; }

/* FINAL CTA */
#final-cta {
  position: relative;
  padding: 132px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.final-cta-inner { position: relative; max-width: 720px; }
.final-cta-inner .section-title { color: #FFFaf3; }
.final-cta-sub {
  font-size: 17px;
  letter-spacing: 0.03em;
  color: rgba(255,250,243,0.88);
  line-height: 1.7;
  margin: 0 auto 40px;
  max-width: 520px;
}
.final-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: #100F0D;
  padding: 72px 0 32px;
  color: rgba(250,247,241,0.72);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 0.9fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,250,243,0.12);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: #FFFaf3;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(250,247,241,0.72);
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFaf3;
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a, .footer-contact a {
  font-size: 14px;
  color: rgba(250,247,241,0.72);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a { display: block; margin-bottom: 8px; line-height: 1.5; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-pale); }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,250,243,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}
.social-link:hover { border-color: var(--gold); background: rgba(196,163,106,0.12); }
.social-link svg { width: 14px; height: 14px; stroke: rgba(250,247,241,0.8); fill: none; }
.social-link:hover svg { stroke: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250,247,241,0.5);
  gap: 16px;
  flex-wrap: wrap;
}

/* FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  padding: 13px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: background 0.3s, color 0.3s;
  font-weight: 500;
  border: 1px solid rgba(196,163,106,0.35);
}
.floating-cta a:hover { background: var(--gold); color: var(--ink); }
.floating-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.floating-cta a:hover .floating-dot { background: var(--ink); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.deco-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.deco-line::before, .deco-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.deco-line span {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
  font-weight: 500;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.stat-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--line);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.stat-num span { color: var(--gold-deep); }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

.hidden-card { display: none !important; }

.center-actions { text-align: center; margin-top: 44px; }

/* MOBILE */
@media (max-width: 1024px) {
  :root { --section: 88px; --gutter: 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16,15,13,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .experience-inner, .resort-grid, .contact-grid, .detail-split, .feature-grid, .tp-split, .tp-layout, .interest-grid, .how-grid, .how-split, .tours-stats-row { grid-template-columns: 1fr; gap: 40px; }
  .tp-signup { position: relative; top: auto; }
  .tp-jump { top: 0; }
  .tp-price-inner { flex-direction: column; align-items: flex-start; }
  .tp-stickbar { display: flex; }
  body:has(.tp-stickbar) { padding-bottom: 76px; }
  .tp-pdf { flex-direction: column; align-items: flex-start; }
  .tp-day { grid-template-columns: 48px 1fr; gap: 16px; }
  .experience-img { height: 360px; order: -1; }
  .experience-img-main { width: 100%; }
  .experience-img-accent { display: none; }
  .courses-grid, .tours-grid { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 12px; }
  .timeline-item { grid-template-columns: 24px 1fr; }
  .tl-right, .timeline-item:nth-child(even) .tl-right { display: none; }
  .tl-left, .timeline-item:nth-child(even) .tl-left { order: 1; text-align: left; padding-left: 20px; padding-right: 0; }
  .tl-center, .timeline-item:nth-child(even) .tl-center { order: 0; justify-content: flex-start; }
  .section-header-row, .courses-header { flex-direction: column; align-items: flex-start; }
  .section-lede { text-align: left; max-width: none; }
  .team-photo { height: 280px; }
}
@media (max-width: 640px) {
  :root { --section: 72px; --gutter: 20px; }
  .hero-btns, .final-btns, .tour-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline, .btn-ghost { width: 100%; max-width: 320px; text-align: center; }
  .courses-grid, .tours-grid, .highlights-grid, .form-grid, .footer-top, .stat-row, .includes-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .floating-cta { bottom: 14px; right: 14px; left: 14px; }
  .floating-cta a { justify-content: center; }
  #hero { min-height: 100svh; }
  .page-hero, .tp-hero { height: auto; min-height: 340px; padding-top: 108px; padding-bottom: 48px; }
  .tp-price { font-size: 52px; }
  .contact-form-panel, .panel { padding: 28px 20px; }
  .testimonial-card { padding: 36px 24px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
