:root {
  --ink: #171713;
  --ink-soft: #34332c;
  --paper: #f7f1e7;
  --paper-deep: #ede2d2;
  --line: rgba(23, 23, 19, 0.14);
  --green: #2e5d43;
  --green-deep: #153b2c;
  --clay: #9d6846;
  --gold: #c89b54;
  --white: #fffaf2;
  --shadow: 0 28px 80px rgba(23, 23, 19, 0.18);
  --radius: 8px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

body::selection {
  background: rgba(200, 155, 84, 0.35);
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 18px auto auto 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 44px));
  min-height: 62px;
  padding: 8px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.04)),
    rgba(18, 22, 17, 0.36);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px) saturate(1.12);
  transform: translateX(-50%);
  overflow: hidden;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 250, 242, 0.18) 42%, transparent 62%);
  opacity: 0.22;
  transform: translateX(-85%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
}

.site-header:hover::before {
  transform: translateX(85%);
}

.site-header.is-scrolled {
  border-color: rgba(200, 155, 84, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.035)),
    rgba(16, 18, 14, 0.76);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%) translateY(-2px);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 10px 0 4px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 155, 84, 0.72);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
  font-size: 13px;
}

.brand-text {
  white-space: nowrap;
}

.nav {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.06);
  font-size: 14px;
}

.nav a,
.header-call {
  position: relative;
  opacity: 0.88;
}

.nav a {
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav a:hover {
  background: rgba(255, 250, 242, 0.1);
  opacity: 1;
}

.nav a::after,
.header-call::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after,
.header-call:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.055);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.05);
  animation: heroDrift 18s var(--ease) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 12, 8, 0.84) 0%, rgba(10, 12, 8, 0.58) 42%, rgba(10, 12, 8, 0.36) 100%),
    linear-gradient(180deg, rgba(10, 12, 8, 0.46) 0%, rgba(10, 12, 8, 0.08) 42%, rgba(10, 12, 8, 0.88) 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.035) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(180deg, rgba(255, 250, 242, 0.03) 1px, transparent 1px) 0 0 / 120px 120px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
  opacity: 0.7;
  pointer-events: none;
}

.hero-inner {
  width: min(1180px, calc(100% - 44px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 124px 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  grid-template-areas:
    "content cinema"
    "facts facts";
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.hero-content {
  grid-area: content;
  max-width: 840px;
  padding-bottom: 0;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(200, 155, 84, 0.38);
  border-radius: var(--radius);
  background: rgba(23, 23, 19, 0.24);
  backdrop-filter: blur(12px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7.8vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 500;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.9vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: rgba(255, 250, 242, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-assurance {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 14px;
}

.hero-cinema {
  grid-area: cinema;
  position: relative;
  min-height: min(48vh, 450px);
  perspective: 1200px;
}

.cinema-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cinema-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(115deg, rgba(255, 250, 242, 0.2), transparent 36%);
}

.cinema-frame:hover {
  border-color: rgba(200, 155, 84, 0.62);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
}

.cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s var(--ease);
}

.cinema-frame:hover img {
  transform: scale(1.1);
}

.cinema-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 26px 24px;
  color: var(--white);
}

.cinema-frame figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cinema-frame figcaption strong {
  display: block;
  font-size: 17px;
  line-height: 1.15;
}

.cinema-frame-top figcaption,
.cinema-frame-bottom figcaption {
  padding: 0 22px 20px;
}

.cinema-frame-main figcaption {
  padding: 0 34px 30px;
}

.cinema-frame-main {
  right: 18px;
  bottom: 30px;
  z-index: 2;
  width: min(78%, 330px);
  height: min(40vh, 390px);
  transform: rotate(-2deg) translateZ(30px);
  clip-path: polygon(0 0, 100% 5%, 94% 100%, 7% 95%);
}

.cinema-frame-top {
  right: 0;
  top: 10px;
  z-index: 3;
  width: min(48%, 200px);
  height: min(22vh, 205px);
  transform: rotate(5deg) translateZ(70px);
}

.cinema-frame-bottom {
  left: 4px;
  bottom: 4px;
  z-index: 1;
  width: min(52%, 220px);
  height: min(24vh, 220px);
  transform: rotate(4deg) translateZ(12px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #18150f;
  box-shadow: 0 18px 36px rgba(200, 155, 84, 0.24);
}

.btn-primary:hover {
  background: #e0b86e;
}

.btn-glass {
  border-color: rgba(255, 250, 242, 0.52);
  color: var(--white);
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(12px);
}

.hero-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.035)),
    rgba(16, 18, 14, 0.5);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-facts div {
  position: relative;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 250, 242, 0.18);
}

.hero-facts div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(200, 155, 84, 0.72);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  margin-bottom: 7px;
  padding-left: 16px;
  color: rgba(255, 250, 242, 0.64);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-facts dd {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-cue span {
  width: 1px;
  height: 54px;
  background: rgba(255, 250, 242, 0.42);
  transform-origin: top;
  animation: cue 1.8s ease-in-out infinite;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 250, 242, 0.15);
}

.trust-item {
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid rgba(255, 250, 242, 0.15);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.trust-item span {
  display: block;
  max-width: 410px;
  color: rgba(255, 250, 242, 0.72);
}

.emotion-band {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 0;
  background:
    linear-gradient(135deg, rgba(21, 59, 44, 0.96), rgba(23, 23, 19, 0.98)),
    var(--green-deep);
  color: var(--white);
}

.emotion-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/sulak-waterfall.jpg") center / cover;
  opacity: 0.16;
  transform: scale(1.04);
}

.emotion-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 84, 0.75), transparent);
}

.emotion-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.emotion-copy {
  display: block;
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.emotion-copy h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.emotion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.emotion-card {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 242, 0.07);
  backdrop-filter: blur(14px);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.emotion-card:hover {
  background: rgba(255, 250, 242, 0.12);
  transform: translateY(-4px);
}

.emotion-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  border: 1px solid rgba(200, 155, 84, 0.64);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.emotion-card h3 {
  color: var(--white);
}

.emotion-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.74);
}

.section {
  padding: clamp(76px, 10vw, 144px) 0;
}

.section > *,
.footer,
.dates-inner,
.booking-box {
  width: min(1180px, calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 8vw, 104px);
  align-items: start;
}

.intro .split {
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  text-align: center;
}

.intro .split > div:first-child {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.intro h2 {
  margin-left: auto;
  margin-right: auto;
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 16px;
}

.intro .intro-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(52, 51, 44, 0.78);
}

.intro-copy p {
  margin-bottom: 20px;
}

.experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 0.96fr);
  align-items: center;
  min-height: 680px;
  padding: clamp(26px, 3.6vw, 48px);
  background:
    radial-gradient(circle at 26% 18%, rgba(200, 155, 84, 0.16), transparent 30%),
    linear-gradient(135deg, #0f2f24 0%, #123f2d 48%, #10130f 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.04) 1px, transparent 1px) 0 0 / 108px 108px,
    linear-gradient(180deg, rgba(255, 250, 242, 0.035) 1px, transparent 1px) 0 0 / 108px 108px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.experience-media {
  position: relative;
  align-self: center;
  height: clamp(500px, 39vw, 560px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 7, 0.04) 28%, rgba(8, 10, 7, 0.62) 100%),
    linear-gradient(90deg, rgba(8, 10, 7, 0.12), transparent 46%, rgba(8, 10, 7, 0.18));
}

.experience-float {
  position: absolute;
  z-index: 1;
  width: min(300px, calc(100% - 34px));
  padding: 15px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: var(--radius);
  background: rgba(16, 18, 14, 0.58);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.experience-float span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-float strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.experience-float-top {
  top: 24px;
  right: 24px;
}

.experience-float-bottom {
  left: 24px;
  bottom: 24px;
}

.experience-panel {
  position: relative;
  align-self: center;
  margin-left: clamp(-54px, -3.4vw, -24px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.035)),
    rgba(15, 39, 30, 0.82);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.experience-panel::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 74px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(200, 155, 84, 0.6);
}

.experience-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1;
}

.experience-panel p,
.clean-list {
  color: rgba(255, 250, 242, 0.76);
  font-size: 16px;
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0;
  border: 1px solid rgba(255, 250, 242, 0.14);
  background: rgba(255, 250, 242, 0.14);
}

.experience-metrics div {
  min-height: 106px;
  padding: 15px;
  background: rgba(16, 18, 14, 0.3);
}

.experience-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 0.9;
  font-weight: 500;
}

.experience-metrics span {
  display: block;
  color: rgba(255, 250, 242, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.clean-list {
  margin: 20px 0 0;
  padding-left: 18px;
}

.clean-list li + li {
  margin-top: 10px;
}

.experience-cta {
  margin-top: 22px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: end;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto clamp(38px, 5vw, 72px);
}

.section-note {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 18px;
}

.value {
  padding-block: clamp(28px, 3.8vw, 52px);
  background:
    radial-gradient(circle at 24% 12%, rgba(200, 155, 84, 0.15), transparent 30%),
    linear-gradient(180deg, #123f2d 0%, #0f2f24 48%, #10130f 100%);
}

.value-inner {
  position: relative;
  width: min(1792px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(16px, 1.8vw, 26px);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.025)),
    rgba(16, 18, 14, 0.22);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(14px);
}

.value-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.052) 1px, transparent 1px) 0 0 / 100px 100px,
    linear-gradient(180deg, rgba(255, 250, 242, 0.045) 1px, transparent 1px) 0 0 / 100px 100px;
  opacity: 0.82;
}

.value-head {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: end;
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

.value-head .section-kicker {
  color: var(--gold);
}

.value-head h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 0.94;
}

.value-proof {
  padding: clamp(14px, 1.3vw, 18px);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.025)),
    rgba(23, 23, 19, 0.64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.value-proof span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(30px, 2.35vw, 40px);
  line-height: 0.95;
}

.value-proof p {
  color: rgba(255, 250, 242, 0.76);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.36;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.value-card {
  position: relative;
  min-height: 178px;
  padding: clamp(16px, 1.35vw, 20px);
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(237, 226, 210, 0.68)),
    var(--paper-deep);
  box-shadow: 0 18px 52px rgba(23, 23, 19, 0.07);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.value-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(157, 104, 70, 0.36), transparent);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 155, 84, 0.34);
  box-shadow: 0 26px 68px rgba(23, 23, 19, 0.12);
}

.value-card-main {
  min-height: 400px;
  grid-row: span 2;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 10, 7, 0.12), rgba(8, 10, 7, 0.78)),
    url("assets/dagestan-overlook.jpg") center / cover;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.22);
}

.value-card-dark {
  grid-column: span 2;
  color: var(--white);
  border-color: rgba(200, 155, 84, 0.26);
  background:
    linear-gradient(135deg, rgba(92, 62, 43, 0.96), rgba(23, 23, 19, 0.92)),
    var(--ink);
}

.value-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--clay);
  font-weight: 900;
}

.value-card-main span,
.value-card-dark span {
  color: var(--gold);
}

.value-card h3 {
  max-width: 360px;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.05;
}

.value-card p,
.day p,
.comfort-item p,
.faq-item p,
.dates-copy p,
.booking-box p,
.footer p {
  color: var(--ink-soft);
}

.value-card p {
  max-width: 390px;
  margin-top: 10px;
  font-weight: 650;
  font-size: 14px;
  line-height: 1.34;
}

.value-card-main p,
.value-card-dark p {
  color: rgba(255, 250, 242, 0.76);
}

.route {
  padding-block: clamp(34px, 4vw, 52px);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.82)),
    var(--white);
}

.route-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.86fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
  width: min(1792px, calc(100% - 80px));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(23, 23, 19, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 47, 36, 0.98), rgba(12, 27, 21, 0.96) 44%, rgba(245, 238, 226, 0.98) 44.2%, rgba(255, 250, 242, 0.96)),
    var(--green-deep);
  box-shadow: 0 34px 110px rgba(23, 23, 19, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.route-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(255, 250, 242, 0.045) 1px, transparent 1px) 0 0 / 96px 96px;
  opacity: 0.76;
}

.route-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  color: var(--white);
}

.route-head .section-kicker {
  grid-column: 1;
  margin-bottom: 8px;
  color: var(--gold);
}

.route-head h2 {
  grid-column: 1;
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 0.95;
}

.route-head p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 8px;
  color: rgba(23, 23, 19, 0.74);
  font-size: 16px;
  font-weight: 700;
}

.route-cinema {
  position: relative;
  height: clamp(400px, 43svh, 470px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.route-cinema img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.route-cinema-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 7, 0.04) 0%, rgba(8, 10, 7, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 10, 7, 0.18), transparent 48%);
}

.route-poster-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
}

.route-poster-copy span,
.route-actions span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-poster-copy strong {
  display: block;
  max-width: 460px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 0.98;
}

.route-poster-copy p {
  max-width: 410px;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.78);
  font-weight: 700;
}

.route-days {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 8px;
  align-self: stretch;
}

.route-day {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 12px 14px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(237, 226, 210, 0.6)),
    var(--white);
  box-shadow: 0 14px 38px rgba(23, 23, 19, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.route-day::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 37px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(157, 104, 70, 0.35), transparent);
}

.route-day:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 155, 84, 0.38);
  box-shadow: 0 22px 54px rgba(23, 23, 19, 0.1);
}

.route-day.is-featured {
  grid-column: auto;
  min-height: 0;
  color: var(--white);
  border-color: rgba(200, 155, 84, 0.3);
  background:
    linear-gradient(135deg, rgba(18, 63, 45, 0.96), rgba(16, 18, 14, 0.88)),
    var(--green-deep);
}

.route-day span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(157, 104, 70, 0.42);
  border-radius: 50%;
  color: var(--clay);
  background: rgba(255, 250, 242, 0.72);
  font-weight: 900;
}

.route-day.is-featured span {
  color: var(--gold);
  border-color: rgba(200, 155, 84, 0.58);
  background: rgba(255, 250, 242, 0.08);
}

.route-day h3 {
  margin-bottom: 5px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.05;
}

.route-day p {
  color: rgba(52, 51, 44, 0.78);
  font-size: 13px;
  line-height: 1.34;
}

.route-day.is-featured p {
  color: rgba(255, 250, 242, 0.76);
}

.route-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 19, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.88);
}

.route-actions strong {
  display: block;
  max-width: 640px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.route-actions .btn {
  flex: 0 0 auto;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.route-visual {
  position: sticky;
  top: 108px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.route-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.route-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 250, 242, 0.78);
  border-radius: 50%;
  background: rgba(23, 23, 19, 0.46);
  color: var(--white);
  text-align: center;
  font-weight: 900;
  line-height: 1.1;
  backdrop-filter: blur(12px);
}

.days {
  display: grid;
  gap: 14px;
}

.day {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.day:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 104, 70, 0.38);
  box-shadow: 0 22px 54px rgba(23, 23, 19, 0.1);
}

.day span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 0.8fr;
  gap: 1px;
  background: var(--ink);
}

.gallery-item {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
}

.gallery-item.tall {
  min-height: 620px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0) 42%, rgba(23, 23, 19, 0.76) 100%);
}

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

.gallery-item figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  max-width: 320px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.04;
}

.comfort {
  background: var(--paper);
}

.comfort-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.comfort-item {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper);
}

.fit {
  padding-block: clamp(40px, 4.6vw, 68px);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.fit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.fit-copy h2,
.stories-head h2,
.next-step h2 {
  max-width: 820px;
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 0.96;
}

.fit-copy p:last-child,
.stories-head p {
  max-width: 620px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
}

.fit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fit-card {
  min-height: 300px;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(237, 226, 210, 0.72)),
    var(--white);
  box-shadow: 0 24px 72px rgba(23, 23, 19, 0.1);
}

.fit-card-muted {
  background:
    linear-gradient(135deg, rgba(35, 33, 29, 0.96), rgba(23, 23, 19, 0.92)),
    var(--ink);
  color: var(--white);
}

.fit-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fit-card-muted span {
  color: var(--gold);
}

.fit-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.38;
}

.fit-card-muted ul {
  color: rgba(255, 250, 242, 0.76);
}

.authority {
  padding-block: clamp(40px, 4.6vw, 68px);
  background: var(--ink);
  color: var(--white);
}

.authority-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.authority-panel {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 10, 7, 0.2), rgba(8, 10, 7, 0.76)),
    url("assets/ancient-aul.jpg") center / cover;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.authority-panel h2 {
  max-width: 640px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 0.96;
}

.authority-panel p:last-child {
  max-width: 590px;
  margin-top: 20px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 16px;
  font-weight: 700;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.authority-item {
  min-height: 168px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.055);
}

.authority-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 25px;
  line-height: 1.05;
}

.authority-item span {
  color: rgba(255, 250, 242, 0.72);
  font-weight: 700;
}

.stories {
  padding-block: clamp(40px, 4.6vw, 68px);
  background: var(--paper);
}

.stories-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.54fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto clamp(20px, 3vw, 34px);
}

.stories-head .section-kicker,
.stories-head h2 {
  grid-column: 1;
}

.stories-head p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-top: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) repeat(2, minmax(0, 0.76fr));
  gap: 10px;
}

.story-card {
  min-height: 300px;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 72px rgba(23, 23, 19, 0.09);
}

.story-card-photo {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 0;
}

.story-card-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.08), rgba(8, 10, 7, 0.76));
}

.story-card-photo div {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3vw, 38px);
}

.story-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card-photo span {
  color: var(--gold);
}

.story-card h3 {
  max-width: 500px;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.02;
}

.story-card p {
  max-width: 520px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 700;
}

.story-card-photo p {
  color: rgba(255, 250, 242, 0.78);
}

.next-step {
  padding-block: clamp(40px, 4.6vw, 68px);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.next-step-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.next-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-step-list li {
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.next-step-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-weight: 900;
}

.next-step-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.05;
}

.next-step-list p {
  color: var(--ink-soft);
  font-weight: 700;
}

.dates {
  background: var(--ink);
  color: var(--white);
}

.dates-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 94px);
  align-items: center;
}

.dates-copy p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 18px;
}

.dates-list {
  display: grid;
  gap: 10px;
}

.date-row {
  width: 100%;
  min-height: 88px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.06);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.date-row:hover,
.date-row.is-open {
  background: rgba(255, 250, 242, 0.12);
  border-color: rgba(200, 155, 84, 0.72);
  transform: translateY(-2px);
}

.date-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.date-row strong {
  display: block;
  font-size: 17px;
  line-height: 1.45;
}

.booking {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.booking-box {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 0.62fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(23, 23, 19, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(23, 23, 19, 0.18);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.lead-form select {
  appearance: none;
  padding-right: 48px;
  background:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%) right 22px center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%) right 17px center / 7px 7px no-repeat,
    #fffdf8;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.lead-form select:hover {
  border-color: rgba(157, 104, 70, 0.42);
}

.lead-form select option {
  background: var(--white);
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 84, 0.16);
}

.lead-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.faq {
  padding-block: clamp(40px, 4.6vw, 68px);
  background: var(--white);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  max-width: 860px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 0 92px;
  color: var(--ink);
}

.footer p {
  max-width: 520px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 900;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(860px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(200, 155, 84, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.035)),
    rgba(16, 18, 14, 0.9);
  color: var(--white);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(1.08);
  transform: translate(-50%, 140%);
  transition: transform 0.45s var(--ease);
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
}

.sticky-cta-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sticky-cta-copy strong {
  font-size: 16px;
  line-height: 1.15;
}

.sticky-cta-copy span {
  color: rgba(255, 250, 242, 0.64);
  font-size: 13px;
  line-height: 1.25;
}

.sticky-cta-price {
  display: grid;
  align-items: center;
  min-width: 132px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 250, 242, 0.14);
}

.sticky-cta-price span {
  color: rgba(255, 250, 242, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.sticky-cta-price strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.15;
  white-space: nowrap;
}

.sticky-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: #18150f;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(200, 155, 84, 0.16), transparent 34%),
    rgba(13, 14, 10, 0.72);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
  width: min(980px, 100%);
  max-height: min(720px, calc(100svh - 44px));
  overflow: auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(247, 241, 231, 0.96));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.45s var(--ease);
}

.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.74);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.modal-close:hover {
  background: var(--white);
  transform: rotate(8deg);
}

.modal-copy {
  align-self: center;
}

.modal-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5.5vw, 68px);
}

.modal-copy p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.modal-form {
  align-self: center;
}

.route-modal {
  z-index: 82;
}

.route-modal-backdrop {
  background:
    radial-gradient(circle at 28% 18%, rgba(91, 192, 162, 0.24), transparent 28%),
    radial-gradient(circle at 74% 24%, rgba(200, 155, 84, 0.22), transparent 30%),
    rgba(7, 10, 8, 0.82);
}

.route-dialog {
  position: relative;
  width: min(1500px, calc(100vw - 72px));
  max-height: calc(100svh - 28px);
  overflow: auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.09), rgba(255, 250, 242, 0.025)),
    linear-gradient(180deg, rgba(21, 59, 44, 0.78), rgba(12, 14, 11, 0.96));
  color: var(--white);
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(22px) saturate(1.1);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.45s var(--ease);
  isolation: isolate;
}

.route-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.04) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, rgba(255, 250, 242, 0.035) 1px, transparent 1px) 0 0 / 92px 92px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.route-modal.is-open .route-dialog {
  transform: translateY(0) scale(1);
}

.route-close {
  border-color: rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
}

.route-modal-head {
  width: min(1080px, 100%);
  margin: 0 auto clamp(18px, 2.6vw, 28px);
  text-align: center;
}

.route-modal-head h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 0.98;
}

.route-modal-head p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(255, 250, 242, 0.72);
  font-size: 17px;
}

.route-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.route-map {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.03)),
    url("assets/dagestan-terraces.jpg") center / cover;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.04);
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 80%, rgba(200, 155, 84, 0.28), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(91, 192, 162, 0.24), transparent 28%),
    rgba(7, 10, 8, 0.62);
}

.route-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.route-path-shadow,
.route-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-path-shadow {
  stroke: rgba(0, 0, 0, 0.55);
  stroke-width: 18;
}

.route-path {
  stroke: url("#routeGlow");
  stroke-width: 5;
  stroke-dasharray: 14 16;
  filter: url("#softGlow");
  animation: routeFlow 2.8s linear infinite;
}

.route-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: grid;
  grid-template-columns: 44px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  min-width: 138px;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 999px;
  background: rgba(16, 18, 14, 0.62);
  color: var(--white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.route-point img {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 242, 0.4);
}

.route-point em {
  position: absolute;
  left: 34px;
  top: -12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(200, 155, 84, 0.72);
  border-radius: 50%;
  background: rgba(16, 18, 14, 0.82);
  color: var(--gold);
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 0 20px rgba(200, 155, 84, 0.28);
}

.route-point span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.route-point strong {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 242, 0.82);
  font-size: 13px;
  line-height: 1;
}

.route-point:hover,
.route-point.is-active {
  border-color: rgba(200, 155, 84, 0.92);
  background: rgba(200, 155, 84, 0.16);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36), 0 0 34px rgba(200, 155, 84, 0.16);
  transform: translate(-50%, -50%) scale(1.04);
}

.route-point.is-active strong {
  color: var(--white);
}

.route-panel {
  position: relative;
  min-height: 380px;
}

.route-story {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(150px, 0.56fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.route-story.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.route-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-story div {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(16, 18, 14, 0.56), rgba(16, 18, 14, 0.86)),
    rgba(16, 18, 14, 0.78);
}

.route-story span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-story h3 {
  color: var(--white);
  font-size: 25px;
}

.route-story p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.72);
}

.route-modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(18px, 2.4vw, 26px);
}

.route-link {
  border-color: rgba(255, 250, 242, 0.28);
  background: rgba(255, 250, 242, 0.06);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.1) translateY(10px);
  }
  to {
    transform: scale(1.04) translateY(0);
  }
}

@keyframes cue {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -60;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    inset: 12px 12px auto;
    width: auto;
    transform: none;
  }

  .site-header.is-scrolled {
    transform: none;
  }

  .nav {
    display: none;
  }

  .header-call {
    justify-self: end;
  }

  .hero-inner {
    width: min(100% - 28px, 720px);
    padding-top: 132px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "cinema"
      "facts";
    align-items: start;
  }

  .hero-content {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-cinema {
    width: min(560px, 100%);
    min-height: 340px;
    margin: -8px auto 0;
  }

  .hero-facts,
  .trust-strip,
  .split,
  .emotion-copy,
  .experience,
  .fit-inner,
  .authority-inner,
  .stories-head,
  .next-step-inner,
  .section-head,
  .route-layout,
  .dates-inner,
  .booking-box {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .route-head {
    grid-template-columns: 1fr;
    color: var(--ink);
  }

  .route-head h2 {
    font-size: clamp(42px, 8vw, 70px);
  }

  .route-head p:last-child {
    color: var(--ink-soft);
  }

  .route-cinema {
    min-height: 390px;
  }

  .route-cinema img {
    min-height: 390px;
  }

  .route-visual {
    position: relative;
    top: auto;
  }

  .experience {
    padding: 22px;
  }

  .experience-media {
    min-height: 520px;
  }

  .experience-panel {
    margin: -72px auto 0;
    width: min(92%, 720px);
  }

  .experience-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-inner {
    width: min(100% - 44px, 920px);
    background:
      linear-gradient(135deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.025)),
      rgba(16, 18, 14, 0.22);
  }

  .value-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-proof {
    max-width: 520px;
  }

  .value-grid,
  .emotion-grid,
  .comfort-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-card-main {
    grid-column: span 2;
    grid-row: auto;
    min-height: 340px;
  }

  .value-card-dark {
    grid-column: span 2;
  }

  .fit-columns,
  .authority-grid,
  .story-grid,
  .next-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-card {
    min-height: 310px;
  }

  .stories-head p {
    grid-column: 1;
    grid-row: auto;
  }

  .story-card-photo {
    grid-column: span 2;
    min-height: 420px;
  }

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

  .gallery-item,
  .gallery-item.tall {
    min-height: 460px;
  }

  .modal-dialog {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .route-dialog {
    width: min(100% - 24px, 840px);
  }

  .route-showcase {
    grid-template-columns: 1fr;
  }

  .route-map,
  .route-panel {
    min-height: 390px;
  }

  .route-panel {
    min-height: 450px;
  }

  .sticky-cta {
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .sticky-cta-price {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 54px;
    padding: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-call {
    font-size: 13px;
    padding: 0 9px;
  }

  h1 {
    font-size: clamp(42px, 12.2vw, 52px);
    line-height: 0.98;
    max-width: 9ch;
  }

  h2 {
    font-size: clamp(33px, 11vw, 48px);
  }

  .eyebrow,
  .section-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .footer,
  .sticky-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 116px;
    padding-bottom: 28px;
    gap: 22px;
  }

  .hero-cinema {
    min-height: 230px;
    margin-top: 2px;
  }

  .cinema-frame figcaption {
    padding: 0 14px 13px;
  }

  .cinema-frame figcaption span {
    font-size: 10px;
  }

  .cinema-frame figcaption strong {
    font-size: 13px;
  }

  .cinema-frame-main {
    right: 12%;
    bottom: 20px;
    width: 62%;
    height: 205px;
  }

  .cinema-frame-top {
    right: 0;
    top: 4px;
    width: 34%;
    height: 118px;
  }

  .cinema-frame-bottom {
    left: 0;
    bottom: 0;
    width: 38%;
    height: 126px;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.16);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .scroll-cue {
    display: none;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.15);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section > *,
  .section-head,
  .footer,
  .dates-inner,
  .booking-box {
    width: min(100% - 28px, 560px);
  }

  .value {
    padding-block: 34px;
  }

  .value-inner {
    width: min(100% - 28px, 560px);
    padding: 14px;
    background:
      linear-gradient(135deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.025)),
      rgba(16, 18, 14, 0.22);
  }

  .value-head h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .value-proof {
    padding: 18px;
  }

  .route {
    padding-block: 34px;
  }

  .route-stage {
    width: min(100% - 28px, 560px);
    padding: 14px;
    background:
      linear-gradient(180deg, rgba(16, 47, 36, 0.95) 0%, rgba(16, 47, 36, 0.86) 38%, rgba(255, 250, 242, 0.96) 38.2%),
      var(--white);
  }

  .route-head {
    gap: 14px;
    color: var(--white);
  }

  .route-head h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .route-head p:last-child {
    color: rgba(255, 250, 242, 0.78);
    font-size: 15px;
  }

  .route-cinema {
    min-height: 360px;
  }

  .route-cinema img {
    min-height: 360px;
  }

  .route-days {
    grid-template-columns: 1fr;
  }

  .route-day,
  .route-day.is-featured {
    grid-column: auto;
    min-height: auto;
  }

  .route-actions {
    display: grid;
  }

  .route-actions .btn {
    width: 100%;
  }

  .experience {
    padding: 14px;
  }

  .experience-media {
    min-height: 420px;
  }

  .experience-float {
    width: min(260px, calc(100% - 24px));
    padding: 14px;
  }

  .experience-float strong {
    font-size: 15px;
  }

  .experience-float-top {
    top: 12px;
    right: 12px;
  }

  .experience-float-bottom {
    left: 12px;
    bottom: 12px;
  }

  .experience-panel {
    width: 100%;
    margin-top: -46px;
    padding: 28px 18px;
  }

  .experience-metrics {
    grid-template-columns: 1fr;
  }

  .experience-metrics div {
    min-height: auto;
  }

  .value-grid,
  .emotion-grid,
  .fit-columns,
  .authority-grid,
  .story-grid,
  .next-step-list,
  .faq-list,
  .comfort-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .emotion-card,
  .fit-card,
  .authority-item,
  .story-card,
  .next-step-list li,
  .comfort-item {
    min-height: auto;
  }

  .value-card {
    padding: 22px 18px;
  }

  .value-card-main {
    grid-column: auto;
    min-height: 320px;
  }

  .value-card-dark {
    grid-column: auto;
  }

  .value-card span {
    margin-bottom: 34px;
  }

  .emotion-inner {
    width: min(100% - 28px, 560px);
  }

  .fit-copy h2,
  .authority-panel h2,
  .stories-head h2,
  .next-step h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .fit-card,
  .authority-panel,
  .story-card,
  .next-step-inner {
    padding: 22px 18px;
  }

  .story-card-photo {
    grid-column: auto;
    min-height: 360px;
    padding: 0;
  }

  .story-card-photo div {
    padding: 24px 18px;
  }

  .emotion-card span {
    margin-bottom: 26px;
  }

  .experience-panel {
    padding: 36px 22px 50px;
  }

  .gallery-item,
  .gallery-item.tall {
    min-height: 390px;
  }

  .booking-box {
    padding: 22px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: translateY(140%);
    width: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 12px;
    text-align: center;
  }

  .sticky-cta.is-visible {
    transform: translateY(0);
  }

  .sticky-cta span {
    white-space: normal;
  }

  .sticky-cta-copy strong {
    font-size: 15px;
  }

  .sticky-cta button {
    width: 100%;
  }

  .modal {
    padding: 12px;
    align-items: end;
  }

  .modal-dialog {
    max-height: calc(100svh - 24px);
    padding: 28px 18px 20px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }

  .modal-copy h2 {
    max-width: 9ch;
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1;
  }

  .modal-copy p:last-child {
    font-size: 16px;
  }

  .route-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    padding: 22px 14px 18px;
  }

  .route-modal-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .route-modal-head p {
    font-size: 15px;
  }

  .route-map {
    min-height: 390px;
  }

  .route-point {
    grid-template-columns: 34px auto;
    min-width: 104px;
    padding: 5px 8px 5px 5px;
    column-gap: 7px;
  }

  .route-point img {
    width: 34px;
    height: 34px;
  }

  .route-point em {
    left: 25px;
    top: -9px;
    width: 19px;
    height: 19px;
    font-size: 10px;
  }

  .route-point span {
    font-size: 9px;
  }

  .route-point strong {
    font-size: 10px;
  }

  .route-panel {
    min-height: 460px;
  }

  .route-story {
    grid-template-rows: 220px auto;
  }

  .route-story div {
    padding: 18px;
  }

  .route-story h3 {
    font-size: 22px;
  }

  .route-modal-actions {
    flex-direction: column;
  }
}
