:root {
  --navy: #0a1628;
  --navy-mid: #122240;
  --navy-light: #1b3358;
  --emerald: #1a6b38;
  --emerald-bright: #2d8a4e;
  --emerald-glow: rgba(45, 138, 78, 0.25);
  --gold: #c9a84c;
  --gold-light: #e4c97a;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --water: #1e6b9a;
  --water-deep: #0d4a6e;
  --cream: #f8f5f0;
  --cream-dark: #ede8df;
  --text: #1a2332;
  --text-light: rgba(255, 255, 255, 0.88);
  --muted: #6b7a8d;
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: #dde4ee;
  --card: #ffffff;
  --shadow: 0 16px 48px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 24px 64px rgba(10, 22, 40, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, var(--emerald-glow), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(30, 107, 154, 0.12), transparent),
    var(--cream);
  pointer-events: none;
}

/* ── Typography helpers ── */

em {
  font-style: italic;
  color: var(--emerald-bright);
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-intro--light .section-tag,
.category-section--river .section-tag {
  color: var(--gold-light);
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-primary {
  background: var(--emerald);
  color: #fff;
}

.btn-primary:hover {
  background: var(--emerald-bright);
  box-shadow: 0 6px 20px var(--emerald-glow);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled,
.site-header.site-header--solid {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-link img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a.active {
  color: #fff;
}

.site-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  opacity: 0.9;
}

.header-phone:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 100px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(26, 107, 56, 0.35) 50%, rgba(10, 22, 40, 0.75) 100%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(201, 168, 76, 0.15), transparent);
}

.hero-waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  color: var(--cream);
  line-height: 0;
}

.hero-waves svg {
  width: 100%;
  height: 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 20px;
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.hero-slider-controls {
  position: absolute;
  bottom: 100px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.15s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Marquee ── */

.marquee {
  background: var(--navy);
  color: var(--gold-light);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-track span:nth-child(even) {
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ── */

.section {
  padding: 80px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 40px;
  align-items: start;
  margin-bottom: 48px;
}

.section-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--emerald);
  opacity: 0.35;
  user-select: none;
}

.section-intro-text h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
}

.section-intro-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 56ch;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
}

.section-header p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 52ch;
}

/* ── Category sections ── */

.category-section {
  background: var(--cream);
}

.category-section--river {
  position: relative;
  background: linear-gradient(165deg, var(--water-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: #fff;
  padding-top: 100px;
}

.section-wave {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  color: var(--cream);
}

.section-wave--top {
  top: -1px;
}

.section-wave svg {
  width: 100%;
  height: 80px;
}

.category-section--river .section-num {
  -webkit-text-stroke-color: rgba(201, 168, 76, 0.5);
}

.category-section--river .section-intro-text h2 {
  color: #fff;
}

.category-section--river .section-intro-text h2 em {
  color: var(--gold-light);
}

.category-section--river .section-intro-text p {
  color: rgba(255, 255, 255, 0.72);
}

.river-cta {
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.river-cta p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.section-more-link {
  text-align: center;
  margin: 40px 0 0;
}

/* ── Excursion cards ── */

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.excursion-card {
  position: relative;
  background: rgba(10, 22, 40, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.excursion-card:hover {
  transform: translateY(-6px);
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 24px 64px rgba(10, 22, 40, 0.28);
}

.excursion-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
}

.excursion-card-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(10, 22, 40, 0.75);
  color: var(--gold-light);
  backdrop-filter: blur(6px);
}

.excursion-card-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
}

.excursion-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 60%);
}

.excursion-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.excursion-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.excursion-card-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.excursion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.excursion-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
}

.excursion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 10px;
}

.excursion-route {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 16px;
  flex: 1;
  line-height: 1.55;
}

.excursion-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.excursion-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
}

.excursion-price-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.excursion-card .btn {
  width: 100%;
  pointer-events: none;
}

.excursions-empty,
.excursions-loading {
  text-align: center;
  color: var(--muted);
  padding: 48px 20px;
  grid-column: 1 / -1;
  font-size: 1.05rem;
}

.category-section--river .excursions-empty,
.category-section--river .excursions-loading {
  color: rgba(255, 255, 255, 0.6);
}

/* ── About ── */

.about-section {
  background: var(--cream);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-card {
  border-radius: var(--radius);
  padding: 24px;
}

.about-card--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.35;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-card-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.about-card--accent {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 48%;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-bright) 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 3;
}

.about-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-card--photo {
  position: absolute;
  top: 80px;
  right: 10%;
  width: 65%;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin: 0 0 24px;
}

.about-text p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.about-features {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.about-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  transition: box-shadow 0.2s;
}

.about-features li:hover {
  box-shadow: var(--shadow);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.about-features strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 15px;
}

.about-features span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Reviews ── */

.reviews-section {
  background: var(--card);
  border-top: 1px solid var(--border-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-text {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--water) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.review-date {
  font-size: 12px;
  color: var(--muted);
}

/* ── Footer ── */

.site-footer {
  position: relative;
  background: var(--navy);
  color: var(--text-light);
  padding: 80px 0 32px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  color: var(--card);
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.footer-cta-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.footer-cta-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.15s;
}

.footer-cta-phone:hover {
  color: var(--gold-light);
}

.footer-cta-hours {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.65;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  opacity: 0.55;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

.footer-brand img {
  height: 38px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 0 0 20px;
  font-size: 14px;
  opacity: 0.75;
  max-width: 34ch;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.15s, border-color 0.15s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-col h4 {
  margin: 0 0 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contacts a {
  color: #fff;
  font-weight: 600;
}

.footer-contacts li {
  font-size: 14px;
  line-height: 1.7;
}

/* ── Responsive ── */

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    min-height: 360px;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .header-actions {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-num {
    font-size: 3.5rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-slider-controls {
    bottom: 90px;
    right: 50%;
    transform: translateX(50%);
  }

  .excursions-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .river-cta {
    flex-direction: column;
    text-align: center;
  }

  .about-card--main {
    width: 70%;
    font-size: 1.1rem;
  }

  .about-card--photo {
    width: 75%;
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
