:root {
  --ink: #122323;
  --ink-soft: #1a3030;
  --blue: #33b5df;
  --blue-dark: #188fb8;
  --sun: #f6d978;
  --cream: #f4f1e8;
  --paper: #f7f6f0;
  --sage: #d9e7d8;
  --mist: #84afc0;
  --line: rgba(18, 35, 35, 0.16);
  --white-line: rgba(255, 255, 255, 0.22);
  --max: 1380px;
  --pad: clamp(20px, 4vw, 68px);
  --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(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

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

svg {
  display: block;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: white;
  border-bottom: 1px solid var(--white-line);
  transition:
    height 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.site-header.is-scrolled {
  height: 70px;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(247, 246, 240, 0.93);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  overflow: visible;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand__mark circle {
  fill: var(--sun);
  stroke: none;
}

.brand__name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand__name b {
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.phone-link {
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 25px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

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

.button--small {
  min-height: 42px;
  padding-inline: 19px;
}

.button--large {
  min-height: 62px;
  padding-inline: 29px;
}

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

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

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

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

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

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

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

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

.menu-toggle[aria-expanded="true"] span:last-child {
  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;
  color: white;
  background: var(--ink);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

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

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

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

.mobile-menu__phone {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  height: min(920px, 100svh);
  align-items: stretch;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 26, 26, 0.93) 0%, rgba(10, 26, 26, 0.6) 38%, rgba(10, 26, 26, 0.08) 72%),
    linear-gradient(0deg, rgba(10, 26, 26, 0.72) 0%, transparent 42%),
    url("assets/images/volga-go-hero.jpg") 58% 50% / cover no-repeat;
  transform: scale(1.01);
}

.hero__backdrop::after {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding-top: 100px;
  padding-bottom: 125px;
}

.hero__copy {
  width: min(690px, 63%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(64px, 7.4vw, 112px);
}

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

.hero__lead {
  max-width: 585px;
  margin: 32px 0 37px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.text-link--light {
  color: white;
}

.play-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.play-icon svg {
  width: 18px;
  fill: currentColor;
}

.hero__trust {
  position: absolute;
  right: var(--pad);
  bottom: 117px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-left: -8px;
  color: var(--ink);
  border: 2px solid white;
  border-radius: 50%;
  background: var(--sun);
  font-size: 10px;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--mist);
}

.avatar-stack span:last-child {
  background: var(--sage);
}

.stars {
  color: var(--sun);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.hero__trust p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.hero__trust strong {
  color: white;
}

.hero__stats {
  position: absolute;
  right: var(--pad);
  bottom: 185px;
  display: flex;
  border-top: 1px solid var(--white-line);
}

.hero__stats > div {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  min-width: 175px;
  padding: 20px 22px 0 0;
}

.hero__stats strong {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1;
}

.hero__stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 29px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span {
  width: 1px;
  height: 29px;
  background: rgba(255, 255, 255, 0.5);
}

.intro {
  overflow: hidden;
  padding-bottom: 70px;
  background: var(--paper);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12vw;
  align-items: end;
  margin-bottom: clamp(80px, 9vw, 125px);
}

.section-heading h2,
.first-time h2,
.cta h2 {
  font-size: clamp(48px, 5.4vw, 78px);
}

.intro__text {
  padding-bottom: 4px;
}

.intro__text p {
  margin-bottom: 20px;
  color: rgba(18, 35, 35, 0.72);
  font-size: 17px;
}

.intro__text p:first-child {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
}

.marquee {
  width: 100%;
  padding: 22px 0;
  overflow: hidden;
  color: rgba(18, 35, 35, 0.16);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 35px;
  animation: marquee 32s linear infinite;
}

.marquee span {
  font-family: var(--display);
  font-size: 57px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.marquee i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.tours {
  padding-top: 95px;
  background: #e8eee8;
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.section-note {
  max-width: 340px;
  margin-bottom: 6px;
  color: rgba(18, 35, 35, 0.65);
  font-size: 14px;
}

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

.tour-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--paper);
  transition: transform 0.35s ease;
}

.tour-card:hover {
  transform: translateY(-7px);
}

.tour-card__image {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
  background: var(--ink);
}

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

.tour-card:hover .tour-card__image img {
  transform: scale(1.04);
}

.tour-card__image--river img {
  object-position: 68% center;
}

.tour-card__badge,
.tour-card__level {
  position: absolute;
  top: 16px;
  padding: 7px 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-card__badge {
  left: 16px;
  color: var(--ink);
  background: var(--sun);
}

.tour-card__level {
  right: 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(18, 35, 35, 0.42);
  backdrop-filter: blur(8px);
}

.tour-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px 27px 24px;
}

.tour-card__meta {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tour-card h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(27px, 2.4vw, 37px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.tour-card__body > p:not(.tour-card__meta) {
  min-height: 68px;
  margin-bottom: 24px;
  color: rgba(18, 35, 35, 0.64);
  font-size: 13px;
}

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

.tour-card__footer > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 4px;
}

.tour-card__footer span,
.tour-card__footer small {
  color: rgba(18, 35, 35, 0.5);
  font-size: 10px;
}

.tour-card__footer small {
  grid-column: 2;
}

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

.round-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: white;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.round-button:hover {
  background: var(--blue-dark);
  transform: rotate(-12deg);
}

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

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

.first-time__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.first-time__image {
  position: relative;
}

.first-time__image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.23);
  content: "";
  transform: translate(15px, 15px);
}

.first-time__image img {
  position: relative;
  z-index: 2;
  aspect-ratio: 0.95;
  object-fit: cover;
  object-position: 38% center;
}

.image-note {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 245px;
  padding: 17px 20px;
  color: var(--ink);
  background: var(--sun);
}

.image-note svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.image-note div {
  display: flex;
  flex-direction: column;
}

.image-note strong {
  font-size: 12px;
}

.image-note span {
  font-size: 10px;
}

.first-time__copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
}

.check-list {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px;
  padding: 18px 0;
  border-top: 1px solid var(--white-line);
}

.check-list li > span {
  padding-top: 2px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.check-list strong {
  font-size: 14px;
}

.check-list p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

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

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

.care-card {
  position: relative;
  min-height: 320px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.care-card:hover {
  color: white;
  background: var(--ink);
}

.care-card__number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: rgba(18, 35, 35, 0.35);
  font-size: 10px;
  font-weight: 800;
}

.care-card:hover .care-card__number {
  color: var(--blue);
}

.care-card svg {
  width: 58px;
  margin: 52px 0 46px;
  fill: none;
  stroke: var(--blue-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.care-card h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.care-card p {
  margin: 0;
  color: rgba(18, 35, 35, 0.57);
  font-size: 12px;
}

.care-card:hover p {
  color: rgba(255, 255, 255, 0.6);
}

.story {
  position: relative;
  display: flex;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  color: white;
}

.story__image,
.story__overlay {
  position: absolute;
  inset: 0;
}

.story__image {
  background: url("assets/images/riverside-camp.jpg") center 42% / cover no-repeat;
}

.story__overlay {
  background:
    linear-gradient(90deg, rgba(13, 29, 29, 0.9), rgba(13, 29, 29, 0.18) 70%),
    linear-gradient(0deg, rgba(13, 29, 29, 0.65), transparent);
}

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

.story blockquote {
  max-width: 900px;
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: clamp(42px, 5.6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.story__content > p:last-child {
  max-width: 455px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.reviews {
  background: var(--sage);
}

.review-score {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-score > strong {
  font-family: var(--display);
  font-size: 61px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.review-score div span {
  color: #c59212;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.review-score p {
  margin: 2px 0 0;
  color: rgba(18, 35, 35, 0.55);
  font-size: 10px;
}

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

.review-card {
  min-height: 330px;
  padding: clamp(30px, 4vw, 52px);
  background: var(--paper);
}

.review-card--dark {
  color: white;
  background: var(--ink);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}

.review-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--sun);
  font-size: 11px;
  font-weight: 800;
}

.review-card__top > div:last-child {
  display: flex;
  flex-direction: column;
}

.review-card__top strong {
  font-size: 13px;
}

.review-card__top span {
  color: rgba(18, 35, 35, 0.48);
  font-size: 10px;
}

.review-card--dark .review-card__top span {
  color: rgba(255, 255, 255, 0.45);
}

.review-card > p {
  max-width: 520px;
  margin-bottom: 30px;
  font-family: Georgia, serif;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.5;
}

.review-route {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-card--dark .review-route {
  color: var(--blue);
}

.cta {
  padding-block: 95px;
  color: white;
  background: var(--blue-dark);
}

.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  overflow: hidden;
}

.cta h2 em {
  color: var(--sun);
}

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

.cta__right p {
  max-width: 460px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
}

.cta__route {
  position: absolute;
  right: -80px;
  bottom: -72px;
  width: 500px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-dasharray: 6 8;
  stroke-width: 1.5;
}

.cta__route circle {
  fill: var(--sun);
  stroke: none;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 65px;
}

.brand--footer .brand__mark {
  width: 48px;
  height: 48px;
}

.brand--footer .brand__name {
  font-size: 22px;
}

.footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__contact a:first-child {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
}

.footer__contact a:last-child {
  color: var(--blue);
  font-size: 12px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  padding-bottom: 23px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid var(--white-line);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-dialog {
  width: min(900px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  border: 0;
  background: var(--paper);
}

.booking-dialog::backdrop {
  background: rgba(7, 20, 20, 0.82);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.dialog-close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 1px;
  background: var(--ink);
  transform: rotate(45deg);
}

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

.dialog-copy,
.dialog-success {
  padding: clamp(46px, 7vw, 78px);
}

.dialog-copy h2,
.dialog-success h2 {
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 67px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.dialog-copy > p:not(.eyebrow),
.dialog-success > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(18, 35, 35, 0.63);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

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

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

.booking-form label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 2px rgba(51, 181, 223, 0.15);
}

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

.booking-form small {
  align-self: center;
  color: rgba(18, 35, 35, 0.44);
  font-size: 9px;
}

.dialog-success {
  min-height: 560px;
  place-content: center;
}

.dialog-success:not([hidden]) {
  display: grid;
}

.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--sun);
  font-size: 23px;
}

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

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

@media (max-width: 1120px) {
  .desktop-nav,
  .phone-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header .header-actions > .button {
    display: none;
  }

  .hero__copy {
    width: min(700px, 74%);
  }

  .hero__stats {
    right: var(--pad);
  }

  .hero__stats > div {
    min-width: 155px;
  }

  .hero__trust {
    display: none;
  }

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

  .tour-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tour-card:last-child .tour-card__image {
    height: 100%;
    aspect-ratio: auto;
  }

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

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

  .section {
    padding-block: 80px;
  }

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

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__name {
    font-size: 17px;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero__backdrop {
    background:
      linear-gradient(0deg, rgba(10, 26, 26, 0.95) 0%, rgba(10, 26, 26, 0.62) 55%, rgba(10, 26, 26, 0.15)),
      url("assets/images/volga-go-hero.jpg") 68% center / cover no-repeat;
  }

  .hero__content {
    align-content: end;
    padding-top: 95px;
    padding-bottom: 92px;
  }

  .hero__copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero__lead {
    margin: 24px 0 28px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__stats {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .intro__grid,
  .first-time__grid,
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section-heading h2,
  .first-time h2,
  .cta h2 {
    font-size: clamp(43px, 13.5vw, 60px);
  }

  .intro__text p:first-child {
    font-size: 18px;
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

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

  .tour-card:last-child {
    grid-column: auto;
    display: flex;
  }

  .tour-card:last-child .tour-card__image {
    height: auto;
    aspect-ratio: 1.25;
  }

  .tour-card__body > p:not(.tour-card__meta) {
    min-height: auto;
  }

  .first-time__grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .first-time__image img {
    aspect-ratio: 1;
  }

  .image-note {
    right: -1px;
    bottom: 20px;
    min-width: 225px;
  }

  .care-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .care-card {
    min-height: 250px;
  }

  .care-card svg {
    margin: 30px 0 35px;
  }

  .story {
    min-height: 680px;
    align-items: flex-end;
    padding-bottom: 90px;
  }

  .story__image {
    background-position: 58% center;
  }

  .story__overlay {
    background: linear-gradient(0deg, rgba(13, 29, 29, 0.96), rgba(13, 29, 29, 0.1) 85%);
  }

  .story blockquote {
    font-size: clamp(39px, 12vw, 55px);
  }

  .review-score {
    margin-top: -5px;
  }

  .cta {
    padding-block: 80px;
  }

  .cta__right .button {
    width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 55px;
    padding-bottom: 45px;
  }

  .footer__contact {
    align-items: flex-start;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .booking-dialog {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
  }

  .dialog-copy,
  .dialog-success {
    padding: 65px 24px 35px;
  }

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

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

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

@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;
  }
}
