:root {
  /* Палитра из брифа */
  --c-graphite: #1F2421;
  --c-pine:     #2D4A3E;
  --c-amber:    #D4A574;
  --c-cold:     #5C7A7A;
  --c-wa:       #25D366;
  --c-tg:       #229ED9;
  --c-text:     #2A2A2A;
  --c-muted:    #6b6b66;
  --c-bg:       #FAFAF7;
  --c-bg-2:     #F1EFE8;
  --c-line:     #E2DED3;

  --f-display: 'Fraunces', 'Manrope', Georgia, serif;
  --f-sans:    'Manrope', 'Inter', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;

  --maxw: 1360px;
  --pad-x: 32px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); width: 100%; box-sizing: border-box; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0;
}
h2 { font-size: clamp(28px, 3.6vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cold);
  font-weight: 600;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--c-cold); display: block;
}
.lead { font-size: 18px; color: #3a3a36; max-width: 70ch; text-wrap: pretty; }

section { padding: clamp(60px, 8vw, 110px) 0; border-top: 1px solid var(--c-line); }
section:first-of-type { border-top: none; }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; text-decoration: none; }
.brand-mark {
  width: 56px; height: 56px;
  background: url('../images/logo.svg') center/contain no-repeat;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name { font-family: var(--f-display); font-weight: 600; font-size: 18px; color: var(--c-graphite); letter-spacing: -0.01em; }
.brand-sub  { font-family: var(--f-body); font-size: 11.5px; color: var(--c-muted); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.icon-btn.max:hover { background: #EAF4FF; border-color: #2D9CFF; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--c-line);
  color: var(--c-graphite);
  text-decoration: none;
  transition: all 0.18s ease;
}
.icon-btn:hover { background: var(--c-graphite); color: #fff; border-color: var(--c-graphite); }
.icon-btn.wa:hover { background: var(--c-wa); border-color: var(--c-wa); }
.icon-btn.tg:hover { background: var(--c-tg); border-color: var(--c-tg); }
.header-phone {
  font-family: var(--f-sans); font-weight: 600; font-size: 15px;
  text-decoration: none; color: var(--c-graphite);
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--c-graphite);
  white-space: nowrap;
}
.header-phone:hover { background: var(--c-graphite); color: var(--c-bg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--f-sans); font-weight: 600; font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}
.btn-wa { background: var(--c-wa); color: #fff; font-weight: 700; }
.btn-wa:hover { background: #1cb557; transform: translateY(-1px); }
.btn-tg { background: var(--c-tg); color: #fff; }
.btn-tg:hover { background: #1d87b8; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--c-graphite);
  border: 1px solid var(--c-graphite);
}
.btn-ghost:hover { background: var(--c-graphite); color: var(--c-bg); }
.btn-ghost-light {
  background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: #fff; color: var(--c-graphite); }
.btn-amber { background: var(--c-amber); color: var(--c-graphite); }
.btn-amber:hover { background: #c79760; }
.btn-link {
  background: transparent; padding: 8px 0; border-bottom: 1px solid currentColor;
  border-radius: 0; gap: 8px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 760px;
  background: var(--c-graphite);
  color: #f3efe6;
  padding: 0;
  border-top: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-text-pane {
  position: relative; z-index: 3;
  padding-top: 110px; padding-right: 56px; padding-bottom: 80px;
  padding-left: max(var(--pad-x), calc((100vw - var(--maxw)) / 2 + var(--pad-x)));
  display: flex; flex-direction: column; justify-content: center;
  background: var(--c-graphite);
  border-right: 1px solid rgba(243,239,230,0.1);
}
.hero-photo-pane {
  position: relative;
  background-size: cover; background-position: center;
  min-height: 760px;
}
.hero-photo-pane::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(270deg, rgba(31,36,33,0) 60%, rgba(31,36,33,0.55) 100%);
}
.hero-bg { display: none; }
.hero-meta-strip {
  position: absolute; right: 32px; top: 110px; z-index: 4;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(243,239,230,0.7); text-transform: uppercase;
}
.hero-meta-strip span { background: rgba(31,36,33,0.6); padding: 6px 12px; backdrop-filter: blur(6px); }
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 26px;
  max-width: 620px;
}
.hero-eyebrow {
  font-family: var(--f-sans); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(243,239,230,0.85);
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--c-amber);
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
  max-width: 16ch;
  color: #f6efde;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-amber);
  font-weight: 500;
}
#hero-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 60ch;
  color: rgba(243,239,230,0.88);
}
.hero-markers {
  display: flex; flex-wrap: wrap; gap: 0; align-items: center;
  font-family: var(--f-sans); font-size: 14px; color: rgba(243,239,230,0.85);
}
.hero-markers span { padding-right: 16px; position: relative; }
.hero-markers span:not(:last-child)::after {
  content: "·"; padding-left: 16px; color: var(--c-amber);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
#hero-cta-note {
  font-size: 13px; color: rgba(243,239,230,0.7);
  margin-top: 6px;
}
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(243,239,230,0.6); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator::after {
  content: ""; width: 1px; height: 36px; background: rgba(243,239,230,0.4);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ---------- RATING WIDGET ---------- */
.rating-strip {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  padding: 18px 0;
}
.rating-inner {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-family: var(--f-sans); font-size: 14.5px;
}
.rating-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--c-graphite);
}
.rating-stars { color: var(--c-amber); letter-spacing: 2px; }
.rating-link { margin-left: auto; color: var(--c-cold); text-decoration: none; font-weight: 600; }
.rating-link:hover { color: var(--c-graphite); }

/* ---------- NUMBERS ---------- */
.numbers {
  background: var(--c-graphite); color: #f3efe6;
  border-top: none;
}
.numbers h2 { color: #f6efde; }
.numbers .lead { color: rgba(243,239,230,0.85); }
.numbers-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: stretch; }
.numbers .section-head { max-width: none; min-width: 0; }
.numbers .section-head h2 { margin-top: 18px; }
.numbers-photo {
  min-height: 300px;
  background-size: cover; background-position: center;
  background-color: var(--c-pine);
}
.numbers-list {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(243,239,230,0.18);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.num-cell {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 0 24px;
  border-left: 1px solid rgba(243,239,230,0.18);
}
.num-cell:first-child { border-left: none; padding-left: 0; }
.num-cell:last-child { padding-right: 0; }
.num-big {
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 1;
  color: var(--c-amber);
  letter-spacing: -0.02em;
}
.num-text { font-size: 13.5px; line-height: 1.55; color: rgba(243,239,230,0.85); margin: 0; }

/* ---------- FORMATS ---------- */
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.format-card {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: 14px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: all 0.2s ease;
}
.format-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(31,36,33,0.08); }
.format-photo { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.format-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.format-tag {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-cold); font-weight: 600;
}
.format-card h3 { font-family: var(--f-display); }
.format-card p { margin: 0; font-size: 15px; line-height: 1.55; color: #3a3a36; }
.format-tours { font-size: 14px; color: var(--c-graphite); padding: 14px 0 4px; border-top: 1px dashed var(--c-line); }
.format-tours div { padding: 4px 0; }
.format-card .btn { align-self: flex-start; margin-top: auto; }

.individual-strip {
  margin-top: 28px;
  background: var(--c-bg-2);
  padding: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.individual-strip p { margin: 0; font-size: 16px; max-width: 60ch; }

/* ---------- QUIZ ---------- */
/* ---------- SPECIAL FORMATS ---------- */
.special-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.special-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--c-graphite);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.special-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(31,36,33,0.0) 0%,
    rgba(31,36,33,0.2) 40%,
    rgba(31,36,33,0.92) 100%);
  transition: background 0.3s ease;
}
.special-card:hover { transform: translateY(-4px); }
.special-card:hover::before {
  background: linear-gradient(180deg,
    rgba(31,36,33,0.0) 0%,
    rgba(31,36,33,0.4) 30%,
    rgba(31,36,33,0.95) 100%);
}
.special-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px;
  color: #f6efde;
  z-index: 1;
}
.special-content h4 {
  font-family: var(--f-display); font-size: 19px;
  margin: 0 0 8px; color: #fff;
  line-height: 1.25;
}
.special-content p {
  margin: 0; font-size: 13px; line-height: 1.5;
  color: rgba(246,239,222,0.85);
}
.special-tag {
  display: inline-block;
  font-family: var(--f-sans); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-amber); font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- PRICING TABLE ---------- */
.tour-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.tour-table thead th {
  text-align: left; font-family: var(--f-sans); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-cold);
  font-weight: 600;
  padding: 12px 14px; border-bottom: 1px solid var(--c-line);
}
.tour-table tbody tr { border-bottom: 1px solid var(--c-line); transition: background 0.15s; }
.tour-table tbody tr:hover { background: var(--c-bg-2); }
.tour-table td { padding: 18px 14px; vertical-align: middle; font-size: 15px; }
.tour-table .t-cover { width: 88px; }
.tour-table .t-cover img { width: 72px; height: 72px; object-fit: cover; border-radius: 6px; }
.t-name { font-family: var(--f-display); font-weight: 600; font-size: 18px; color: var(--c-graphite); }
.t-fullname { font-size: 12px; color: var(--c-muted); margin-top: 4px; max-width: 36ch; }
.t-days { font-family: var(--f-sans); font-weight: 600; }
.t-meta { white-space: nowrap; }
.t-meta b { font-family: var(--f-sans); font-weight: 700; display: block; font-size: 15px; color: var(--c-graphite); }
.t-meta span { font-family: var(--f-sans); font-size: 12px; color: var(--c-muted); }
.t-price-cell { padding: 18px 14px; vertical-align: middle; }
.t-base { font-size: 13px; color: var(--c-muted); }
.t-price {
  font-family: var(--f-display); font-weight: 700; font-size: 22px;
  color: var(--c-graphite);
  background: linear-gradient(180deg, transparent 60%, rgba(212,165,116,0.35) 60%);
  padding: 0 4px;
  white-space: nowrap;
}
.t-cta { text-align: right; }
.t-cta a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--c-wa); color: #fff;
  font-family: var(--f-sans); font-size: 13px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}
.t-cta a:hover { background: #1cb557; }

/* ---------- DAY EXCURSIONS ---------- */
.excursions-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 40px;
}
.exc-card {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.exc-card:hover { border-color: var(--c-graphite); transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(31,36,33,0.28); }
.exc-photo { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.exc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.exc-card h4 { font-family: var(--f-display); font-size: 19px; margin: 0; line-height: 1.25; }
.exc-price {
  align-self: flex-start;
  font-family: var(--f-sans); font-weight: 700; color: var(--c-graphite); font-size: 14px;
  background: rgba(212,165,116,0.18); padding: 5px 12px; border-radius: 999px;
}
.exc-price small { font-weight: 500; color: var(--c-muted); }
.exc-card p { margin: 0; font-size: 13.5px; color: #3a3a36; line-height: 1.55; }

/* ---------- TETHYS WOW ---------- */
.tethys {
  background: var(--c-pine);
  color: #f3efe6;
  position: relative;
  overflow: hidden;
}
.tethys::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../images/photo3.webp");
  background-size: cover; background-position: center;
  opacity: 0.22; mix-blend-mode: lighten;
}
.tethys .wrap { position: relative; z-index: 2; }
.tethys h2 { color: #f6efde; max-width: 18ch; }
.tethys p { font-size: 17px; line-height: 1.7; color: rgba(243,239,230,0.92); margin: 22px 0; }
.tethys .ammonite-mark {
  font-family: var(--f-display); font-style: italic; font-size: 14px;
  color: var(--c-amber); margin-bottom: 4px;
}

/* ---------- LEGENDS ---------- */
.legends-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 32px; border-top: 1px solid var(--c-line);
}
.legend {
  padding: 28px 24px;
  border-bottom: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
}
.legend:nth-child(3n) { border-right: none; }
.legend-name {
  font-family: var(--f-display); font-weight: 700; font-size: 22px;
  color: var(--c-graphite); margin-bottom: 4px;
}
.legend-meaning {
  font-family: var(--f-display); font-style: italic; font-size: 14px;
  color: var(--c-cold); margin-bottom: 10px;
}
.legend p { margin: 0; font-size: 14.5px; line-height: 1.55; color: #3a3a36; }
.legends-note {
  margin-top: 28px; padding: 24px; background: var(--c-bg-2);
  font-size: 14.5px; line-height: 1.6;
}

/* ---------- GUIDE ---------- */
.guide-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start; }
.guide-photo {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center top;
  position: relative;
  background-color: var(--c-bg-2);
}
.guide-photo::after {
  content: ""; position: absolute; left: -16px; bottom: -16px;
  width: 110px; height: 110px; background: var(--c-amber); z-index: -1;
}
.guide-photo-wrap { position: relative; }
.guide-content h2 { margin-bottom: 20px; }
.guide-content p { font-size: 16px; line-height: 1.7; margin: 14px 0; }
.team-row {
  margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.team-member { display: flex; flex-direction: column; gap: 8px; }
.team-photo {
  aspect-ratio: 1/1; background: var(--c-bg-2);
  background-size: cover; background-position: center;
  border-radius: 50%;
  width: 80px; height: 80px;
}
.team-name { font-family: var(--f-sans); font-weight: 600; font-size: 14px; }
.team-role { font-size: 12.5px; color: var(--c-muted); }

/* ---------- INCLUDED ---------- */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 36px; }
.incl-col {
  padding: 32px; background: #fff;
  border-radius: 14px;
  border-top: 4px solid var(--c-pine);
}
.incl-col.no { border-top-color: var(--c-cold); }
.incl-col h3 {
  font-family: var(--f-sans); font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 18px;
  color: var(--c-pine);
}
.incl-col.no h3 { color: var(--c-cold); }
.incl-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.incl-list li {
  font-size: 14.5px; line-height: 1.55;
  padding-left: 28px; position: relative;
}
.incl-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 1px; background: var(--c-pine);
}
.incl-col.no li::before { background: var(--c-cold); }
.incl-note { margin-top: 24px; padding: 20px; background: var(--c-bg-2); font-size: 14px; }

/* ---------- COMPARISON TABLE ---------- */
.cmp-table { width: 100%; border-collapse: collapse; margin-top: 32px; font-size: 14px; }
.cmp-table th, .cmp-table td {
  padding: 14px 16px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--c-line);
}
.cmp-table thead th {
  font-family: var(--f-sans); font-size: 13px; font-weight: 700;
  background: var(--c-graphite); color: #f3efe6;
}
.cmp-table thead th:first-child { background: transparent; color: transparent; }
.cmp-table tbody th {
  font-family: var(--f-sans); font-weight: 600; font-size: 13px;
  color: var(--c-cold); width: 200px;
}
.cmp-table .col-our { background: rgba(212,165,116,0.12); font-weight: 600; }

/* ---------- LOGISTICS ---------- */
.logi-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 32px; }
.logi-card {
  padding: 28px; border: 1px solid var(--c-line);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 14px;
}
.logi-icon { font-family: var(--f-display); font-size: 30px; color: var(--c-amber); }
.logi-card h3 { font-family: var(--f-display); font-size: 22px; }
.logi-route { padding: 14px 0; border-top: 1px dashed var(--c-line); font-size: 14px; line-height: 1.55; }
.logi-route b { font-family: var(--f-sans); font-weight: 700; color: var(--c-graphite); display: block; margin-bottom: 4px; }

/* ---------- PLAN B ---------- */
.planb {
  background: var(--c-graphite); color: #f3efe6;
  position: relative; overflow: hidden;
}
.planb::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../images/photo3.webp");
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.planb .wrap { position: relative; z-index: 2; }
.planb h2 { color: #f6efde; max-width: 18ch; }
.planb-quote {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.4;
  color: #f6efde;
  border-left: 3px solid var(--c-amber); padding-left: 24px;
  margin: 32px 0;
  max-width: 60ch;
}
.planb-quote cite { display: block; margin-top: 16px; font-style: normal; font-family: var(--f-sans); font-size: 14px; color: rgba(243,239,230,0.7); font-weight: 500; }
.planb p { color: rgba(243,239,230,0.88); }
.planb ul { padding-left: 22px; line-height: 1.7; color: rgba(243,239,230,0.88); }
.planb-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(243,239,230,0.18);
}
.pillar h4 { color: var(--c-amber); font-family: var(--f-sans); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.pillar p { font-size: 14.5px; margin: 0; }

/* ---------- LODGING ---------- */
.lodging-photos {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 8px;
  margin-bottom: 44px; aspect-ratio: 16/7;
  border-radius: 14px; overflow: hidden;
}
.lodging-photos > div { background-size: cover; background-position: center; background-color: var(--c-bg-2); position: relative; }
.lodging-photos > div span {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(31,36,33,0.7); color: #fff;
  font-size: 11px; padding: 4px 10px; letter-spacing: 0.06em;
  font-family: var(--f-sans);
}
.lodging-list {
  columns: 2;
  column-gap: clamp(40px, 5vw, 72px);
  column-rule: 1px solid var(--c-line);
  margin-top: 4px;
}
.lodging-item {
  break-inside: avoid;
  padding: 22px 0 24px;
  border-top: 1px solid var(--c-line);
}
.lodging-item h4 { font-family: var(--f-display); font-size: 19px; margin: 0 0 8px; color: var(--c-graphite); line-height: 1.25; }
.lodging-item p { font-size: 15px; margin: 0; line-height: 1.65; color: #3a3a36; }
.lodging-cta { margin-top: 32px; }
@media (max-width: 720px) {
  .lodging-list { columns: 1; }
  .lodging-item { padding: 20px 0 22px; }
  .lodging-item h4 { font-size: 18px; }
}

/* ---------- GASTRO ---------- */
.gastro-section { background: #1F2421; color: #f3efe6; }
.gastro-section h2 { color: #f6efde; }
.gastro-section .lead { color: rgba(243,239,230,0.85); }
.gastro-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.gastro-table tr { border-bottom: 1px solid rgba(243,239,230,0.16); }
.gastro-table td { padding: 18px 0; vertical-align: top; }
.gastro-day {
  font-family: var(--f-display); font-size: 38px; color: var(--c-amber);
  width: 90px;
}
.gastro-meal { font-size: 15.5px; line-height: 1.55; color: rgba(243,239,230,0.92); }

/* ---------- BOOKING STEPS ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
.step {
  padding: 28px 24px; background: #fff; border: 1px solid var(--c-line);
  border-radius: 14px;
  position: relative;
}
.step-num {
  font-family: var(--f-display); font-size: 13px; letter-spacing: 0.12em;
  color: var(--c-amber); font-weight: 700; margin-bottom: 14px;
}
.step h4 { font-family: var(--f-display); font-size: 19px; margin: 0 0 10px; }
.step p { margin: 0; font-size: 14px; color: #3a3a36; line-height: 1.55; }
.refund-strip {
  margin-top: 28px; padding: 28px; background: var(--c-bg-2);
}
.refund-strip h4 { font-family: var(--f-sans); font-weight: 700; font-size: 15px; margin: 0 0 14px; }
.refund-strip ul { margin: 0; padding-left: 20px; line-height: 1.7; font-size: 14.5px; }

/* ---------- TERMS / DISCOUNTS ---------- */
.terms-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 36px; }
.terms-col h3 { font-family: var(--f-sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; color: var(--c-cold); }
.terms-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; line-height: 1.55; }
.terms-col li { padding-left: 18px; position: relative; }
.terms-col li::before { content: "·"; position: absolute; left: 4px; top: -2px; color: var(--c-amber); font-weight: 800; font-size: 18px; }

/* ---------- REVIEWS ---------- */
.reviews-carousel { position: relative; margin-top: 36px; }
.reviews-track {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 4px 10px; margin: -4px -4px 0;
  scrollbar-width: none; cursor: grab;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.grabbing { cursor: grabbing; scroll-behavior: auto; }
.reviews-track .review { flex: 0 0 clamp(280px, 42%, 440px); scroll-snap-align: start; }
.rev-arrow {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--c-line); background: #fff; color: var(--c-graphite);
  font-family: var(--f-display); font-size: 26px; line-height: 1;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(31,36,33,0.14); transition: all 0.18s ease;
}
.rev-arrow:hover { background: var(--c-graphite); color: #fff; border-color: var(--c-graphite); }
.rev-arrow:disabled { opacity: 0; pointer-events: none; }
.rev-prev { left: -22px; }
.rev-next { right: -22px; }
.rev-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.rev-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: var(--c-line); transition: all 0.22s ease; cursor: pointer; }
.rev-dot.active { background: var(--c-amber); width: 26px; border-radius: 4px; }
@media (max-width: 900px) {
  .rev-prev { left: 2px; } .rev-next { right: 2px; }
  .reviews-track .review { flex-basis: 86%; }
}
.review {
  padding: 32px; background: #fff; border: 1px solid var(--c-line);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-quote {
  font-family: var(--f-display); font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--c-graphite);
}
.review-author {
  display: flex; align-items: center; gap: 14px; padding-top: 12px; border-top: 1px solid var(--c-line);
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-pine); color: var(--c-amber);
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 18px;
}
.review-name { font-family: var(--f-sans); font-weight: 700; font-size: 14.5px; }
.review-tour { font-size: 13px; color: var(--c-muted); }

/* ---------- FAQ ---------- */
/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--c-graphite); color: #f3efe6;
  text-align: center; padding: 110px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../images/winter1.jpg");
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.final-cta .wrap { position: relative; z-index: 2; }
.final-cta h2 {
  color: #f6efde; font-size: clamp(32px, 4.4vw, 60px); margin-bottom: 24px;
}
.final-cta p { color: rgba(243,239,230,0.85); font-size: 17px; margin-bottom: 32px; }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer {
  background: #181c19; color: rgba(243,239,230,0.7);
  padding: 60px 0 32px; font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer h5 {
  font-family: var(--f-sans); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-amber); font-weight: 600;
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: rgba(243,239,230,0.7); text-decoration: none; }
.footer a:hover { color: #f3efe6; }
.footer-brand { font-family: var(--f-display); color: #f3efe6; font-size: 22px; margin-bottom: 12px; }
.footer-bot { padding-top: 28px; border-top: 1px solid rgba(243,239,230,0.12); font-size: 12.5px; line-height: 1.6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .formats-grid, .excursions-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-layout { grid-template-columns: 1fr; gap: 40px; }
  .numbers-photo { order: -1; aspect-ratio: 16 / 9; min-height: 0; }
  .numbers-list { grid-template-columns: 1fr; padding-top: 0; }
  .num-cell { flex-direction: row; align-items: center; gap: 28px; padding: 22px 0; border-left: none; border-bottom: 1px solid rgba(243,239,230,0.18); }
  .num-cell:last-child { border-bottom: none; }
  .num-big { min-width: 150px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-pane { max-width: none; margin-left: 0; width: auto; padding: 72px var(--pad-x) 48px; border-right: none; }
  .hero-photo-pane { min-height: 360px; }
  .special-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .terms-grid, .logi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --pad-x: 20px; }
  .faq-tabs { grid-template-columns: 1fr 1fr; gap: 8px; }
  .faq-tab { min-height: 90px; padding: 14px 16px; }
  .faq-tab-title { font-size: 14px; }
  .faq-tab-icon { font-size: 18px; }
  .quiz-rec { grid-template-columns: 70px 1fr auto; gap: 12px; padding: 12px; }
  .quiz-rec img { width: 70px; height: 56px; }
  .quiz-rec h4 { font-size: 15px; }
  .header-phone { display: none; }
  .formats-grid { grid-template-columns: 1fr; }
  .included-grid, .planb-pillars { grid-template-columns: 1fr; gap: 24px; }
  .num-cell { flex-direction: column; align-items: flex-start; gap: 10px; }
  .special-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .special-card { aspect-ratio: 4/5; }
  .special-content { padding: 16px 14px; }
  .special-content h4 { font-size: 16px; }
  .special-content p { font-size: 12px; }
  .quiz-card { grid-template-columns: 1fr; min-height: auto; }
  .quiz-illustration { min-height: 200px; padding: 24px; }
  .quiz-body-wrap { padding: 28px 22px; }
  /* Таблица сравнения — на мобайле карточками, без горизонтального скролла */
  #compare .h-scroll { overflow-x: visible; }
  .cmp-table, .cmp-table tbody, .cmp-table tbody tr, .cmp-table tbody th, .cmp-table tbody td { display: block; }
  .cmp-table thead { display: none; }
  .cmp-table { font-size: 13px; margin-top: 24px; }
  .cmp-table tbody tr {
    background: #fff; border: 1px solid var(--c-line); border-radius: 12px;
    padding: 14px 16px; margin-bottom: 14px;
  }
  .cmp-table tbody th {
    width: auto; padding: 0 0 10px; margin-bottom: 8px;
    border-bottom: 1px solid var(--c-line);
    font-family: var(--f-display); font-weight: 600; font-size: 15px;
    color: var(--c-graphite);
  }
  .cmp-table tbody td {
    display: grid; grid-template-columns: 88px 1fr; gap: 12px; align-items: start;
    padding: 7px 8px; border: none; border-radius: 6px;
    font-size: 13.5px; line-height: 1.4;
  }
  .cmp-table tbody td::before {
    content: attr(data-label);
    font-family: var(--f-sans); font-weight: 700; font-size: 11.5px;
    letter-spacing: 0.03em; color: var(--c-cold);
  }
  .cmp-table tbody td.col-our { background: rgba(212,165,116,0.16); }
  .cmp-table tbody td.col-our::before { color: #a9762f; }
  .gastro-day { font-size: 28px; width: 60px; }
  .gastro-meal { font-size: 14px; }
  .steps-grid { grid-template-columns: 1fr; }
  .legends-grid { grid-template-columns: 1fr; }
  .legend, .legend:nth-child(3n) { border-right: none; }
  .tour-table { margin-top: 24px; }
  .tour-table thead { display: none; }
  .tour-table tbody tr {
    display: block;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 14px;
    overflow: hidden;
  }
  .tour-table tbody tr:hover { background: #fff; }
  .tour-table tbody td { display: block; padding: 0; border: none; }
  .tour-table .t-cover { width: 100%; }
  .tour-table .t-cover img {
    width: 100%; height: 200px; object-fit: cover; border-radius: 0;
  }
  .tour-table .t-name-cell { padding: 16px 18px 4px; }
  .tour-table .t-name { font-size: 19px; }
  .tour-table .t-fullname { padding: 4px 18px 12px; max-width: none; }
  .tour-table .t-meta { padding: 0 18px 12px; white-space: normal; }
  .tour-table .t-meta b { display: inline; font-size: 14px; }
  .tour-table .t-meta span { font-size: 13px; }
  .tour-table .t-meta span:before { content: " · "; color: var(--c-muted); }
  .tour-table .t-base { padding: 0 18px 16px; font-size: 14px; line-height: 1.45; color: var(--c-text); }
  .tour-table .t-price-cell {
    padding: 14px 18px;
    border-top: 1px solid var(--c-line);
    background: var(--c-bg-2);
  }
  .tour-table .t-price-cell .t-price { font-size: 24px; }
  .tour-table .t-cta { padding: 14px 18px; text-align: right; border-top: 1px solid var(--c-line); }
  .tour-table .t-cta a { padding: 12px 18px; font-size: 14px; width: 100%; justify-content: center; }
  .lodging-photos { aspect-ratio: 4/5; grid-template-columns: 1fr; grid-template-rows: 1.4fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: none; }
  .scroll-indicator { display: none; }
}


/* ---------- Узкий телефон (iPhone SE, маленькие Android) ---------- */
@media (max-width: 480px) {
  :root { --pad-x: 16px; }
  h1 { font-size: clamp(28px, 8vw, 42px); }
  h2 { font-size: clamp(24px, 6vw, 32px); }
  .num-big { font-size: clamp(36px, 13vw, 52px); }
  .hero-markers { gap: 6px 12px; font-size: 13px; }
  .header-cta { gap: 6px; }
  .icon-btn { width: 38px; height: 38px; }
  .quiz-illustration { min-height: 160px; padding: 20px; }
  .quiz-illustration h3 { font-size: 20px; }
  .quiz-body-wrap { padding: 24px 18px; }
  .special-grid { grid-template-columns: 1fr; }
  .special-card { aspect-ratio: 16/9; }
  .lodging-photos { aspect-ratio: auto; }
  .lodging-photos > div { min-height: 180px; }
  .gastro-day { font-size: 24px; width: 48px; }
  .planb-quote { padding-left: 16px; font-size: 18px; }
  .footer { padding: 40px 0 24px; }
}



/* ---------- INNER CONTENT WRAPPERS ---------- */
/* Применяются ВНУТРИ .wrap для ограничения ширины текстовых блоков */
.content-narrow  { max-width: 880px; }
.content-medium  { max-width: 920px; }
.content-tight   { max-width: 720px; }
.content-center  { margin-left: auto; margin-right: auto; }

/* Единая ширина шапки секции: заголовок и лид — 70% ширины секции */
.section-head { max-width: none; }
.section-head h2, .section-head .lead { max-width: 70%; }
.section-head .h2-tight, .section-head .h2-wide, .section-head .h2-medium { max-width: 70%; }
.section-head .lead-narrow { max-width: 70%; }
.numbers .section-head h2, .numbers .section-head .lead { max-width: none; }
@media (max-width: 900px) {
  .section-head h2, .section-head .lead,
  .section-head .h2-tight, .section-head .h2-wide, .section-head .h2-medium,
  .section-head .lead-narrow { max-width: none; }
}


.final-cta-content { max-width: 720px; margin: 0 auto; }



/* ---------- TOUR DETAIL MODAL ---------- */
.tour-modal {
  position: fixed; inset: 0;
  background: rgba(31, 36, 33, 0.78);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 40px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.tour-modal.is-open {
  display: flex;
  opacity: 1;
}
.tour-modal-card {
  background: var(--c-bg);
  max-width: 880px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
  position: relative;
  animation: tour-slide-in 0.3s ease;
}
@keyframes tour-slide-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.tour-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--c-graphite);
  z-index: 5;
  transition: background 0.15s;
}
.tour-modal-close:hover { background: var(--c-amber); }
.tour-modal-cover {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tour-modal-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,36,33,0.0) 50%, rgba(31,36,33,0.85) 100%);
}
.tour-modal-cover-content {
  position: absolute;
  left: 32px; right: 32px; bottom: 24px;
  z-index: 1;
  color: #f6efde;
}
.tour-modal-eyebrow {
  font-family: var(--f-sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-amber); font-weight: 700;
  margin-bottom: 10px;
}
.tour-modal-cover-content h2 {
  font-family: var(--f-display); font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2; margin: 0; color: #fff; max-width: 22ch;
}
.tour-modal-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-sans); font-size: 14px;
}
.tour-modal-meta b { color: var(--c-graphite); display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-cold); margin-bottom: 4px; }
.tour-modal-body {
  padding: 32px;
}
.tour-modal-body h3 {
  font-family: var(--f-display); font-size: 20px;
  margin: 0 0 14px; color: var(--c-graphite);
}
.tour-modal-body h3:not(:first-child) { margin-top: 32px; }
.tour-modal-body p { line-height: 1.65; }
.tour-day {
  border-left: 2px solid var(--c-amber);
  padding: 4px 0 12px 18px;
  margin-bottom: 20px;
}
.tour-day-num {
  font-family: var(--f-sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-cold); font-weight: 700;
  margin-bottom: 6px;
}
.tour-day-title {
  font-family: var(--f-display); font-size: 17px;
  font-weight: 600; color: var(--c-graphite);
  margin-bottom: 8px;
}
.tour-day p { margin: 0; font-size: 14.5px; line-height: 1.6; }
.tour-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.tour-includes li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
}
.tour-includes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  color: var(--c-amber);
  font-weight: 700;
}
.tour-modal-footer {
  padding: 24px 32px;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.tour-modal-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.tour-modal-price-label {
  font-family: var(--f-sans); font-weight: 400;
  font-size: 11px; line-height: 1;
  color: var(--c-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tour-modal-price-value {
  font-family: var(--f-display); font-weight: 700;
  font-size: 28px; line-height: 1.1;
  color: var(--c-graphite);
}
.tour-modal-price-sub {
  font-family: var(--f-sans); font-weight: 500;
  font-size: 12px; line-height: 1.3;
  color: var(--c-muted);
  margin-top: 2px;
}

/* Lead — короткий вступительный абзац */
.tour-modal-lead {
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-graphite);
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}

/* Info-row — горизонтальная плитка фактов */
.tour-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 18px;
  background: var(--c-bg-2);
  border-radius: 10px;
}
.tour-info-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.tour-info-cell-label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-cold);
  font-weight: 700;
}
.tour-info-cell-value {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-graphite);
  line-height: 1.3;
}

/* Two-column: что включено / что не входит */
.tour-include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin: 0 0 8px;
}
.tour-include-col h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tour-include-col.col-yes h4 { color: var(--c-pine); }
.tour-include-col.col-no h4 { color: var(--c-cold); }
.tour-include-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour-include-col li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
}
.tour-include-col.col-yes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--c-pine);
  font-weight: 700;
}
.tour-include-col.col-no li::before {
  content: "—";
  position: absolute;
  left: 0; top: 0;
  color: var(--c-cold);
  font-weight: 700;
}

/* На мобильном — в один столбец */
@media (max-width: 720px) {
  .tour-include-grid { grid-template-columns: 1fr; gap: 20px; }
  .tour-info-row { grid-template-columns: 1fr 1fr; gap: 14px; padding: 16px; }
}

/* Курсор-указатель на карточках туров */
.tour-table tbody tr,
.exc-card { cursor: pointer; }
.exc-card { transition: transform 0.2s ease, border-color 0.2s ease; }
.exc-card:hover { transform: translateY(-2px); border-color: var(--c-graphite); }

/* Мобильная адаптация модалки */
@media (max-width: 720px) {
  .tour-modal { padding: 20px 12px; }
  .tour-modal-cover { height: 200px; }
  .tour-modal-cover-content { left: 20px; right: 20px; bottom: 18px; }
  .tour-modal-meta { padding: 18px 20px; gap: 16px; }
  .tour-modal-body { padding: 24px 20px; }
  .tour-modal-footer { padding: 18px 20px; }
  .tour-includes { grid-template-columns: 1fr; }
}



/* ============================================================
   PICKER — «Сборщик маршрута» (вместо квиза)
   ============================================================ */
.picker-section {
  background: linear-gradient(180deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
}
.picker-head {
  margin-bottom: 40px;
}

.picker {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  margin-bottom: 24px;
}
.picker-steps {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 32px;
  min-height: 460px;
  position: relative;
}

/* === Заголовок шага === */
.picker-step-eyebrow {
  font-family: var(--f-sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-cold); font-weight: 700;
  margin-bottom: 10px;
}
.picker-step-title {
  font-family: var(--f-display); font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600; line-height: 1.25;
  margin: 0 0 24px; color: var(--c-graphite);
  max-width: 24ch;
}
.picker-step-hint {
  font-size: 14px; color: var(--c-muted);
  margin: -16px 0 24px;
}

/* === Карточки сезонов (шаг 1) === */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.season-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover; background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.season-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,36,33,0.0) 30%, rgba(31,36,33,0.85) 100%);
}
.season-card:hover { transform: translateY(-3px); }
.season-card.is-selected {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 4px rgba(212,165,116,0.2);
}
.season-card.is-selected::after {
  content: "✓"; position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-amber); color: var(--c-graphite);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; z-index: 1;
}
.season-card-content {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  color: #fff; z-index: 1;
}
.season-card h4 {
  font-family: var(--f-display); font-size: 18px;
  margin: 0 0 4px; color: #f6efde;
  line-height: 1.2;
}
.season-card p {
  margin: 0; font-size: 12px;
  color: rgba(246,239,222,0.85);
}

/* === Карточки длительности (шаг 2) === */
.duration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.duration-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px;
  background: var(--c-bg-2);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  transition: all 0.2s ease;
}
.duration-card:hover { background: #fff; border-color: var(--c-line); }
.duration-card.is-selected {
  background: #fff; border-color: var(--c-amber);
  box-shadow: 0 4px 18px -8px rgba(212,165,116,0.4);
}
.duration-num {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  background: var(--c-graphite); color: #f6efde;
  border-radius: 8px;
  padding: 14px;
}
.duration-num b {
  font-family: var(--f-display); font-size: 30px;
  line-height: 1; font-weight: 700;
}
.duration-num span {
  font-family: var(--f-sans); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-amber); margin-top: 4px;
}
.duration-info h4 {
  font-family: var(--f-display); font-size: 17px;
  margin: 0 0 4px; color: var(--c-graphite);
}
.duration-info p {
  margin: 0; font-size: 13px; color: var(--c-muted);
  line-height: 1.45;
}

/* === Чек-карточки активностей (шаг 3, multi-select) === */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.activity-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover; background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.activity-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,36,33,0.1) 0%, rgba(31,36,33,0.85) 100%);
}
.activity-card:hover { transform: translateY(-3px); }
.activity-card.is-selected {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 4px rgba(212,165,116,0.2);
}
.activity-card-check {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  font-weight: 700; color: var(--c-graphite);
  z-index: 2;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s;
}
.activity-card.is-selected .activity-card-check {
  opacity: 1;
  background: var(--c-amber);
}
.activity-card-content {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  z-index: 1; color: #fff;
}
.activity-card h4 {
  font-family: var(--f-display); font-size: 17px;
  margin: 0; color: #f6efde; line-height: 1.2;
}
.activity-card p {
  margin: 4px 0 0; font-size: 12px;
  color: rgba(246,239,222,0.85);
}
.picker-multi-hint {
  font-size: 13px; color: var(--c-muted);
  margin-top: 12px; text-align: center;
}

/* === Пилюли группы (шаг 4) === */
.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.party-pill {
  padding: 18px 14px;
  background: var(--c-bg-2);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--f-sans);
  text-align: center;
  transition: all 0.2s;
}
.party-pill:hover { background: #fff; border-color: var(--c-line); }
.party-pill.is-selected {
  background: #fff; border-color: var(--c-amber);
}
.party-icon {
  font-size: 28px; margin-bottom: 8px; line-height: 1;
}
.party-pill b {
  display: block;
  font-family: var(--f-display); font-size: 15px;
  font-weight: 600; color: var(--c-graphite);
  margin-bottom: 2px;
}
.party-pill span {
  font-size: 12px; color: var(--c-muted);
}

/* === Бюджет (шаг 5) === */
.budget-wrap {
  padding: 16px 0;
}
.budget-display {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--c-graphite);
  margin-bottom: 6px;
  text-align: center;
}
.budget-display small {
  font-size: 0.4em; color: var(--c-muted);
  font-weight: 400; display: block;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 4px;
}
.budget-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 8px;
  margin: 24px 0;
}
.budget-slider::-webkit-slider-runnable-track {
  height: 8px;
  background: linear-gradient(to right, var(--c-amber) 0%, var(--c-amber) var(--budget-pos, 50%), var(--c-bg-2) var(--budget-pos, 50%), var(--c-bg-2) 100%);
  border-radius: 4px;
}
.budget-slider::-moz-range-track {
  height: 8px;
  background: var(--c-bg-2);
  border-radius: 4px;
}
.budget-slider::-moz-range-progress {
  height: 8px;
  background: var(--c-amber);
  border-radius: 4px;
}
.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  background: var(--c-graphite);
  border: 4px solid #fff;
  border-radius: 50%;
  margin-top: -9px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31,36,33,0.25);
}
.budget-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  background: var(--c-graphite);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31,36,33,0.25);
}
.budget-marks {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--c-cold);
  letter-spacing: 0.08em;
  font-family: var(--f-sans);
}

/* === Sidebar результаты === */
.picker-results {
  background: var(--c-graphite);
  color: #f6efde;
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.picker-results-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(246,239,222,0.12);
}
.picker-results-eyebrow {
  font-family: var(--f-sans); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-amber); font-weight: 700;
}
.picker-results-count {
  font-family: var(--f-display); font-size: 14px;
  color: rgba(246,239,222,0.7);
}
.picker-results-list {
  display: flex; flex-direction: column; gap: 10px;
}
.picker-result {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px; align-items: center;
  background: rgba(246,239,222,0.06);
  border: 1px solid rgba(246,239,222,0.08);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: all 0.2s;
}
.picker-result:hover {
  background: rgba(246,239,222,0.12);
  border-color: var(--c-amber);
}
.picker-result.is-best {
  border-color: var(--c-amber);
  background: rgba(212,165,116,0.1);
}
.picker-result-img {
  width: 56px; height: 56px;
  background-size: cover; background-position: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.picker-result-info h5 {
  font-family: var(--f-display); font-size: 14px;
  margin: 0 0 3px; color: #f6efde;
  line-height: 1.2;
}
.picker-result-info p {
  margin: 0; font-size: 11.5px;
  color: rgba(246,239,222,0.65);
}
.picker-result-best {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 2px;
}
.picker-results-empty {
  text-align: center;
  padding: 30px 0;
  color: rgba(246,239,222,0.55);
  font-size: 14px;
  line-height: 1.55;
}

/* === Навигация шагов === */
.picker-nav {
  display: grid;
  grid-template-columns: 100px 1fr 180px;
  align-items: center;
  gap: 24px;
  padding: 20px 0 0;
}
.picker-nav-back {
  background: transparent;
  border: 1px solid var(--c-line);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--f-sans); font-size: 13px; font-weight: 600;
  color: var(--c-graphite);
  cursor: pointer;
  transition: all 0.15s;
}
.picker-nav-back:hover { background: var(--c-bg-2); }
.picker-nav-progress {
  font-family: var(--f-sans); font-size: 13px;
  color: var(--c-muted); text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.picker-nav-progress span {
  color: var(--c-graphite);
}
.picker-progress-bar {
  width: 100%; max-width: 220px;
  height: 4px; background: var(--c-line);
  border-radius: 2px; margin: 8px auto 0;
  overflow: hidden;
}
.picker-progress-fill {
  height: 100%; background: var(--c-amber);
  width: 20%; transition: width 0.3s ease;
  border-radius: 2px;
}
.picker-nav-next { justify-self: end; }
.picker-nav-next:disabled {
  opacity: 0.4; cursor: not-allowed; transform: none;
}

/* === Финальный экран === */
.picker-finish {
  text-align: center;
  padding: 40px 20px;
}
.picker-finish-icon {
  width: 64px; height: 64px;
  background: var(--c-amber);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 28px; color: var(--c-graphite);
  margin-bottom: 20px;
}
.picker-finish h3 {
  font-family: var(--f-display); font-size: 28px;
  margin: 0 0 10px; color: var(--c-graphite);
}
.picker-finish p {
  color: var(--c-muted);
  margin: 0 0 28px;
  max-width: 50ch; margin-left: auto; margin-right: auto;
}
.picker-finish-results {
  display: grid; gap: 14px;
  max-width: 520px;
  margin: 0 auto 28px;
}
.picker-finish-result {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px; align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  transition: all 0.2s;
}
.picker-finish-result:hover {
  border-color: var(--c-graphite);
  transform: translateY(-2px);
}
.picker-finish-result img {
  width: 90px; height: 70px;
  object-fit: cover; border-radius: 6px;
}
.picker-finish-result h4 {
  font-family: var(--f-display); margin: 0 0 4px;
  font-size: 17px; color: var(--c-graphite);
}
.picker-finish-result p {
  margin: 0; font-size: 13px; color: var(--c-muted);
}
.picker-finish-arrow {
  font-size: 22px; color: var(--c-amber);
}
.picker-finish-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}


/* ============================================================
   KB — «Что важно знать» (вместо FAQ-аккордеона)
   ============================================================ */
.kb {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.kb-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.kb-card:hover {
  border-color: var(--c-graphite);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(31,36,33,0.18);
}
.kb-card.is-active {
  background: var(--c-graphite);
  border-color: var(--c-graphite);
  color: #f6efde;
}
.kb-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--c-bg-2);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--c-pine);
  transition: all 0.2s;
}
.kb-card.is-active .kb-icon {
  background: var(--c-amber);
  color: var(--c-graphite);
}
.kb-card h4 {
  font-family: var(--f-display); font-size: 18px;
  margin: 0 0 8px; line-height: 1.25;
  color: inherit;
}
.kb-preview {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-muted);
  margin: 0;
  flex: 1;
}
.kb-card.is-active .kb-preview { color: rgba(246,239,222,0.7); }
.kb-card-count {
  margin-top: 16px;
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-amber);
  display: flex; align-items: center; gap: 8px;
}
.kb-card-count::after {
  content: "↓";
  transition: transform 0.25s;
  font-size: 14px;
}
.kb-card.is-active .kb-card-count::after { transform: rotate(180deg); }

/* Раскрывающаяся панель с вопросами выбранной категории */
.kb-detail {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 32px 36px;
  margin-top: 4px;
  display: none;
  animation: kb-slide 0.3s ease;
}
.kb-detail.is-open { display: block; }
@keyframes kb-slide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.kb-detail-q {
  border-bottom: 1px solid var(--c-line);
  padding: 18px 0;
}
.kb-detail-q:first-child { padding-top: 0; }
.kb-detail-q:last-child { border-bottom: none; padding-bottom: 0; }
.kb-detail-q h5 {
  font-family: var(--f-display); font-size: 17px;
  margin: 0 0 8px; color: var(--c-graphite);
  font-weight: 600;
}
.kb-detail-q p {
  margin: 0; font-size: 15px; line-height: 1.65;
  color: #3a3a36;
  max-width: 72ch;
}

.kb-cta-row {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--c-graphite);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #f6efde;
}
.kb-cta-row p {
  margin: 0; font-size: 15px; line-height: 1.5;
  color: rgba(246,239,222,0.85);
  max-width: 50ch;
}


/* ============================================================
   Адаптивность picker и kb
   ============================================================ */
@media (max-width: 1024px) {
  .picker { grid-template-columns: 1fr; }
  .picker-results {
    position: static;
    max-height: none;
  }
  /* Мобильная навигация квиза — закреплённая панель действий,
     чтобы «Дальше» всегда была под рукой сразу после выбора. */
  .picker-nav {
    position: sticky; bottom: 0; z-index: 30;
    background: var(--c-bg);
    margin-top: 4px; padding: 14px 0 16px;
    border-top: 1px solid var(--c-line);
    box-shadow: 0 -10px 24px -14px rgba(31,36,33,0.3);
  }
  .picker-results-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .kb { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .picker-steps { padding: 24px 20px; min-height: auto; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .duration-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .activity-card { aspect-ratio: 16/9; }
  .party-grid { grid-template-columns: 1fr 1fr; }
  .picker-nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .picker-nav-next { padding: 12px 18px; font-size: 13px; }
  .picker-nav-back { padding: 8px 14px; font-size: 12px; }
  .picker-nav-progress { font-size: 11px; }
  .picker-results-list { grid-template-columns: 1fr; }
  .kb { grid-template-columns: 1fr; gap: 10px; }
  .kb-card { min-height: auto; padding: 20px; }
  .kb-detail { padding: 24px 22px; }
  .kb-cta-row { padding: 20px; flex-direction: column; align-items: flex-start; }
  .picker-finish-result { grid-template-columns: 70px 1fr auto; gap: 12px; padding: 12px; }
  .picker-finish-result img { width: 70px; height: 56px; }
}

/* Subtle reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- UTILITY HELPERS ---------- */
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mt-36 { margin-top: 36px; }
.h2-tight { max-width: 22ch; }
.h2-wide { max-width: 28ch; }
.lead-narrow { max-width: 64ch; }
.text-muted { color: var(--c-muted); }
.text-amber { color: var(--c-amber); }
.row-flex { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.row-flex p { margin: 0; }
.num-unit { font-size: 0.5em; color: rgba(243,239,230,0.6); margin-left: 0.15em; }
.eyebrow-amber { color: var(--c-amber); }
h2 em, h3 em { font-style: normal; color: var(--c-amber); font-weight: 500; }

.section-bg-light { background: var(--c-bg-2); }
.disclaimer { margin-top: 28px; font-size: 13.5px; color: var(--c-muted); }
.tethys-cta { font-family: var(--f-display); font-style: italic; font-size: 20px; color: var(--c-amber); }
.btn-mt-8 { margin-top: 8px; }

.row-flex-text { margin: 0; max-width: 56ch; }

.h-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.h-32 { height: 32px; }
.callout-box { margin-top: 28px; padding: 24px; background: var(--c-bg-2); border-radius: 8px; }
.callout-box p { margin: 0 0 12px; }
.callout-box p:last-child { margin-bottom: 0; }
.cmp-summary { margin-top: 28px; max-width: 64ch; }
.h2-medium { max-width: 26ch; }
.planb-list-title { color: #f6efde; font-weight: 600; }
.quote-intro { margin-top: 20px; }
.addr-p { margin: 0; }


/* ---------- SEO content block ---------- */
.seo-content {
  padding: 80px 0;
}
.seo-tours-grid {
  columns: 2;
  column-gap: clamp(40px, 5vw, 72px);
  column-rule: 1px solid var(--c-line);
  margin-top: 44px;
  counter-reset: seo;
}
.seo-tour {
  break-inside: avoid;
  counter-increment: seo;
  position: relative;
  padding: 20px 0 22px 44px;
  border-top: 1px solid var(--c-line);
}
.seo-tour::before {
  content: counter(seo, decimal-leading-zero);
  position: absolute; left: 0; top: 22px;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  color: var(--c-amber); letter-spacing: 0.06em;
}
.seo-tour h3 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--c-graphite);
  line-height: 1.3;
}
.seo-tour p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #3a3a36;
}
.seo-tour p:last-child { margin-bottom: 0; }
.seo-tour-incl {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.seo-tour-incl li {
  font-size: 12.5px;
  color: var(--c-cold);
  background: rgba(70, 95, 90, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.3;
}
@media (max-width: 720px) {
  .seo-tours-grid { columns: 1; }
  .seo-content { padding: 60px 0; }
}


.lead-secondary { margin-top: 12px; color: var(--c-muted); }

/* ===== Grid alignment & section-head refinements ===== */
.planb-quote { max-width: none; }
.planb-content { max-width: none; }
.planb-content .quote-intro { max-width: none; }



.row-flex { justify-content: space-between; flex-wrap: nowrap; gap: 40px; }
.row-flex-text { max-width: 74ch; }
@media (max-width: 720px) { .row-flex { flex-wrap: wrap; gap: 16px; } }

.picker-head { text-align: left; }

#formats { position: relative; overflow: hidden; }
#formats > .wrap { position: relative; }
#formats .formats-grid { position: relative; z-index: 1; }

/* Day-excursions editorial rhythm: feature / duo (2 col) / trio (3 col) / feature */
.exc-card:first-child,
.exc-card:last-child { grid-column: span 6; flex-direction: row; }
.exc-card:first-child .exc-photo,
.exc-card:last-child .exc-photo { flex: 0 0 46%; aspect-ratio: auto; min-height: 360px; }
.exc-card:first-child .exc-body,
.exc-card:last-child .exc-body { flex: 1; justify-content: center; padding: 34px clamp(28px, 3vw, 44px); gap: 14px; }
.exc-card:first-child h4,
.exc-card:last-child h4 { font-size: clamp(22px, 2.2vw, 30px); max-width: 20ch; }
.exc-card:first-child p,
.exc-card:last-child p { font-size: 15px; max-width: 54ch; }

.exc-card:nth-child(2), .exc-card:nth-child(3) { grid-column: span 3; }
.exc-card:nth-child(2) .exc-photo, .exc-card:nth-child(3) .exc-photo { aspect-ratio: 16/9; }
.exc-card:nth-child(4), .exc-card:nth-child(5), .exc-card:nth-child(6) { grid-column: span 2; }

@media (max-width: 900px) {
  .exc-card:nth-child(4), .exc-card:nth-child(5), .exc-card:nth-child(6) { grid-column: span 3; }
  .exc-card:nth-child(6) { grid-column: span 6; }
  .exc-card:nth-child(6) .exc-photo { aspect-ratio: 21/9; }
}
@media (max-width: 720px) {
  .excursions-grid { gap: 14px; }
  .exc-card, .exc-card:first-child, .exc-card:last-child { grid-column: span 6; flex-direction: column; }
  .exc-card:first-child .exc-photo, .exc-card:last-child .exc-photo,
  .exc-card:nth-child(6) .exc-photo { flex: none; aspect-ratio: 4/3; min-height: 0; }
  .exc-card:first-child .exc-body, .exc-card:last-child .exc-body { padding: 22px 22px 24px; }
}

/* ===== Lead request modal ===== */
.lead-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; background: rgba(31,36,33,0.62); backdrop-filter: blur(4px); }
.lead-modal[hidden] { display: none; }
.lead-modal-card { position: relative; width: 100%; max-width: 460px; background: var(--c-bg); border-radius: 14px; padding: 40px 36px 32px; box-shadow: 0 24px 60px rgba(31,36,33,0.35); max-height: 92vh; overflow-y: auto; }
.lead-modal-close { position: absolute; top: 14px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: none; background: transparent; font-size: 26px; line-height: 1; color: var(--c-muted); transition: all 0.18s ease; }
.lead-modal-close:hover { background: var(--c-bg-2); color: var(--c-graphite); }
.lead-modal-head h2 { font-size: clamp(24px, 3vw, 30px); margin: 10px 0 12px; }
.lead-modal-head p { margin: 0 0 24px; color: #3a3a36; font-size: 15px; line-height: 1.55; }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.lead-field { display: flex; flex-direction: column; gap: 6px; }
.lead-field span { font-family: var(--f-sans); font-size: 13px; font-weight: 600; color: var(--c-graphite); }
.lead-field input, .lead-field textarea { font: inherit; font-size: 15px; padding: 12px 14px; border: 1px solid var(--c-line); border-radius: 8px; background: #fff; color: var(--c-text); width: 100%; box-sizing: border-box; resize: vertical; }
.lead-field input:focus, .lead-field textarea:focus { outline: none; border-color: var(--c-cold); box-shadow: 0 0 0 3px rgba(92,122,122,0.15); }
.lead-field.invalid input, .lead-field.invalid textarea { border-color: #c0492e; }
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-submit { justify-content: center; margin-top: 4px; }
.lead-note { margin: 0; font-size: 12px; color: var(--c-muted); line-height: 1.5; }
.lead-status { margin: 4px 0 0; font-size: 14px; font-weight: 600; padding: 12px 14px; border-radius: 8px; }
.lead-status.ok { background: rgba(37,211,102,0.12); color: #1a8a44; }
.lead-status.err { background: rgba(192,73,46,0.1); color: #c0492e; }
body.lead-open { overflow: hidden; }

/* ===== review round 5: ridge decor, consent, legal page ===== */
.deco-ridge { position: relative; overflow: hidden; }
.deco-ridge > .wrap { position: relative; z-index: 1; }
.deco-ridge::after {
  content: ""; position: absolute; top: clamp(48px, 7vw, 92px); right: 0;
  width: min(48%, 600px); height: 230px;
  background: url("../images/ridgeline.svg") no-repeat right top;
  background-size: contain;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
  pointer-events: none;
}
@media (max-width: 900px) { .deco-ridge::after, .deco-ridge::before { display: none; } }

/* ===== design round 6: фото-мосты, хотспоты, штамп, высотные метки, фактуры ===== */
:root {
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* Фото-мосты между секциями */
.photo-bridge {
  position: relative; overflow: hidden;
  min-height: 54vh;
  background-size: cover; background-position: center;
  background-color: var(--c-graphite);
  display: flex; align-items: flex-end;
}
.photo-bridge::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,36,33,0.25) 0%, rgba(31,36,33,0) 35%, rgba(31,36,33,0.74) 100%);
}
.photo-bridge::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.07; background-image: var(--grain);
}
.photo-bridge > .wrap { position: relative; z-index: 1; width: 100%; padding-top: 48px; padding-bottom: 40px; }
.bridge-tall { min-height: 66vh; }
.bridge-caption {
  margin: 0;
  display: inline-flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
  padding: 14px 22px;
  background: rgba(31,36,33,0.62);
  backdrop-filter: blur(6px);
  color: #f6efde; font-family: var(--f-display); font-weight: 500;
  font-size: clamp(20px, 2.1vw, 28px);
  text-shadow: 0 1px 3px rgba(31,36,33,0.55);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: baseline; }
.footer-legal .footer-dev-link { margin-left: auto; }
.bridge-pos-top { background-position: center 22%; }
.bridge-tick {
  font-family: var(--f-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-amber);
  text-shadow: 0 1px 3px rgba(31,36,33,0.65);
}
@media (max-width: 720px) { .photo-bridge { min-height: 42vh; } .bridge-tall { min-height: 50vh; } }

/* Хотспоты на фото хиро */
.hotspot { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; }
.hotspot-dot { position: relative; flex: 0 0 auto; width: 11px; height: 11px; border-radius: 50%; background: var(--c-amber); }
.hotspot-dot::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid var(--c-amber);
  animation: hotspot-pulse 2.6s ease-out infinite;
}
.hotspot-label {
  font-family: var(--f-sans); font-size: 12.5px; letter-spacing: 0.04em; white-space: nowrap;
  color: #f6efde; background: rgba(31,36,33,0.72);
  border: 1px solid rgba(246,239,222,0.25);
  padding: 7px 12px;
  backdrop-filter: blur(4px);
}
.hotspot-1 { top: 21%; left: 12%; }
.hotspot-2 { bottom: 19%; left: 54%; }
@keyframes hotspot-pulse {
  0% { transform: scale(0.55); opacity: 0.9; }
  70%, 100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 1279px) { .hotspot { display: none; } }

/* Вращающийся штамп */
.hero-stamp { position: absolute; right: 40px; bottom: 40px; z-index: 3; width: 128px; height: 128px; display: grid; place-items: center; }
.hero-stamp svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; animation: stamp-spin 28s linear infinite; }
.hero-stamp text { font-family: var(--f-sans); font-size: 9px; font-weight: 600; letter-spacing: 0.13em; fill: var(--c-amber); }
.hero-stamp-core { color: #f6efde; font-size: 19px; line-height: 1; }
@keyframes stamp-spin { to { transform: rotate(360deg); } }
@media (max-width: 1024px) { .hero-stamp { display: none; } }

/* Высотные метки в eyebrow — страница как подъём */
.eyebrow-alt { margin-left: auto; color: var(--c-muted); font-weight: 500; }
.eyebrow { flex-wrap: wrap; }
.hero { position: relative; }
@media (max-width: 560px) { .eyebrow-alt { display: none; } }
.numbers .eyebrow-alt { color: rgba(243,239,230,0.45); }

/* Зерно на графитовых секциях */
.numbers { position: relative; }
.numbers > .wrap { position: relative; z-index: 1; }
.numbers::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.05; background-image: var(--grain);
}

/* Фоновое тональное пятно вместо линий-хребтов */
.deco-ridge::before { display: none; }
.deco-ridge::after {
  content: ""; position: absolute; top: -130px; right: -150px;
  width: 620px; height: 620px;
  background:
    repeating-radial-gradient(circle at 36% 42%,
      transparent 0 24px,
      color-mix(in oklab, var(--c-amber) 30%, transparent) 24px 26px,
      transparent 26px 50px),
    repeating-radial-gradient(circle at 70% 66%,
      transparent 0 29px,
      color-mix(in oklab, var(--c-cold) 26%, transparent) 29px 31px,
      transparent 31px 60px);
  -webkit-mask-image: radial-gradient(closest-side at 58% 48%, #000 30%, transparent 80%);
          mask-image: radial-gradient(closest-side at 58% 48%, #000 30%, transparent 80%);
  opacity: 0.6;
  pointer-events: none;
}
.deco-ridge::before {
  content: ""; position: absolute; bottom: -34px; left: 0;
  width: min(44%, 560px); height: 210px;
  background: url("../images/ridgeline.svg") no-repeat left bottom;
  background-size: contain;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(270deg, transparent 0%, #000 38%);
          mask-image: linear-gradient(270deg, transparent 0%, #000 38%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-stamp svg, .hotspot-dot::after { animation: none; }
}

/* ===== Ascent rail — вертикальная визуализация набора высоты (десктоп ≥1280) ===== */
.ascent-rail {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 40; display: none; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none;
}
@media (min-width: 1280px) { .ascent-rail { display: flex; } }
.ascent-cap { font-family: var(--f-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--c-cold); }
.ascent-track {
  position: relative; width: 2px; height: 42vh; max-height: 400px;
  background: rgba(120,124,118,0.35); border-radius: 2px;
}
.ascent-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--c-amber); border-radius: 2px; }
.ascent-marker {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--c-amber); border: 3px solid var(--c-bg);
  box-shadow: 0 2px 8px rgba(31,36,33,0.3);
}
.ascent-alt {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; font-family: var(--f-sans); font-size: 11px; font-weight: 700;
  color: #f3efe6; background: rgba(31,36,33,0.82); backdrop-filter: blur(4px);
  padding: 4px 9px; border-radius: 999px;
}


.lead-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; color: #3a3a36; cursor: pointer; margin-top: 2px; }
.lead-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--c-amber); cursor: pointer; }
.lead-consent.invalid { color: #c0492e; }
.lead-consent a { color: var(--c-cold); text-decoration: underline; }

.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 16px; }
.footer-legal a { font-size: 12.5px; }

.legal-topbar { border-bottom: 1px solid var(--c-line); padding: 20px 0; }
.legal-topbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.legal-topbar a.legal-brand { font-family: var(--f-display); font-size: 20px; color: var(--c-graphite); text-decoration: none; }
.legal-topbar a.legal-home { font-family: var(--f-sans); font-weight: 600; font-size: 14px; color: var(--c-cold); text-decoration: none; }
.legal-doc { padding: 56px 0 88px; }
.legal-doc h1 { font-family: var(--f-display); font-size: clamp(30px, 4vw, 44px); line-height: 1.1; margin: 0 0 12px; }
.legal-doc .legal-meta { color: var(--c-muted); font-size: 14px; margin: 0 0 40px; }
.legal-doc h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 40px 0 14px; }
.legal-doc h2 em { font-style: normal; color: var(--c-amber); }
.legal-doc p, .legal-doc li { font-size: 15.5px; line-height: 1.7; color: #34342f; }
.legal-doc ul { padding-left: 22px; margin: 0 0 16px; }
.legal-doc li { margin-bottom: 8px; }
.legal-doc a { color: var(--c-cold); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-family: var(--f-sans); font-weight: 600; font-size: 15px; color: var(--c-graphite); text-decoration: none; }
.legal-back:hover { color: var(--c-amber); }
.legal-note { margin-top: 32px; padding: 20px 22px; background: var(--c-bg-2); border-radius: 8px; font-size: 13.5px; color: var(--c-muted); }

/* review round 4 */
.cmp-summary { max-width: none; }
.row-flex-text { max-width: none; flex: 1; }
.kb-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.kb-cta-row p { margin: 0; max-width: none; flex: 1 1 320px; }
.special-card { cursor: default; }
.special-card:hover { transform: none; }

/* ---------- COOKIE CONSENT (152-ФЗ) ---------- */
.cookie-banner {
  position: fixed; left: var(--pad-x); right: var(--pad-x); bottom: 18px; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px 28px; flex-wrap: wrap;
  max-width: var(--maxw); margin: 0 auto;
  background: var(--c-graphite); color: rgba(243,239,230,0.9);
  border: 1px solid rgba(243,239,230,0.14); border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 18px 50px -18px rgba(31,36,33,0.6);
}
.cookie-banner[hidden] { display: none; }
.cookie-text { margin: 0; font-size: 13.5px; line-height: 1.55; max-width: 82ch; }
.cookie-text a { color: var(--c-amber); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept { white-space: nowrap; }
@media (max-width: 560px) {
  .cookie-banner { bottom: 10px; padding: 16px 18px; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-accept { width: 100%; justify-content: center; }
}
