/* =====================================================
   HIMALAYA RETREAT — Landing Page Styles
   Palette: Deep forest greens + warm terracotta + cream
   Display: Zodiak (serif), Body: Work Sans
   ===================================================== */

/* === DESIGN TOKENS === */
:root,
[data-theme='light'] {
  /* Surfaces — warm cream */
  --color-bg: #f8f5f0;
  --color-surface: #faf8f4;
  --color-surface-2: #ffffff;
  --color-surface-offset: #f0ece5;
  --color-surface-dynamic: #e8e2d8;
  --color-divider: #ddd8ce;
  --color-border: #cdc7bb;

  /* Text */
  --color-text: #1e1c18;
  --color-text-muted: #6b6860;
  --color-text-faint: #b0ada6;
  --color-text-inverse: #f8f5f0;

  /* Primary — deep forest green */
  --color-primary: #2d5a3f;
  --color-primary-hover: #1f4230;
  --color-primary-active: #152e21;
  --color-primary-highlight: #c8d8cc;

  /* Accent — warm terracotta */
  --color-accent: #b85c38;
  --color-accent-hover: #9a4a2a;
  --color-accent-highlight: #f0d8cc;

  /* Gold for highlights */
  --color-gold: #c49a3c;

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw,   1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem + 4vw,      5rem);
  --text-hero: clamp(3rem,     0.5rem + 7vw,    8rem);

  /* Spacing */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem;
  --space-4: 1rem;   --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;   --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;  --space-20: 5rem;   --space-24: 6rem;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body:    'Work Sans', 'Helvetica Neue', sans-serif;

  /* Radii */
  --radius-sm: .375rem; --radius-md: .5rem;
  --radius-lg: .75rem;  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.2 0.02 80 / 0.07);
  --shadow-md: 0 4px 16px oklch(0.2 0.02 80 / 0.10);
  --shadow-lg: 0 12px 40px oklch(0.2 0.02 80 / 0.14);

  /* Widths */
  --content-narrow:  680px;
  --content-default: 980px;
  --content-wide:    1240px;

  /* Transitions */
  --t: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme='dark'] {
  --color-bg: #151310;
  --color-surface: #1a1815;
  --color-surface-2: #1f1d19;
  --color-surface-offset: #1c1a16;
  --color-surface-dynamic: #28261f;
  --color-divider: #252219;
  --color-border: #38352a;
  --color-text: #e8e4dc;
  --color-text-muted: #837f76;
  --color-text-faint: #565450;
  --color-text-inverse: #151310;
  --color-primary: #5a9a6e;
  --color-primary-hover: #3d7f55;
  --color-primary-active: #2a6040;
  --color-primary-highlight: #202e24;
  --color-accent: #e07a52;
  --color-accent-hover: #cc6038;
  --color-accent-highlight: #3d2518;
  --color-gold: #d4aa50;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / .2);
  --shadow-md: 0 4px 16px oklch(0 0 0 / .3);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / .4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #151310; --color-surface: #1a1815;
    --color-surface-2: #1f1d19; --color-surface-offset: #1c1a16;
    --color-surface-dynamic: #28261f; --color-divider: #252219;
    --color-border: #38352a; --color-text: #e8e4dc;
    --color-text-muted: #837f76; --color-text-faint: #565450;
    --color-text-inverse: #151310;
    --color-primary: #5a9a6e; --color-primary-hover: #3d7f55;
    --color-primary-active: #2a6040; --color-primary-highlight: #202e24;
    --color-accent: #e07a52; --color-accent-hover: #cc6038;
    --color-accent-highlight: #3d2518; --color-gold: #d4aa50;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / .2);
    --shadow-md: 0 4px 16px oklch(0 0 0 / .3);
    --shadow-lg: 0 12px 40px oklch(0 0 0 / .4);
  }
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}
body {
  min-height: 100dvh; line-height: 1.65;
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-text); background-color: var(--color-bg);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; max-width: 68ch; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
::selection { background: color-mix(in oklab, var(--color-primary) 30%, transparent); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

/* === LAYOUT === */
.container { width: min(var(--content-wide), 100% - var(--space-8) * 2); margin-inline: auto; }
.container-narrow { width: min(var(--content-narrow), 100% - var(--space-8) * 2); margin-inline: auto; }
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }

/* === HEADER === */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; gap: var(--space-6);
  padding-block: var(--space-4);
  width: min(var(--content-wide), 100% - var(--space-8) * 2);
  margin-inline: auto;
}
.logo { display: flex; align-items: center; gap: var(--space-3); color: var(--color-primary); transition: opacity var(--t); flex-shrink: 0; }
.logo:hover { opacity: .8; }
.logo-text { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 500; letter-spacing: .01em; color: var(--color-text); }
.nav { display: flex; align-items: center; gap: var(--space-6); margin-left: auto; }
.nav a { font-size: var(--text-sm); color: var(--color-text-muted); transition: color var(--t); }
.nav a:hover { color: var(--color-text); }
.nav .nav-cta {
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary); color: var(--color-text-inverse);
  border-radius: var(--radius-full); font-weight: 500;
  transition: background var(--t), transform var(--t);
}
.nav .nav-cta:hover { background: var(--color-primary-hover); transform: translateY(-1px); }
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-full);
  color: var(--color-text-muted); border: 1px solid var(--color-border);
  transition: background var(--t), color var(--t);
}
.theme-toggle:hover { background: var(--color-surface-offset); color: var(--color-text); }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; justify-content: center; align-items: center;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--color-text); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  padding: var(--space-4) min(var(--content-wide), 100% - var(--space-8) * 2);
  padding-inline: calc((100% - min(var(--content-wide), 100% - var(--space-8) * 2)) / 2 + var(--space-4));
  border-top: 1px solid var(--color-divider);
}
.mobile-nav a {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-base); color: var(--color-text);
}
.mobile-nav .nav-cta {
  margin-top: var(--space-4); text-align: center;
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary); color: var(--color-text-inverse);
  border-radius: var(--radius-full); font-weight: 500;
}
.mobile-nav.open { display: flex; }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .theme-toggle { margin-left: auto; }
}

/* === HERO === */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-image-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    oklch(0.12 0.02 150 / .2) 0%,
    oklch(0.12 0.02 150 / .55) 50%,
    oklch(0.08 0.02 150 / .75) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; color: #fff;
  padding: var(--space-8);
  max-width: 860px;
}
.hero-eyebrow {
  font-size: var(--text-lg); font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: #fff;
  margin-bottom: var(--space-5);
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
  background: rgba(255,255,255,.12);
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: var(--font-display); font-size: var(--text-hero);
  font-weight: 400; line-height: 1.05; color: #fff;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 32px rgba(0,0,0,.25);
}
.hero-subtitle {
  font-size: var(--text-lg); font-weight: 300; line-height: 1.5;
  color: rgba(255,255,255,.88); margin-bottom: var(--space-8);
  max-width: 56ch; margin-inline: auto;
}
.hero-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-10); }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-6); flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 500; color: #fff; line-height: 1;
}
.stat-unit { font-size: .6em; }
.stat-label { font-size: var(--text-xs); color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.25); }
.hero-scroll {
  position: absolute; bottom: var(--space-8); left: 50%;
  transform: translateX(-50%); z-index: 1;
  color: rgba(255,255,255,.6); transition: color var(--t), transform var(--t);
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--space-3) var(--space-8); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 500; letter-spacing: .01em;
  transition: background var(--t), color var(--t), box-shadow var(--t), transform var(--t);
  cursor: pointer; border: none; text-decoration: none;
}
.btn-primary {
  background: var(--color-primary); color: #fff;
  box-shadow: 0 2px 12px color-mix(in oklab, var(--color-primary) 40%, transparent);
}
.btn-primary:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-full { width: 100%; }
.btn-large { padding: var(--space-4) var(--space-10); font-size: var(--text-base); }

/* === SECTION LABELS === */
.section-label {
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: var(--space-4);
}
.section-label.light { color: rgba(255,255,255,.7); }
.section-title {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 400; line-height: 1.15; color: var(--color-text);
  margin-bottom: var(--space-8); text-align: center;
}
.section-title-left {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 400; line-height: 1.2; color: var(--color-text);
  margin-bottom: var(--space-8);
}

/* === INTRO === */
.intro { background: var(--color-surface); }
.intro .container-narrow { text-align: center; }
.intro-text {
  font-size: var(--text-lg); line-height: 1.7; color: var(--color-text-muted);
  max-width: 60ch; margin-inline: auto;
}
.intro-text + .intro-text { margin-top: var(--space-5); }

/* === PROGRAM === */
.program { background: var(--color-bg); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-4);
}
.program-day:last-child {
  grid-column: 1 / -1;
}
@media (max-width: 900px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-day:last-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .program-grid { grid-template-columns: 1fr; }
  .program-day:last-child { grid-column: 1; }
}
.program-day {
  display: flex; gap: var(--space-5); align-items: flex-start;
  padding: var(--space-6); background: var(--color-surface);
  border-radius: var(--radius-xl); border: 1px solid var(--color-border);
  transition: box-shadow var(--t), transform var(--t);
}
.program-day:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.day-num {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 400; color: var(--color-primary); opacity: .5;
  flex-shrink: 0; line-height: 1;
}
.day-content h3 { font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-2); font-family: var(--font-body); color: var(--color-text); }
.day-content p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }

/* === LOCATION === */
.location-section { position: relative; overflow: hidden; min-height: 70vh; display: flex; }
.location-image-wrap { position: relative; width: 100%; }
.location-image-wrap img { width: 100%; height: 70vh; object-fit: cover; object-position: center 40%; }
.location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    oklch(0.08 0.05 150 / .82) 0%,
    oklch(0.08 0.05 150 / .55) 50%,
    transparent 100%
  );
}
.location-text {
  position: absolute; left: 0; bottom: 0; top: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-16);
  max-width: 560px;
  color: #fff;
}
.location-text h2 {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 400; line-height: 1.2; color: #fff;
  margin-bottom: var(--space-5);
  white-space: nowrap;
}
.location-text p { font-size: var(--text-base); color: rgba(255,255,255,.82); line-height: 1.65; max-width: 42ch; }

@media (max-width: 640px) {
  .location-image-wrap img { height: 80vw; }
  .location-overlay {
    background: linear-gradient(to top,
      oklch(0.08 0.05 150 / .88) 0%,
      oklch(0.08 0.05 150 / .5) 60%,
      transparent 100%
    );
  }
  .location-text {
    top: auto; bottom: 0; left: 0; right: 0;
    max-width: 100%; padding: var(--space-8) var(--space-6);
    background: none;
  }
  .location-text h2 { font-size: var(--text-2xl); }
}

/* === GUIDE === */
.guide { background: var(--color-bg); }
.guide-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.guide-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
}
.guide-video {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.guide-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

/* === FEATURES === */
.features { background: var(--color-surface); }

.features-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.features-list-full { /* text side */ }

.features-text-blocks {
  display: flex; flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.features-text-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.features-text-item p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-muted);
  padding-top: var(--space-2);
}

/* video below text */
.features-video-below {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  width: 100%;
}
.features-video-below video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.feature-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg); color: var(--color-primary);
}

@media (max-width: 860px) {
  .features-top { grid-template-columns: 1fr; }
  .features-duo { order: -1; }
}

/* === PRICING === */
.included { background: var(--color-bg); }
.pricing-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: var(--space-6); margin-bottom: var(--space-6);
}
.pricing-card {
  padding: var(--space-8); background: var(--color-surface);
  border-radius: var(--radius-xl); border: 1px solid var(--color-border);
  position: relative; transition: box-shadow var(--t);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card-featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-md);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--color-primary); color: #fff;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full); white-space: nowrap;
}
.pricing-card-header { margin-bottom: var(--space-6); }
.pricing-tag { font-size: var(--text-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--color-text-muted); }
.price-wrap { display: flex; align-items: baseline; gap: var(--space-2); margin: var(--space-3) 0 var(--space-2); }
.price { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500; color: var(--color-text); }
.price-note { font-size: var(--text-xs); color: var(--color-text-muted); }
.pricing-desc { font-size: var(--text-sm); color: var(--color-text-muted); }
.pricing-list { list-style: none; margin-bottom: var(--space-8); }
.pricing-list li {
  padding: var(--space-3) 0; font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-divider); color: var(--color-text);
}
.pricing-list li:first-child { border-top: 1px solid var(--color-divider); }
.pricing-note { text-align: center; font-size: var(--text-sm); color: var(--color-text-muted); }

/* === TESTIMONIALS === */
.testimonials { background: var(--color-surface); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  padding: var(--space-8); background: var(--color-bg);
  border-radius: var(--radius-xl); border: 1px solid var(--color-border);
  transition: box-shadow var(--t);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 5rem;
  line-height: 1; position: absolute; top: var(--space-4); left: var(--space-6);
  color: var(--color-primary); opacity: .18;
}
.testimonial-card p {
  font-size: var(--text-base); font-style: italic; line-height: 1.7;
  color: var(--color-text-muted); margin-bottom: var(--space-6);
  position: relative; z-index: 1;
}
.testimonial-card footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card strong { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.testimonial-card span { font-size: var(--text-xs); color: var(--color-text-muted); }

/* === BOOKING === */
.booking { background: var(--color-bg); }
.booking-subtitle { text-align: center; font-size: var(--text-base); color: var(--color-text-muted); margin-bottom: var(--space-10); margin-top: calc(-1 * var(--space-4)); }
.booking-subtitle strong { color: var(--color-text); }
.booking-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label { font-size: var(--text-sm); font-weight: 500; color: var(--color-text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); font-size: var(--text-base);
  color: var(--color-text); transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-primary) 15%, transparent);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right var(--space-4) center; padding-right: var(--space-10); }
.form-note { text-align: center; font-size: var(--text-xs); color: var(--color-text-muted); margin-top: calc(-1 * var(--space-2)); }

.booking-success {
  text-align: center; padding: var(--space-16) var(--space-8);
  color: var(--color-primary);
}
.booking-success svg { margin-inline: auto; margin-bottom: var(--space-5); }
.booking-success h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); color: var(--color-text); }
.booking-success p { color: var(--color-text-muted); max-width: 40ch; margin-inline: auto; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* === FOOTER === */
.footer { background: var(--color-surface); border-top: 1px solid var(--color-divider); padding-top: var(--space-12); }
.footer-inner { display: flex; gap: var(--space-8); flex-wrap: wrap; align-items: flex-start; justify-content: space-between; margin-bottom: var(--space-8); }
.footer-brand { max-width: 240px; }
.footer-brand p { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-3); }
.footer-nav { display: flex; gap: var(--space-5); flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: var(--text-sm); color: var(--color-text-muted); transition: color var(--t); }
.footer-nav a:hover { color: var(--color-text); }
.footer-bottom { border-top: 1px solid var(--color-divider); padding-block: var(--space-5); }
.footer-bottom p { text-align: center; font-size: var(--text-xs); color: var(--color-text-faint); }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

/* === HERO DATES === */
.hero-dates {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  font-weight: 300;
}

/* === FOR WHOM === */
.intro { background: var(--color-surface); }
.intro .container-narrow { text-align: center; }
.for-whom-list {
  display: flex; flex-direction: column; gap: var(--space-5);
  max-width: 560px; margin-inline: auto; margin-top: var(--space-8);
  text-align: left;
}
.for-whom-item {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--t);
}
.for-whom-item:hover { box-shadow: var(--shadow-sm); }
.fwi-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg); color: var(--color-primary);
}
.for-whom-item p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.6; }

/* === ROUTE === */
.route-intro {
  text-align: center; font-size: var(--text-base);
  color: var(--color-text-muted); max-width: 56ch;
  margin-inline: auto; margin-bottom: var(--space-10);
  margin-top: calc(-1 * var(--space-4));
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.route-card {
  padding: var(--space-6) var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--t), transform var(--t);
}
.route-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

@media (max-width: 860px) {
  .route-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .route-grid { grid-template-columns: 1fr; }
}
.route-header { margin-bottom: var(--space-5); }
.route-dates {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: var(--space-2);
}
.route-card h3 {
  font-size: var(--text-base); font-weight: 600;
  font-family: var(--font-body); color: var(--color-text);
}
.route-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.route-list li {
  font-size: var(--text-sm); color: var(--color-text-muted);
  padding-left: var(--space-5); position: relative; line-height: 1.55;
}
.route-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--color-primary); font-weight: 600;
}
.route-fly-text { font-size: var(--text-sm); color: var(--color-text-muted); font-style: italic; }

/* === PRICING 3 cols === */
.pricing-cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.pricing-card-neutral {
  background: var(--color-surface-offset);
}
.pricing-list-minus li { color: var(--color-text-muted); }

/* === BOOKING INLINE === */
.booking-inline { display: flex; flex-direction: column; gap: var(--space-3); }
.booking-inline-text { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
.booking-inline-text strong { color: var(--color-text); }
.booking-phone {
  text-align: center; font-size: var(--text-sm);
  color: var(--color-text-muted); letter-spacing: .05em;
  margin-top: var(--space-1);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary-highlight); }

/* === PRICING QUOTE === */
.pricing-quote {
  margin-top: var(--space-10);
  padding: var(--space-8) var(--space-10);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border-left: 3px solid var(--color-primary);
  position: relative;
}
.pricing-quote::before {
  content: '\201C';
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  position: absolute; top: var(--space-3); left: var(--space-6);
  color: var(--color-primary); opacity: .15;
}
.pricing-quote p {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-style: italic; color: var(--color-text);
  line-height: 1.65; max-width: 72ch;
  position: relative; z-index: 1;
  margin-bottom: var(--space-4);
}
.pricing-quote span { font-size: var(--text-sm); color: var(--color-primary); font-weight: 500; }

@media (max-width: 640px) {
  .pricing-quote { padding: var(--space-6); }
  .pricing-quote p { font-size: var(--text-base); }
}

/* === GALLERY === */
.gallery-section { background: var(--color-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-offset);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  font-size: var(--text-xs); color: rgba(255,255,255,.9);
  font-weight: 500; letter-spacing: .03em;
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--t), transform var(--t);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 2; }
}
@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }
}

/* === VIDEO === */
.video-section { background: var(--color-surface); }
.video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  margin-top: var(--space-6);
  aspect-ratio: 16/9;
  max-width: 720px;
  margin-inline: auto;
}
.video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* === PHOTO STRIP (fullwidth между секциями) === */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
  gap: 0;
  overflow: hidden;
}
.photo-strip-3 { grid-template-columns: repeat(3, 1fr); }
.photo-strip-4 { grid-template-columns: repeat(4, 1fr); }

.photo-strip-item {
  overflow: hidden; position: relative;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-strip-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .photo-strip,
  .photo-strip-3,
  .photo-strip-4 {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    grid-auto-rows: 180px;
  }
}
@media (max-width: 480px) {
  .photo-strip,
  .photo-strip-3,
  .photo-strip-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
}

/* === INTRO WITH PHOTO (for-whom section) === */
.intro-with-photo {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}
.intro-text-block .section-title { margin-bottom: var(--space-6); }
.intro-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

@media (max-width: 860px) {
  .intro-with-photo {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .intro-photo { order: -1; }
  .intro-video { max-height: none; }
}

/* === FOR WHOM TEXT (новый вариант) === */
.for-whom-text {
  display: flex; flex-direction: column; gap: var(--space-5);
  margin-top: var(--space-6);
}
.for-whom-text p {
  font-size: var(--text-lg); line-height: 1.7;
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  border-left: 2px solid var(--color-primary);
  max-width: 52ch;
}

/* === INTRO VIDEO (горизонтальный вариант) === */
.intro-video {
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.intro-video video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
