:root {
  --bg: #07181c;
  --bg-soft: #0d252b;
  --panel: #112d33;
  --panel-light: #193840;
  --blue: #3db4df;
  --blue-deep: #2498c4;
  --sun: #f5dfa0;
  --paper: #eff3ed;
  --ink: #14282d;
  --muted: #9fb0b1;
  --white: #f7faf7;
  --line: rgba(255, 255, 255, 0.13);
  --dark-line: rgba(20, 40, 45, 0.16);
  --shell: 1400px;
  --pad: clamp(20px, 4.4vw, 72px);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--sun);
  transform: translateY(-150%);
}

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

.shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(84px, 9vw, 140px);
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.header.is-scrolled {
  height: 72px;
  background: rgba(7, 24, 28, 0.94);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 102;
  display: block;
  width: clamp(155px, 15vw, 220px);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.nav a {
  position: relative;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.version-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.messenger-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--sun);
  border: 1px solid rgba(245, 223, 160, 0.4);
  border-radius: 50%;
}

.messenger-link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  color: var(--ink);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--header {
  min-height: 44px;
}

.button--large {
  min-height: 58px;
  padding-inline: 30px;
}

.button--sun {
  background: var(--sun);
}

.button--sun:hover {
  background: #ffecb7;
}

.button--blue {
  color: white;
  background: var(--blue-deep);
}

.button--blue:hover {
  background: var(--blue);
}

.button--ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(5, 17, 20, 0.25);
}

.button--ghost:hover {
  border-color: var(--blue);
  background: rgba(61, 180, 223, 0.1);
}

.button--outline {
  color: var(--blue);
  border: 1px solid var(--blue);
  background: transparent;
}

.menu-button {
  position: relative;
  z-index: 102;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: white;
  border: 0;
  background: transparent;
}

.menu-button span {
  position: absolute;
  left: 10px;
  width: 25px;
  height: 1px;
  background: currentColor;
  transition:
    top 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-button span:nth-child(1) {
  top: 14px;
}

.menu-button span:nth-child(2) {
  top: 22px;
}

.menu-button span:nth-child(3) {
  top: 30px;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 110px var(--pad) 50px;
  background:
    radial-gradient(circle at 85% 20%, rgba(61, 180, 223, 0.15), transparent 30%),
    var(--bg);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}

.mobile-menu nav a {
  font-family: var(--display);
  font-size: clamp(37px, 10vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.mobile-menu__version {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 900px;
  height: min(1000px, 100svh);
  overflow: hidden;
  background: var(--bg);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background: url("assets/hero-v2.jpg") 58% center / cover no-repeat;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 20, 24, 0.97) 0%, rgba(4, 20, 24, 0.75) 38%, rgba(4, 20, 24, 0.08) 73%),
    linear-gradient(0deg, rgba(4, 20, 24, 0.78) 0%, transparent 50%),
    linear-gradient(180deg, rgba(4, 20, 24, 0.42), transparent 24%);
}

.hero__mountains {
  position: absolute;
  z-index: 2;
  right: -5%;
  bottom: 112px;
  left: -5%;
  height: 85px;
  background: var(--bg-soft);
  clip-path: polygon(0 58%, 8% 43%, 15% 70%, 25% 38%, 36% 66%, 47% 28%, 59% 73%, 69% 39%, 78% 67%, 89% 24%, 100% 55%, 100% 100%, 0 100%);
  opacity: 0.88;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 175px;
}

.hero__copy {
  width: min(755px, 65%);
}

.kicker {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.kicker span::before {
  width: 38px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(58px, 6.1vw, 96px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

h1 small {
  font-size: 0.58em;
  letter-spacing: -0.03em;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero__benefits {
  display: flex;
  max-width: 680px;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 32px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__benefits > div {
  display: flex;
  min-width: 84px;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  text-align: center;
}

.hero__benefits svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.hero__benefits span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.hero__stamp {
  position: absolute;
  right: var(--pad);
  bottom: 235px;
  display: flex;
  width: 180px;
  height: 180px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--blue-deep);
  clip-path: polygon(50% 0, 61% 11%, 76% 7%, 82% 21%, 97% 25%, 92% 41%, 100% 52%, 89% 64%, 93% 79%, 77% 83%, 69% 97%, 53% 91%, 40% 100%, 31% 88%, 15% 90%, 12% 73%, 0 65%, 8% 50%, 1% 36%, 16% 28%, 18% 12%, 35% 14%);
  transform: rotate(-8deg);
}

.hero__stamp strong {
  font-family: var(--display);
  font-size: 47px;
  line-height: 0.9;
}

.hero__stamp span {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__stats {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 132px;
  background: rgba(10, 35, 41, 0.96);
}

.hero__stats-inner {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(4, 1fr);
}

.hero__stats-inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.hero__stats-inner > div:first-child {
  border-left: 1px solid var(--line);
}

.hero__stats strong {
  color: var(--sun);
  font-family: var(--display);
  font-size: 33px;
}

.hero__stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.formats {
  background:
    radial-gradient(circle at 50% 0, rgba(61, 180, 223, 0.12), transparent 36%),
    var(--bg);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading--center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--sun);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--dark {
  color: var(--blue-deep);
}

.section-heading h2,
.gift h2,
.final-cta h2,
.booking h2 {
  margin-bottom: 0;
  font-size: clamp(47px, 5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.section-heading > p {
  max-width: 590px;
  margin: 25px 0 0;
  color: inherit;
  opacity: 0.7;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.format-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.format-card:hover {
  border-color: rgba(61, 180, 223, 0.6);
  transform: translateY(-7px);
}

.format-card--accent {
  border-color: var(--sun);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.format-card__image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.format-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--panel), transparent 65%);
  content: "";
}

.format-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.format-card:hover img {
  transform: scale(1.05);
}

.format-card__index {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}

.format-card__tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--sun);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.format-card__body {
  padding: 0 25px 26px;
}

.format-card__label {
  margin: -12px 0 6px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.format-card h3 {
  margin-bottom: 17px;
  font-size: 31px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.format-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.format-card li {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
}

.format-card li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.format-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.format-card__footer > div {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.format-card__footer small {
  color: var(--muted);
  font-size: 9px;
}

.format-card__footer strong {
  font-family: var(--display);
  font-size: 26px;
}

.routes {
  background: #0b2025;
}

.route-grid {
  display: grid;
  grid-auto-rows: 315px;
  grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
  gap: 12px;
}

.route-card {
  position: relative;
  overflow: hidden;
}

.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.route-card:hover img {
  transform: scale(1.06);
}

.route-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 20, 0.96), transparent 65%);
}

.route-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 23px;
}

.route-card__body span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card h3 {
  margin: 6px 0 4px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.route-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.center-button {
  display: flex;
  margin: 35px auto 0;
}

.beginner {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #dbe7e5;
}

.beginner__landscape {
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background:
    linear-gradient(0deg, rgba(219, 231, 229, 0.1), #dbe7e5 95%),
    url("assets/volga-go-hero.jpg") center bottom / cover no-repeat;
  filter: saturate(0.45);
  opacity: 0.28;
}

.beginner .shell {
  position: relative;
  z-index: 2;
}

.beginner .section-heading {
  max-width: 760px;
}

.beginner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.beginner-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 26px 24px 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(247, 250, 247, 0.72);
  box-shadow: 0 20px 45px rgba(30, 58, 62, 0.07);
  backdrop-filter: blur(9px);
}

.beginner-card svg {
  width: 45px;
  margin-bottom: 32px;
  fill: none;
  stroke: var(--blue-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.beginner-card h3 {
  margin-bottom: 9px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.beginner-card p {
  min-height: 70px;
  margin-bottom: 20px;
  color: rgba(20, 40, 45, 0.68);
  font-size: 12px;
}

.beginner-card img {
  width: calc(100% + 48px);
  height: 190px;
  margin-left: -24px;
  object-fit: cover;
}

.safety {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.safety__image,
.safety__shade {
  position: absolute;
  inset: 0;
}

.safety__image {
  background: url("assets/safety-v2.jpg") 60% center / cover no-repeat;
}

.safety__shade {
  background: linear-gradient(90deg, rgba(4, 20, 24, 0.96), rgba(4, 20, 24, 0.68) 45%, rgba(4, 20, 24, 0.2));
}

.safety__inner {
  position: relative;
  z-index: 2;
}

.safety .section-heading {
  max-width: 730px;
}

.safety-list {
  display: grid;
  max-width: 850px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.safety-list > div {
  min-height: 140px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 24, 28, 0.35);
}

.safety-list strong {
  display: block;
  margin-bottom: 27px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 16px;
}

.safety-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.reviews {
  background:
    radial-gradient(circle at 15% 20%, rgba(61, 180, 223, 0.12), transparent 28%),
    var(--bg);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  display: grid;
  min-height: 320px;
  grid-template-columns: 0.72fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.review-card__photo {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

.review-card__photo--one {
  background-image: url("assets/hero-v2.jpg");
  background-position: 73% center;
}

.review-card__photo--two {
  background-image: url("assets/safety-v2.jpg");
  background-position: 72% center;
}

.review-card__photo--three {
  background-image: url("assets/group-v2.jpg");
  background-position: 77% center;
}

.review-card__body {
  display: flex;
  flex-direction: column;
  padding: 28px 23px;
}

.stars {
  margin-bottom: 22px;
  color: var(--sun);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.review-card p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
}

.review-card__body > div:last-child {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.review-card__body strong {
  font-size: 12px;
}

.review-card__body span {
  color: var(--blue);
  font-size: 9px;
}

.gift {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 24, 28, 0.95), rgba(7, 24, 28, 0.62)),
    url("assets/riverside-camp.jpg") center 58% / cover no-repeat;
}

.gift__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: center;
}

.gift__copy > p {
  max-width: 550px;
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.66);
}

.certificate-wrap {
  position: relative;
  min-height: 430px;
}

.certificate {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(620px, 90%);
  aspect-ratio: 1.65;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  padding: 35px;
  color: var(--ink);
  border: 8px solid white;
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 223, 160, 0.9), transparent 31%),
    linear-gradient(135deg, #dce9e5, #f7f4e8);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.certificate::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(20, 40, 45, 0.2);
  content: "";
}

.certificate img {
  position: relative;
  z-index: 2;
  width: 160px;
  margin: auto;
}

.certificate > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.certificate small {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.certificate strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.certificate span {
  margin-top: 21px;
  color: rgba(20, 40, 45, 0.65);
  font-size: 10px;
  font-weight: 700;
}

.gift-ribbon {
  position: absolute;
  width: 110px;
  height: 500px;
  border: 22px solid rgba(245, 223, 160, 0.6);
  border-top: 0;
  border-bottom: 0;
}

.gift-ribbon--one {
  top: -80px;
  right: 80px;
  transform: rotate(45deg);
}

.gift-ribbon--two {
  bottom: -120px;
  left: 150px;
  transform: rotate(-50deg);
}

.faq {
  color: var(--ink);
  background: var(--paper);
}

.faq__inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9vw;
}

.accordion {
  border-top: 1px solid var(--dark-line);
}

.faq-item {
  border-bottom: 1px solid var(--dark-line);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 77px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 850;
  text-transform: uppercase;
}

.faq-item button i {
  position: relative;
  width: 25px;
  height: 25px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 12px;
  left: 4px;
  width: 17px;
  height: 1px;
  background: var(--blue-deep);
  content: "";
  transition: transform 0.25s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  padding-right: 50px;
  color: rgba(20, 40, 45, 0.65);
  font-size: 14px;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 25px;
}

.final-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.final-cta__image,
.final-cta__shade {
  position: absolute;
  inset: 0;
}

.final-cta__image {
  background: url("assets/group-v2.jpg") center / cover no-repeat;
}

.final-cta__shade {
  background: linear-gradient(90deg, rgba(5, 20, 24, 0.96), rgba(5, 20, 24, 0.64) 55%, rgba(5, 20, 24, 0.2));
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 40px;
  align-items: center;
}

.final-cta__inner > img {
  width: 135px;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding-block: 45px;
  border-top: 1px solid var(--line);
  background: #061418;
}

.footer__inner {
  display: grid;
  grid-template-columns: 210px 1fr 1fr auto;
  gap: 35px;
  align-items: center;
}

.footer__inner > img {
  width: 190px;
}

.footer p {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.footer__inner > div {
  display: flex;
  flex-direction: column;
}

.footer__inner > div a:first-child {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.footer__inner > div a:last-child {
  color: var(--blue);
  font-size: 11px;
}

.footer__inner > span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  text-transform: uppercase;
}

.booking {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: clamp(45px, 6vw, 75px);
  overflow: auto;
  color: var(--ink);
  border: 0;
  background: var(--paper);
}

.booking::backdrop {
  background: rgba(3, 15, 18, 0.86);
  backdrop-filter: blur(7px);
}

.booking__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--dark-line);
  background: transparent;
  cursor: pointer;
}

.booking__close span {
  position: absolute;
  top: 21px;
  left: 10px;
  width: 21px;
  height: 1px;
  background: var(--ink);
  transform: rotate(45deg);
}

.booking__close span:last-child {
  transform: rotate(-45deg);
}

.booking > div > p {
  max-width: 540px;
  margin: 24px 0 30px;
  color: rgba(20, 40, 45, 0.65);
}

.booking form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.booking label:nth-child(3) {
  grid-column: 1 / -1;
}

.booking label span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking input,
.booking select {
  min-height: 54px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--dark-line);
  border-radius: 0;
  outline: none;
  background: white;
}

.booking input:focus,
.booking select:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 2px rgba(61, 180, 223, 0.16);
}

.booking form .button {
  justify-self: start;
}

.booking form small {
  align-self: center;
  color: rgba(20, 40, 45, 0.43);
  font-size: 9px;
}

.booking__success {
  min-height: 460px;
  place-content: center;
}

.booking__success:not([hidden]) {
  display: grid;
}

.success-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--sun);
  font-size: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (max-width: 1160px) {
  .nav,
  .version-link,
  .messenger-link,
  .header__actions > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero__copy {
    width: 72%;
  }

  .hero__stamp {
    right: 30px;
  }

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

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

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-card__photo {
    min-height: 180px;
  }
}

@media (max-width: 800px) {
  :root {
    --pad: 20px;
  }

  .section {
    padding-block: 78px;
  }

  .header,
  .header.is-scrolled {
    height: 68px;
  }

  .brand {
    width: 150px;
  }

  .hero {
    min-height: 840px;
    height: auto;
  }

  .hero__image {
    background-position: 67% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(4, 20, 24, 0.98) 5%, rgba(4, 20, 24, 0.7) 65%, rgba(4, 20, 24, 0.25)),
      linear-gradient(90deg, rgba(4, 20, 24, 0.62), transparent);
  }

  .hero__content {
    min-height: 840px;
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 110px;
  }

  .hero__copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(49px, 14vw, 68px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }

  .hero__benefits svg {
    width: 29px;
  }

  .hero__benefits span {
    font-size: 7px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__stamp {
    display: none;
  }

  .hero__mountains {
    bottom: 76px;
    height: 50px;
  }

  .hero__stats {
    height: 78px;
  }

  .hero__stats strong {
    font-size: 23px;
  }

  .hero__stats span {
    display: none;
  }

  .section-heading h2,
  .gift h2,
  .final-cta h2,
  .booking h2 {
    font-size: clamp(42px, 12vw, 59px);
  }

  .format-grid,
  .route-grid,
  .beginner-grid,
  .review-grid,
  .gift__inner,
  .faq__inner {
    grid-template-columns: 1fr;
  }

  .route-grid {
    grid-auto-rows: 295px;
  }

  .beginner-card {
    min-height: 410px;
  }

  .safety {
    min-height: 760px;
  }

  .safety__image {
    background-position: 70% center;
  }

  .safety__shade {
    background: linear-gradient(0deg, rgba(4, 20, 24, 0.98), rgba(4, 20, 24, 0.35));
  }

  .safety-list {
    grid-template-columns: 1fr 1fr;
  }

  .gift__inner {
    gap: 55px;
  }

  .certificate-wrap {
    min-height: 310px;
  }

  .certificate {
    width: 100%;
    padding: 22px;
    border-width: 5px;
  }

  .certificate img {
    width: 95px;
  }

  .certificate strong {
    font-size: 25px;
  }

  .final-cta {
    min-height: 650px;
    align-items: flex-end;
    padding-bottom: 70px;
  }

  .final-cta__image {
    background-position: 65% center;
  }

  .final-cta__shade {
    background: linear-gradient(0deg, rgba(5, 20, 24, 0.98), rgba(5, 20, 24, 0.2));
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta__inner > img {
    display: none;
  }

  .final-cta__actions {
    width: 100%;
  }

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

  .booking {
    width: calc(100% - 14px);
    max-height: calc(100svh - 14px);
    padding: 62px 23px 30px;
  }

  .booking form {
    grid-template-columns: 1fr;
  }

  .booking label:nth-child(3) {
    grid-column: auto;
  }

  .booking form .button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .hero__benefits > div:last-child {
    display: none;
  }

  .hero__benefits {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__stats-inner {
    grid-template-columns: repeat(4, 1fr);
    padding-inline: 0;
  }

  .format-card__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .safety-list {
    grid-template-columns: 1fr;
  }

  .safety-list > div {
    min-height: 105px;
  }

  .certificate small,
  .certificate span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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