/* ============================================================
   ПЛЫНЬ — сплавы по рекам Беларуси
   Design tokens + styles
   ============================================================ */

:root {
  /* Greens */
  --forest-deep: #21400f;
  --forest: #2D5016;
  --green: #3D7B3F;
  --green-light: #6BA368;
  /* Water */
  --water-deep: #1f5d7e;
  --water: #2E7BA4;
  --sky: #4A90E2;
  --sky-light: #8fc1eb;
  /* Sunset */
  --amber: #E8944A;
  --orange: #FF8C42;
  --orange-soft: #ffb27a;
  /* Neutrals */
  --paper: #F6F4EE;
  --paper-2: #efeae0;
  --cream: #FBFAF6;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --muted: #6b6b66;
  --line: rgba(26,26,26,.10);
  --gold: #FFC53D;

  --shadow-sm: 0 2px 8px rgba(33,64,15,.08);
  --shadow-md: 0 10px 30px rgba(33,64,15,.12);
  --shadow-lg: 0 24px 60px rgba(20,40,30,.22);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1200px;

  --f-head: "Montserrat", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-accent: "Playfair Display", Georgia, serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1,h2,h3,h4 { font-family: var(--f-head); font-weight: 800; line-height: 1.05; margin: 0; letter-spacing: -.01em; }

p { line-height: 1.65; }

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

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }

.eyebrow {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section-title {
  font-size: clamp(30px, 4.6vw, 56px);
  color: var(--forest-deep);
  margin-top: 14px;
  text-wrap: balance;
}
.section-title .ac { font-family: var(--f-accent); font-style: italic; font-weight: 600; color: var(--water); }

.lead { color: var(--muted); font-size: clamp(16px,1.5vw,19px); max-width: 56ch; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 16px 30px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  min-height: 52px;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,140,66,.4);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 38px rgba(255,140,66,.5); }
.btn-ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.26); transform: translateY(-3px); }
.btn-dark { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--forest-deep); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 48px);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav.scrolled {
  background: rgba(251,250,246,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
  padding-top: 12px; padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--f-head); font-weight: 800; font-size: 22px; color: #fff; transition: color .35s; letter-spacing: -.02em; }
.nav.scrolled .logo { color: var(--forest-deep); }
.logo .mark { width: 80px; height: 80px; flex: none; object-fit: contain; border-radius: 50%; }
.logo small { display:block; font-family: var(--f-accent); font-weight: 500; font-style: italic; font-size: 14px; letter-spacing: .02em; text-transform: none; opacity: .9; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--f-head); font-weight: 600; font-size: 15px; color: rgba(255,255,255,.92);
  position: relative; transition: color .3s; padding: 4px 0;
}
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--orange);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav .btn { padding: 11px 22px; min-height: 44px; font-size: 15px; }

.burger { display: none; width: 46px; height: 46px; border: none; background: rgba(255,255,255,.16); border-radius: 12px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.burger span { width: 22px; height: 2.4px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav.scrolled .burger { background: rgba(33,64,15,.1); }
.nav.scrolled .burger span { background: var(--forest-deep); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: linear-gradient(160deg, var(--forest-deep), var(--water-deep));
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: #fff; font-family: var(--f-head); font-weight: 700; font-size: 30px; padding: 12px; }
.mobile-menu .btn { margin-top: 22px; }
.mobile-menu .close { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.14); border: none; color: #fff; font-size: 26px; cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; display: flex; align-items: center; }
.hero-scene { position: absolute; inset: 0; z-index: 0; }
.hero-layer { position: absolute; inset: 0; width: 100%; height: 100%; will-change: transform; }
.hero-layer svg, .hero-layer img { width: 100%; height: 100%; display: block; }
.hero-photo { inset: -14% 0; height: 128%; }
.hero-photo img { object-fit: cover; object-position: center 40%; }
.hero-sun { position: absolute; top: 16%; right: 18%; width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, #fff5e0 0%, var(--orange-soft) 45%, rgba(255,178,122,0) 72%);
  filter: blur(2px); z-index: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(15,30,22,.72) 0%, rgba(15,30,22,.42) 42%, rgba(15,30,22,.12) 70%, rgba(15,30,22,.3) 100%),
    linear-gradient(180deg, rgba(15,30,22,.3) 0%, rgba(15,30,22,.05) 38%, rgba(15,30,22,.5) 100%); }
.hero-content { position: relative; z-index: 3; color: #fff; padding-top: 60px; }
.hero h1 {
  font-size: clamp(38px, 7vw, 88px);
  line-height: .98;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
  max-width: 16ch;
}
.hero h1 .ac { font-family: var(--f-accent); font-style: italic; font-weight: 500; color: var(--orange-soft); }
.hero .sub { font-size: clamp(17px, 2vw, 23px); color: rgba(255,255,255,.94); max-width: 50ch; margin-top: 22px; font-weight: 400; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 46px; flex-wrap: wrap; }
.hero-badge { color: #fff; }
.hero-badge b { font-family: var(--f-head); font-size: 26px; display: block; }
.hero-badge span { font-size: 13px; opacity: .82; letter-spacing: .04em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 4;
  color: #fff; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; opacity: .9;
}
.scroll-cue .mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content:""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:1; top:7px} 70%{opacity:0; top:20px} 100%{opacity:0} }

/* sound toggle */
.sound-toggle { position: absolute; right: clamp(18px,4vw,48px); bottom: 30px; z-index: 4;
  width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px); color: #fff; cursor: pointer; display: grid; place-items: center; transition: .25s; }
.sound-toggle:hover { background: rgba(255,255,255,.28); transform: scale(1.06); }

/* river shimmer */
.shimmer { animation: shimmer 7s ease-in-out infinite; }
@keyframes shimmer { 0%,100%{opacity:.85} 50%{opacity:1} }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section.block { padding: clamp(72px, 9vw, 132px) 0; position: relative; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   ROUTES
   ============================================================ */
.routes { background: linear-gradient(180deg, var(--cream), var(--paper)); }
.routes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 56px; }
.route-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-md); cursor: pointer; isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.route-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.route-bg { position: absolute; inset: -8% 0 0 0; height: 116%; z-index: -2; will-change: transform; }
.route-bg svg { width: 100%; height: 100%; object-fit: cover; }
.route-card::after { content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,25,15,0) 30%, rgba(10,25,15,.82) 100%); }
.route-body { padding: 30px; color: #fff; }
.route-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-head); font-weight: 600; font-size: 12.5px;
  padding: 7px 13px; border-radius: 100px; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); }
.chip svg { width: 14px; height: 14px; }
.chip.easy { background: rgba(107,163,104,.92); border-color: transparent; }
.chip.medium { background: rgba(232,148,74,.92); border-color: transparent; }
.chip.hard { background: rgba(193,75,60,.92); border-color: transparent; }
.route-name { font-family: var(--f-head); font-size: 32px; font-weight: 800; }
.route-name .ac { font-family: var(--f-accent); font-style: italic; font-weight: 500; }
.route-desc { color: rgba(255,255,255,.88); font-size: 15px; margin: 10px 0 20px; max-width: 44ch; }
.route-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.route-price { font-family: var(--f-head); font-weight: 700; }
.route-price span { font-size: 12px; font-weight: 500; opacity: .8; display: block; }
.route-price b { font-size: 22px; }
.route-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-head); font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 100px; background: #fff; color: var(--forest-deep); transition: .25s var(--ease); }
.route-card:hover .route-link { background: var(--orange); color: #fff; gap: 12px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--forest-deep); color: #fff; overflow: hidden; position: relative; }
.reviews::before { content:""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(74,144,226,.35), transparent 70%),
    radial-gradient(600px 320px at 5% 100%, rgba(255,140,66,.22), transparent 70%); }
.reviews .section-title { color: #fff; }
.reviews .section-title .ac { color: var(--orange-soft); }
.reviews .lead { color: rgba(255,255,255,.72); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.review {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 28px; backdrop-filter: blur(4px); transition: transform .35s var(--ease), background .35s; }
.review:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.review.feature { grid-row: span 2; background: linear-gradient(160deg, rgba(74,144,226,.22), rgba(255,255,255,.05)); display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; }
.review p { font-size: 16px; color: rgba(255,255,255,.92); margin: 0 0 22px; }
.review.feature p { font-size: 22px; font-family: var(--f-accent); font-style: italic; line-height: 1.5; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { width: 52px; height: 52px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; color: #fff; font-size: 18px; }
.reviewer b { font-family: var(--f-head); font-size: 15.5px; display: block; }
.reviewer span { font-size: 13px; color: rgba(255,255,255,.6); }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { background: var(--paper); }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 56px; align-items: stretch; }
.pkg {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 30px; position: relative; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg .accent-bar { position: absolute; inset: 0 0 auto 0; height: 6px; }
.pkg.family .accent-bar { background: linear-gradient(90deg, var(--sky), var(--water)); }
.pkg.adventure .accent-bar { background: linear-gradient(90deg, var(--orange), var(--amber)); }
.pkg.premium .accent-bar { background: linear-gradient(90deg, var(--green), var(--forest)); }
.pkg.premium { background: linear-gradient(180deg, #1f3d18, #14290f); color: #fff; border: none; transform: scale(1.03); }
.pkg.premium:hover { transform: scale(1.03) translateY(-8px); }
.pkg-tag { position: absolute; top: 22px; right: 22px; font-family: var(--f-head); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.pkg.premium .pkg-tag { background: var(--orange); color: #fff; }
.pkg-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; }
.pkg.family .pkg-icon { background: rgba(74,144,226,.14); color: var(--water); }
.pkg.adventure .pkg-icon { background: rgba(255,140,66,.16); color: var(--orange); }
.pkg.premium .pkg-icon { background: rgba(255,255,255,.12); color: var(--orange-soft); }
.pkg-icon svg { width: 30px; height: 30px; }
.pkg h3 { font-size: 26px; color: var(--forest-deep); }
.pkg.premium h3 { color: #fff; }
.pkg .pkg-for { color: var(--muted); font-size: 14.5px; margin: 8px 0 22px; }
.pkg.premium .pkg-for { color: rgba(255,255,255,.6); }
.price { display: flex; align-items: baseline; gap: 7px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.pkg.premium .price { border-color: rgba(255,255,255,.16); }
.price .from { font-size: 13px; color: var(--muted); }
.pkg.premium .price .from { color: rgba(255,255,255,.6); }
.price b { font-family: var(--f-head); font-size: 40px; color: var(--forest-deep); }
.pkg.premium .price b { color: #fff; }
.price .unit { font-size: 14px; color: var(--muted); }
.pkg.premium .price .unit { color: rgba(255,255,255,.6); }
.pkg ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.pkg li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.pkg.premium li { color: rgba(255,255,255,.88); }
.pkg li svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.pkg.family li svg { color: var(--water); }
.pkg.adventure li svg { color: var(--orange); }
.pkg.premium li svg { color: var(--orange-soft); }
.pkg .btn { width: 100%; justify-content: center; }
.pkg.premium .btn-dark { background: var(--orange); }
.pkg.premium .btn-dark:hover { background: var(--orange-soft); color: var(--forest-deep); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.stat .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(61,123,63,.12); color: var(--green); display: grid; place-items: center; margin-bottom: 14px; }
.stat .ic svg { width: 24px; height: 24px; }
.stat b { font-family: var(--f-head); font-size: clamp(30px,3.4vw,42px); color: var(--forest-deep); display: block; line-height: 1; }
.stat span { font-size: 14px; color: var(--muted); margin-top: 6px; display: block; }
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.team-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.team-card svg { width: 100%; height: 100%; }
.team-card .who { position: absolute; left: 16px; bottom: 14px; color: #fff; z-index: 2; }
.team-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(10,25,15,.7)); }
.team-card .who { z-index: 3; }
.team-card .who b { font-family: var(--f-head); font-size: 16px; display: block; }
.team-card .who span { font-size: 12.5px; opacity: .85; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-wrap { max-width: 820px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 26px 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--f-head); font-weight: 700; font-size: clamp(17px,2vw,21px); color: var(--forest-deep); }
.faq-q .pm { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--paper-2); transition: .3s var(--ease); position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position: absolute; background: var(--forest); border-radius: 2px; transition: .3s var(--ease); }
.faq-q .pm::before { width: 15px; height: 2.5px; }
.faq-q .pm::after { width: 2.5px; height: 15px; }
.faq-item.open .pm { background: var(--orange); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #fff; }
.faq-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { margin: 0; padding: 0 56px 26px 8px; color: var(--muted); font-size: 16px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; overflow: hidden; color: #fff; text-align: center; padding: clamp(96px,12vw,170px) 0; }
.final-scene { position: absolute; inset: 0; z-index: 0; }
.final-scene svg, .final-scene img { width: 100%; height: 100%; object-fit: cover; }
.final-layer { position: absolute; inset: 0; will-change: transform; }
.final-photo { inset: -18% 0; height: 136%; }
.final::after { content:""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,30,40,.32), rgba(20,30,40,.5)); }
.final .wrap { position: relative; z-index: 2; }
.final h2 { font-size: clamp(34px,6vw,72px); text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.final h2 .ac { font-family: var(--f-accent); font-style: italic; font-weight: 500; color: var(--orange-soft); }
.final p { font-size: clamp(17px,2vw,22px); max-width: 56ch; margin: 22px auto 0; color: rgba(255,255,255,.94); text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.final .discount { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; padding: 8px 18px; border-radius: 100px; background: rgba(255,140,66,.92); font-family: var(--f-head); font-weight: 700; font-size: 15px; }
.final .btn { margin-top: 38px; font-size: 18px; padding: 19px 42px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer-about { font-size: 14.5px; line-height: 1.7; max-width: 34ch; }
.footer h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 15px; transition: color .25s; }
.footer ul a:hover { color: var(--orange); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .25s; }
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-contact p { font-size: 15px; margin: 0 0 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--orange); flex: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 52px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; font-size: 13.5px; flex-wrap: wrap; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.float-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.float-cta .btn { box-shadow: 0 14px 34px rgba(255,140,66,.5); }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-back { position: fixed; inset: 0; z-index: 120; background: rgba(15,25,18,.6); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--cream); border-radius: var(--radius-lg); width: min(560px, 100%); max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); transform: translateY(24px) scale(.97); transition: transform .35s var(--ease); position: relative; }
.modal-back.open .modal { transform: none; }
.modal-head { padding: 30px 32px 22px; position: relative; overflow: hidden; color: #fff; }
.modal-head .scene { position: absolute; inset: 0; z-index: 0; }
.modal-head .scene svg { width: 100%; height: 100%; object-fit: cover; }
.modal-head::after { content:""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(33,64,15,.85), rgba(46,123,164,.7)); z-index: 1; }
.modal-head > * { position: relative; z-index: 2; }
.modal-head h3 { font-size: 26px; }
.modal-head p { margin: 6px 0 0; font-size: 14.5px; opacity: .92; }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,.2); color: #fff; font-size: 22px; cursor: pointer; transition: .25s; }
.modal-close:hover { background: rgba(255,255,255,.35); transform: rotate(90deg); }
.modal-body { padding: 28px 32px 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-head); font-weight: 600; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  font-family: var(--f-body); font-size: 15px; color: var(--ink); transition: border .2s, box-shadow .2s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(61,123,63,.12); }
.field.error input, .field.error select { border-color: #c14b3c; }
.field .err { color: #c14b3c; font-size: 12.5px; margin-top: 5px; display: none; }
.field.error .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal .btn { width: 100%; justify-content: center; margin-top: 8px; }
.modal-success { text-align: center; padding: 50px 32px 56px; }
.modal-success .check { width: 84px; height: 84px; border-radius: 50%; background: rgba(61,123,63,.14); color: var(--green); display: grid; place-items: center; margin: 0 auto 22px; }
.modal-success .check svg { width: 44px; height: 44px; }
.modal-success h3 { font-size: 26px; color: var(--forest-deep); }
.modal-success p { color: var(--muted); margin-top: 10px; }

/* ============================================================
   МАРШРУТ — placeholder ("уточняется")
   ============================================================ */
.route-pending {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px;
  margin-top: 56px; display: grid; place-items: center; text-align: center; color: #fff;
  box-shadow: var(--shadow-md); isolation: isolate; padding: 56px 26px;
}
.route-pending .route-bg { position: absolute; inset: -8% 0 0 0; height: 116%; z-index: -2; will-change: transform; }
.route-pending .route-bg img { width: 100%; height: 100%; object-fit: cover; }
.route-pending::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,40,30,.55), rgba(15,40,30,.78)); }
.route-pending-inner { max-width: 660px; }
.pending-badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-head);
  font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 100px; background: rgba(255,140,66,.95); }
.pending-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{ opacity: 1; transform: scale(1) } 50%{ opacity: .35; transform: scale(.7) } }
.route-pending-inner h3 { font-size: clamp(26px, 3.6vw, 42px); margin-top: 20px; text-shadow: 0 3px 20px rgba(0,0,0,.35); }
.route-pending-inner > p { color: rgba(255,255,255,.86); margin: 12px auto 0; font-size: 17px; max-width: 44ch; }
.pending-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.pending-tile { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px); border-radius: var(--radius); padding: 22px 16px; }
.pending-tile svg { width: 26px; height: 26px; margin-bottom: 12px; color: var(--orange-soft); }
.pending-tile b { font-family: var(--f-head); font-size: 15.5px; display: block; }
.pending-tile small { font-size: 12.5px; color: rgba(255,255,255,.65); display: block; margin-top: 3px; }

/* ============================================================
   ПРОГРАММА — timeline (День 1 / День 2)
   ============================================================ */
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; position: relative; align-items: start; }
.day-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 32px; backdrop-filter: blur(4px); }
.day-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.13); }
.day-num { font-family: var(--f-head); font-weight: 800; font-size: 26px; color: #fff; }
.day-sub { font-family: var(--f-accent); font-style: italic; color: var(--orange-soft); font-size: 19px; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { position: relative; padding: 0 0 20px 28px; color: rgba(255,255,255,.88); font-size: 15.5px; line-height: 1.5; }
.timeline li::before { content: ""; position: absolute; left: 4px; top: 4px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,140,66,.18); z-index: 1; }
.timeline li::after { content: ""; position: absolute; left: 9px; top: 14px; bottom: -4px; width: 2px; background: rgba(255,255,255,.16); }
.timeline li:last-child { padding-bottom: 0; }
.timeline li:last-child::after { display: none; }
.timeline li b { color: #fff; font-family: var(--f-head); font-weight: 700; margin-right: 7px; }
.day-note { display: flex; gap: 11px; align-items: flex-start; margin-top: 22px; padding: 15px 16px;
  border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.day-note svg { width: 20px; height: 20px; color: var(--orange-soft); flex: none; margin-top: 1px; }
.day-note p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,.74); line-height: 1.5; }

/* ============================================================
   О ПРОЕКТЕ — note box + Организатор
   ============================================================ */
.note { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; padding: 16px 18px;
  border-radius: var(--radius); background: rgba(232,148,74,.12); border: 1px solid rgba(232,148,74,.32); }
.note svg { width: 22px; height: 22px; color: var(--amber); flex: none; margin-top: 1px; }
.note p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.note p b { color: var(--forest-deep); }

.organizer { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.org-photo { aspect-ratio: 16/7; background: linear-gradient(155deg, var(--green-light), var(--water));
  display: grid; place-items: center; color: rgba(255,255,255,.92); position: relative; }
.org-photo .ph { text-align: center; }
.org-photo svg { width: 48px; height: 48px; opacity: .92; }
.org-photo small { display: block; margin-top: 10px; font-family: var(--f-head); font-weight: 600; font-size: 13px; letter-spacing: .04em; }
.org-body { padding: 28px 30px 32px; }
.org-eyebrow { font-family: var(--f-head); font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--green); }
.org-body h3 { font-size: 24px; color: var(--forest-deep); margin-top: 8px; }
.org-role { color: var(--water); font-weight: 600; font-size: 14.5px; margin: 5px 0 0; font-family: var(--f-head); }
.org-desc { color: var(--muted); font-size: 15px; margin: 14px 0 0; line-height: 1.6; }
.org-achievements { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 11px; }
.org-achievements li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.org-achievements svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 1px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .routes-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review.feature { grid-row: span 1; grid-column: span 2; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .pkg.premium { transform: none; }
  .pkg.premium:hover { transform: translateY(-8px); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .program-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review.feature { grid-column: span 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 20px; }
  .pending-tiles { grid-template-columns: 1fr; }
  .float-cta { right: 14px; bottom: 14px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto; }
}
