:root {
  --cream: #FFFFFF;
  --beige: #F4F8FB;
  --warm-beige: #D8E6EE;
  --taupe: #7B96A7;
  --dark-taupe: #0E8E9A;
  --charcoal-brown: #526B7A;
  --graphite: #183448;
  --black: #061826;
  --bg: #F7FAFC;
  --ink: var(--black);
  --muted: var(--charcoal-brown);
  --line: rgba(6, 24, 38, 0.14);
  --soft: #F4F8FB;
  --blue: #061826;
  --blue-2: #0A2A3D;
  --teal: #0E8E9A;
  --teal-2: #18AEB5;
  --salmon: #E95F4F;
  --surface: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(6, 24, 38, 0.16);
  --radius: 8px;
  --container: min(1320px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(14, 142, 154, 0.12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(233, 95, 79, 0.1), transparent 24%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F8FB 52%, #E8F0F5 100%);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

body::before {
  content: none;
}

body.panel-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--blue);
  background: #FFFFFF;
  border: 1px solid var(--line);
  transform: translateY(-140%);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 9px max(20px, calc((100vw - 1320px) / 2));
  background: rgba(3, 18, 30, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.brand,
.top-actions,
.nav,
.hero-controls {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: #FFFFFF;
  font-weight: 850;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: #FFF3E4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.nav {
  gap: clamp(14px, 1.5vw, 22px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 520;
}

.nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--teal-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav a.is-active {
  color: #FFFFFF;
  font-weight: 680;
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.top-actions {
  gap: 8px;
}

.top-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
}

.call-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.telegram-icon {
  width: 42px;
  min-height: 42px;
  justify-content: center;
  padding: 0;
  border: 0;
  background: linear-gradient(180deg, #37B7EA, #1E96D4);
  box-shadow: 0 10px 24px rgba(30, 150, 212, 0.28);
}

.telegram-icon svg {
  width: 21px;
  height: 21px;
  fill: #FFFFFF;
  transform: translateX(-1px);
}

.telegram-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(30, 150, 212, 0.36);
}

.max-icon {
  width: 42px;
  min-height: 42px;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #24C8F2 0%, #245DFF 45%, #9D36E8 100%);
  box-shadow: 0 10px 24px rgba(71, 82, 236, 0.3);
}

.max-icon svg {
  width: 27px;
  height: 27px;
  fill: #FFFFFF;
}

.max-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(71, 82, 236, 0.38);
}

.icon-btn,
.close {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
}

.call-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.call-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: start;
  padding: 130px 0 0;
  color: #FFFFFF;
  background: #061826;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 18, 30, 0.92) 0%, rgba(3, 18, 30, 0.66) 38%, rgba(3, 18, 30, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 18, 30, 0.04), rgba(3, 18, 30, 0.34)),
    url("assets/hero/hero-trout-karelia-wide.jpg") center / cover no-repeat;
}

.hero-bg::after {
  content: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 620px);
  align-items: center;
  gap: 72px;
}

.hero h1,
.hero h2,
.hero h3,
.hero .kicker,
.hero dt,
.hero dd,
.hero .social-proof strong,
.hero .social-proof span {
  color: #FFFFFF;
}

.kicker {
  margin: 0 0 14px;
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue);
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 5.6vw, 88px);
  line-height: 0.98;
}

h2 {
  max-width: 880px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
}

h3 {
  font-size: 23px;
  line-height: 1.22;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.35vw, 22px);
}

.arrival-hero {
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 16px;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(14, 142, 154, 0.28);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  font-weight: 950;
}

.legal-note,
.date-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.hero-controls {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-controls .btn {
  min-height: 54px;
  padding: 0 24px;
  font-size: 15px;
}

.social-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: #FFFFFF;
}

.social-proof strong {
  color: var(--black);
  font-size: 16px;
  letter-spacing: 0;
}

.social-proof span {
  color: var(--charcoal-brown);
  font-size: 14px;
  font-weight: 620;
}

.hero .social-proof strong,
.hero .social-proof span,
.hero dt,
.hero dd {
  color: #FFFFFF;
}

.hero .social-proof span,
.hero dt {
  opacity: 0.78;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, opacity 160ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  color: #FFFFFF;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(6, 24, 38, 0.22);
}

.btn.primary:hover {
  background: var(--blue-2);
}

.hero .btn.primary {
  color: var(--blue);
  background: #FFFFFF;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.hero .btn.primary:hover {
  background: #EAF4F8;
}

.btn.secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  max-width: 720px;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-card,
.proof,
.product-card,
.trust-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(6, 24, 38, 0.08);
}

.hero-facts div {
  min-width: 145px;
}

.hero-process {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) 1fr;
  gap: 46px;
  align-items: center;
  width: 100vw;
  margin: 24px 0 0 calc(50% - 50vw);
  padding: 52px max(28px, calc((100vw - 1320px) / 2));
  color: var(--blue);
  background: #FFFFFF;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-process h2 {
  max-width: 460px;
  color: var(--blue);
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.12;
}

.hero-process .kicker {
  color: var(--teal);
}

.hero-process .date-note {
  color: var(--muted);
}

.hero-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 56px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.hero-steps li {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: 0;
  text-align: center;
  border: 0;
  background: transparent;
}

.hero-steps .step-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 14px 34px rgba(6, 24, 38, 0.08);
}

.hero-steps .step-icon::before,
.hero-steps .step-icon::after {
  content: none;
}

.hero-steps .step-icon svg {
  width: 34px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-steps small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 850;
}

.hero-steps strong {
  display: block;
  color: var(--black);
  font-size: 19px;
  line-height: 1.18;
}

.hero-steps p {
  margin: 10px auto 0;
  max-width: 210px;
  color: var(--charcoal-brown);
  font-size: 15px;
  line-height: 1.42;
}

.hero-steps a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
  color: var(--blue);
  font-size: 19px;
  font-weight: 900;
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 430px);
  justify-self: end;
  padding: 28px;
  backdrop-filter: blur(12px);
}

.hero .hero-card {
  display: none;
}

.hero-infographic {
  min-height: 500px;
  display: grid;
  align-content: start;
  gap: 22px;
  background:
    radial-gradient(circle at 52% 27%, rgba(255, 255, 255, 0.68), transparent 28%),
    radial-gradient(circle at 80% 74%, rgba(233, 95, 79, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(234, 247, 245, 0.72));
}

.hero-infographic::before {
  content: none;
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(16, 15, 13, 0.08);
  border-radius: var(--radius);
}

.info-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--charcoal-brown);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.info-top strong {
  color: var(--black);
  font-size: 13px;
  text-transform: none;
}

.fish-scene {
  position: relative;
  height: 210px;
  perspective: 900px;
  transform-style: preserve-3d;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-trout-render {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128%;
  max-width: none;
  transform: translate(-50%, -50%) rotate(-1deg);
  filter: drop-shadow(0 22px 28px rgba(16, 15, 13, 0.15));
  animation: troutFloat 5.4s ease-in-out infinite;
}

.info-main {
  position: relative;
  z-index: 1;
  padding: 0;
}

.info-main p {
  max-width: 330px;
  margin: 0;
  color: var(--charcoal-brown);
  font-size: 17px;
  font-weight: 620;
}

.info-number {
  color: var(--black) !important;
  font-size: clamp(74px, 6vw, 108px) !important;
  line-height: 0.86;
  font-weight: 950 !important;
  letter-spacing: 0;
}

.info-number span {
  display: block;
  margin-top: 10px;
  color: var(--graphite);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.info-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.info-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-steps time {
  display: block;
  color: var(--black);
  font-size: 22px;
  font-weight: 950;
}

.info-steps span {
  display: block;
  color: var(--graphite);
  font-size: 16px;
  font-weight: 720;
}

.section {
  padding: 64px 0;
  scroll-margin-top: 118px;
}

.why {
  padding-top: 64px;
}

.why .proof-list {
  margin-top: 24px;
}

.why .sticky-copy {
  top: 150px;
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.narrow {
  max-width: 920px;
}

.sticky-copy p,
.split-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
}

.section-head {
  margin-bottom: 24px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  align-items: end;
  gap: 32px;
}

.split-head p {
  max-width: 420px;
  margin: 0 0 8px;
  font-size: 17px;
}

.catalog .section-head {
  margin-bottom: 22px;
}

.catalog h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 64px);
}

.catalog .split-head > p {
  justify-self: end;
  max-width: 390px;
  font-size: 18px;
  line-height: 1.35;
}

.route-head {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.route-head h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 64px);
}

.route-head > p {
  max-width: 430px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 236px;
  padding: 23px;
  border-left: 3px solid var(--teal);
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px var(--line);
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal-2);
  font-weight: 950;
}

.steps strong {
  display: block;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.22;
}

.steps p,
.proof p,
.product-card p,
.trust-card p,
.faq-item p {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof {
  padding: 28px;
}

.proof b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #FFFFFF;
  background: var(--blue);
  border-radius: 50%;
}

.route-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 0;
  padding: clamp(26px, 3vw, 40px);
  color: var(--blue);
  background:
    radial-gradient(circle at 18% 20%, rgba(14, 160, 172, 0.12), transparent 28%),
    linear-gradient(145deg, #FFFFFF, #EEF6F8);
}

.coverage-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(260px, 0.48fr);
  gap: 14px 34px;
  align-items: center;
}

.coverage-label {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 7px 11px;
  color: #FFFFFF;
  background: rgba(14, 160, 172, 0.82);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-panel h3 {
  max-width: 560px;
  margin: 0;
  color: var(--blue);
  font-family: var(--body);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.coverage-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.5;
}

.coverage-infographic {
  width: 100%;
  height: auto;
  max-height: 460px;
  min-height: 0;
  border-radius: var(--radius);
}

.coverage-route-line {
  animation: routePulse 6s linear infinite;
}

.coverage-point {
  filter: drop-shadow(0 10px 14px rgba(6, 24, 38, 0.12));
}

.coverage-infographic .map-label {
  paint-order: stroke;
  stroke: #F5FAFB;
  stroke-width: 5px;
  stroke-linejoin: round;
}

.route-list {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
}

.route-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.route-list li:last-child {
  border-right: 0;
}

.route-list time {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #FFFFFF;
  background: var(--teal);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 950;
}

.route-list b {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 19px;
  line-height: 1.15;
}

.route-list span {
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.45;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 0 0 18px;
  overflow: hidden;
  background: #FFFFFF;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card.is-disabled {
  opacity: 0.58;
}

.product-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #eef5f7;
}

.product-card h3 {
  min-height: auto;
  color: var(--black);
  padding: 0 18px;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 850;
}

.product-card p {
  min-height: 46px;
  margin: 10px 0 16px;
  padding: 0 18px;
  font-size: 14px;
}

.product-meta {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 14px 18px 0;
  border-top: 1px solid var(--line);
}

.price {
  color: var(--salmon);
  font-size: 24px;
  font-weight: 950;
}

.product-card .btn {
  width: fit-content;
  min-width: 116px;
  min-height: 42px;
  margin: 16px 18px 0;
  border-radius: 999px;
}

.small-btn,
.product-edit button,
.footer-actions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: #FFFFFF;
  cursor: pointer;
  font-weight: 850;
}

.reviews-carousel {
  position: relative;
  padding: 36px 82px 64px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 8%, transparent 8% 22%, rgba(255, 255, 255, 0.05) 22% 29%, transparent 29% 100%),
    radial-gradient(circle at 12% 0%, rgba(24, 174, 181, 0.18), transparent 28%),
    radial-gradient(circle at 86% 100%, rgba(233, 95, 79, 0.12), transparent 24%),
    linear-gradient(135deg, #061826, #0A2A3D);
  background-size: 220% 100%, auto, auto, auto;
  border-radius: 26px;
  box-shadow: 0 28px 76px rgba(6, 24, 38, 0.2);
  animation: waterSheen 11s ease-in-out infinite alternate;
}

.reviews-carousel::before,
.reviews-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 58px;
  z-index: 1;
  width: 96px;
  pointer-events: none;
}

.reviews-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #061826, rgba(6, 24, 38, 0));
}

.reviews-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #0A2A3D, rgba(10, 42, 61, 0));
}

.water-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.water-stage::before {
  content: "";
  position: absolute;
  inset: -18%;
  opacity: 0.3;
  background:
    repeating-radial-gradient(ellipse at 30% 36%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px 24px),
    repeating-linear-gradient(105deg, transparent 0 34px, rgba(255, 255, 255, 0.06) 35px 37px, transparent 38px 72px);
  filter: blur(0.2px);
  transform: rotate(-4deg);
  animation: waterCaustics 18s linear infinite;
}

.water-stage::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 18%;
  height: 2px;
  opacity: 0.44;
  background: linear-gradient(90deg, transparent, rgba(120, 230, 236, 0.72), transparent);
  box-shadow:
    0 62px 0 rgba(120, 230, 236, 0.18),
    0 148px 0 rgba(255, 255, 255, 0.1),
    0 236px 0 rgba(120, 230, 236, 0.14);
  animation: waterLine 7s ease-in-out infinite;
}

.water-stage span {
  position: absolute;
  bottom: -42px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.35);
  animation: bubbleRise 9s ease-in infinite;
}

.water-stage span:nth-child(1) {
  left: 12%;
  animation-duration: 8.5s;
}

.water-stage span:nth-child(2) {
  left: 28%;
  width: 7px;
  height: 7px;
  animation-delay: 1.4s;
  animation-duration: 10s;
}

.water-stage span:nth-child(3) {
  left: 52%;
  width: 13px;
  height: 13px;
  animation-delay: 2.6s;
  animation-duration: 11s;
}

.water-stage span:nth-child(4) {
  left: 74%;
  width: 8px;
  height: 8px;
  animation-delay: 0.8s;
  animation-duration: 7.8s;
}

.water-stage span:nth-child(5) {
  left: 88%;
  width: 11px;
  height: 11px;
  animation-delay: 4s;
  animation-duration: 12s;
}

.water-stage span:nth-child(6) {
  left: 6%;
  width: 6px;
  height: 6px;
  animation-delay: 3.2s;
  animation-duration: 8.8s;
}

.water-stage span:nth-child(7) {
  left: 18%;
  width: 14px;
  height: 14px;
  animation-delay: 5.1s;
  animation-duration: 13s;
}

.water-stage span:nth-child(8) {
  left: 39%;
  width: 5px;
  height: 5px;
  animation-delay: 0.2s;
  animation-duration: 7.2s;
}

.water-stage span:nth-child(9) {
  left: 46%;
  width: 9px;
  height: 9px;
  animation-delay: 6.4s;
  animation-duration: 10.6s;
}

.water-stage span:nth-child(10) {
  left: 64%;
  width: 15px;
  height: 15px;
  animation-delay: 2.1s;
  animation-duration: 14s;
}

.water-stage span:nth-child(11) {
  left: 81%;
  width: 6px;
  height: 6px;
  animation-delay: 7.2s;
  animation-duration: 9.4s;
}

.water-stage span:nth-child(12) {
  left: 96%;
  width: 12px;
  height: 12px;
  animation-delay: 1.8s;
  animation-duration: 11.5s;
}

.reviews-track {
  position: relative;
  z-index: 2;
  height: 600px;
  perspective: 1600px;
  transform-style: preserve-3d;
  outline: none;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  width: min(420px, 42vw);
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 251, 0.94));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateZ(-360px) scale(0.72);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.78, 0.2, 1), opacity 260ms ease, filter 260ms ease;
  will-change: transform, opacity;
}

.review-slide.is-visible {
  opacity: 0.42;
}

.review-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.review-slide[data-position="0"] {
  z-index: 5;
  filter: none;
  transform: translateX(-50%) translateZ(120px) rotateY(0deg) scale(1);
}

.review-slide[data-position="-1"] {
  z-index: 4;
  filter: saturate(0.82) brightness(0.9);
  transform: translateX(calc(-50% - 250px)) translateZ(-90px) rotateY(28deg) scale(0.84);
}

.review-slide[data-position="1"] {
  z-index: 4;
  filter: saturate(0.82) brightness(0.9);
  transform: translateX(calc(-50% + 250px)) translateZ(-90px) rotateY(-28deg) scale(0.84);
}

.review-slide[data-position="-2"] {
  z-index: 3;
  filter: saturate(0.7) brightness(0.76);
  transform: translateX(calc(-50% - 430px)) translateZ(-260px) rotateY(42deg) scale(0.68);
}

.review-slide[data-position="2"] {
  z-index: 3;
  filter: saturate(0.7) brightness(0.76);
  transform: translateX(calc(-50% + 430px)) translateZ(-260px) rotateY(-42deg) scale(0.68);
}

.review-slide img {
  width: 100%;
  height: 560px;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(180deg, #FFFFFF, #EEF6F8);
}

.review-caption {
  display: none;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: #FFFFFF;
  background: rgba(6, 24, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.review-caption strong {
  font-size: 17px;
  line-height: 1.2;
}

.review-caption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.carousel-btn {
  position: absolute;
  top: calc(50% - 34px);
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.carousel-prev {
  left: 22px;
}

.carousel-next {
  right: 22px;
}

.carousel-dots {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--teal-2);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.admin-form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 8px;
  color: #183448;
  font-size: 15px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #FFFFFF;
}

textarea {
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--salmon);
  box-shadow: 0 0 0 3px rgba(233, 95, 79, 0.16);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-size: 14px;
}

.consent input {
  width: 18px;
  margin-top: 4px;
}

.consent button {
  display: inline;
  padding: 0;
  color: var(--black);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  padding: 48px 0;
  color: #FFFFFF;
  background: #061826;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.8fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.footer img {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #FFF3E4;
}

.footer p,
.footer address span {
  color: #D8E6EE;
}

.footer strong {
  display: block;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.company-details {
  font-size: 14px;
  line-height: 1.6;
}

address,
.footer-actions {
  display: grid;
  gap: 14px;
  font-style: normal;
}

.footer-contact a {
  width: fit-content;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
}

.footer-contact span {
  max-width: 420px;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.45;
}

.footer-actions button {
  width: fit-content;
  color: #FFFFFF;
  background: transparent;
}

.modal {
  width: min(760px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(16, 15, 13, 0.58);
}

.modal .close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 170;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 18px max(22px, calc((100vw - 1320px) / 2));
  color: #FFFFFF;
  background: rgba(6, 24, 38, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 -18px 60px rgba(6, 24, 38, 0.26);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: #D8E6EE;
  font-size: 14px;
  line-height: 1.45;
  max-width: 920px;
}

.cookie-banner > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner .btn {
  min-height: 44px;
  padding: 0 18px;
  background: var(--teal);
}

.ghost-btn {
  min-height: 44px;
  padding: 0 16px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.admin {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 180;
  width: min(560px, 100%);
  padding: 26px;
  overflow: auto;
  background: #FFFFFF;
  box-shadow: -24px 0 80px rgba(16, 15, 13, 0.26);
  transform: translateX(106%);
  transition: transform 220ms ease;
}

.admin.is-open {
  transform: translateX(0);
}

.admin-head,
.admin-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin h2 {
  font-size: 34px;
}

.admin-block {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

#adminProducts {
  display: grid;
  gap: 12px;
}

.product-edit {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.product-edit .edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-edit .edit-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 220;
  max-width: min(520px, calc(100% - 32px));
  padding: 14px 18px;
  color: #FFFFFF;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes water {
  to {
    transform: translateX(-24px);
  }
}

@keyframes meter {
  from {
    width: 0;
  }
}

@keyframes drive {
  50% {
    transform: translate(68px, 108px);
  }
}

@keyframes routePulse {
  to {
    stroke-dashoffset: -76;
  }
}

@keyframes troutFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-1deg) scale(1);
  }

  50% {
    transform: translate(-49%, -53%) rotate(1deg) scale(1.025);
  }
}

@keyframes waterSheen {
  from {
    background-position: 0% 50%, center, center, center;
  }

  to {
    background-position: 100% 50%, center, center, center;
  }
}

@keyframes waterCaustics {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(-4deg);
  }

  to {
    transform: translate3d(2%, 1%, 0) rotate(-4deg);
  }
}

@keyframes waterLine {
  0%,
  100% {
    transform: translateY(0) scaleX(0.94);
  }

  50% {
    transform: translateY(18px) scaleX(1.05);
  }
}

@keyframes bubbleRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.65);
  }

  14% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate3d(28px, -650px, 0) scale(1.25);
  }
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .hero-layout,
  .two-col,
  .route-board,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 34px;
  }

  .top-actions {
    margin-left: auto;
  }

  .hero-process {
    grid-template-columns: 1fr;
    align-items: start;
    width: 100%;
    margin-left: 0;
    padding: 48px 0;
  }

  .hero-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card {
    max-width: 560px;
    justify-self: start;
  }

  .fish-scene {
    max-width: 430px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-track {
    height: 560px;
  }

  .sticky-copy {
    position: static;
  }

  .route-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .route-head > p {
    max-width: 680px;
    margin: 0;
  }

  .coverage-copy {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 24px, 1320px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .topbar {
    gap: 10px;
    padding: 8px 12px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .top-link {
    display: none;
  }

  .telegram-icon,
  .max-icon {
    display: inline-flex;
    width: 38px;
    min-height: 38px;
  }

  .call-link {
    width: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .call-link span {
    display: none;
  }

  .call-link svg {
    width: 17px;
    height: 17px;
  }

  .hero {
    min-height: auto;
    padding: 86px 0 0;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(3, 18, 30, 0.9) 0%, rgba(3, 18, 30, 0.68) 58%, rgba(3, 18, 30, 0.28) 100%),
      linear-gradient(180deg, rgba(3, 18, 30, 0.02), rgba(3, 18, 30, 0.34)),
      url("assets/hero/hero-trout-karelia-wide.jpg") 76% center / cover no-repeat;
  }

  .hero-layout {
    min-height: 0;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.02;
  }

  h2,
  .catalog h2,
  .route-head h2 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.08;
  }

  .arrival-hero {
    max-width: 100%;
    font-size: clamp(28px, 10vw, 42px);
    white-space: normal;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.48;
  }

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

  .hero-controls .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .steps,
  .catalog-grid,
  .hero-steps,
  .info-steps {
    grid-template-columns: 1fr;
  }

  .hero-process {
    margin-top: 0;
    padding: 34px 12px;
  }

  .hero-process h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero-steps {
    gap: 0;
    margin-top: 6px;
  }

  .hero-steps li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 0 14px;
    align-items: start;
    text-align: left;
    min-height: auto;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-steps .step-icon {
    grid-row: 1 / 4;
    width: 48px;
    height: 48px;
    margin: 2px 0 0;
  }

  .hero-steps small,
  .hero-steps strong,
  .hero-steps p {
    margin-left: 0;
  }

  .hero-steps small {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .hero-steps strong {
    font-size: 18px;
  }

  .hero-steps p {
    max-width: none;
    margin-top: 5px;
    font-size: 14px;
  }

  .hero-steps::before {
    display: none;
  }

  .hero-facts {
    gap: 14px 18px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .hero-facts div {
    min-width: 0;
    flex: 1 1 140px;
  }

  .hero-infographic {
    min-height: auto;
    padding: 22px;
  }

  .fish-scene {
    height: 150px;
  }

  .hero-trout-render {
    width: 138%;
  }

  .info-number {
    font-size: 56px !important;
  }

  .info-steps li {
    min-height: auto;
  }

  .reviews-carousel {
    padding: 18px 34px 54px;
    margin-inline: -6px;
    border-radius: 16px;
  }

  .water-stage::before {
    opacity: 0.18;
  }

  .water-stage::after {
    opacity: 0.28;
  }

  .water-stage span:nth-child(n + 7) {
    display: none;
  }

  .reviews-carousel::before,
  .reviews-carousel::after {
    display: none;
  }

  .reviews-track {
    height: 398px;
    perspective: 780px;
  }

  .review-slide {
    width: min(270px, 74vw);
    min-height: 380px;
    border-radius: 16px;
  }

  .review-slide img {
    height: 380px;
    padding: 10px;
  }

  .review-slide[data-position="-1"] {
    transform: translateX(calc(-50% - 94px)) translateZ(-95px) rotateY(30deg) scale(0.76);
  }

  .review-slide[data-position="1"] {
    transform: translateX(calc(-50% + 94px)) translateZ(-95px) rotateY(-30deg) scale(0.76);
  }

  .review-slide[data-position="-2"],
  .review-slide[data-position="2"] {
    opacity: 0;
  }

  .review-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 11px;
    border-radius: 12px;
  }

  .review-caption strong {
    font-size: 14px;
  }

  .review-caption span {
    font-size: 12px;
  }

  .carousel-btn {
    top: auto;
    bottom: 12px;
    width: 36px;
    height: 36px;
    font-size: 25px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .carousel-dots {
    left: 46px;
    right: 46px;
    bottom: 25px;
  }

  .section {
    padding: 42px 0;
    scroll-margin-top: 92px;
  }

  .split-head,
  .product-meta {
    display: grid;
    align-items: start;
  }

  .split-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .split-head p,
  .catalog .split-head > p,
  .route-head > p,
  .sticky-copy p {
    justify-self: start;
    max-width: none;
    font-size: 16px;
    line-height: 1.45;
  }

  .catalog {
    padding-top: 36px;
    padding-bottom: 38px;
  }

  .catalog .section-head {
    margin-bottom: 18px;
  }

  .catalog h2 {
    max-width: 9ch;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.98;
  }

  .catalog-grid {
    gap: 18px;
  }

  .product-card {
    min-height: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .product-photo {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    margin-bottom: 16px;
    object-fit: cover;
    object-position: center;
  }

  .product-card h3 {
    padding: 0 18px;
    font-size: 22px;
    line-height: 1.15;
  }

  .product-card p {
    min-height: 0;
    margin: 10px 0 14px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .product-meta {
    gap: 8px;
    padding: 14px 18px 0;
  }

  .product-meta span {
    font-size: 18px;
  }

  .price {
    font-size: 32px;
    line-height: 1.05;
  }

  .product-card .btn {
    width: calc(100% - 36px);
    min-height: 52px;
    margin: 16px 18px 0;
    font-size: 17px;
  }

  .two-col {
    gap: 24px;
  }

  .coverage-panel {
    min-height: auto;
    padding: 22px;
    overflow: hidden;
  }

  .coverage-copy {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 520px;
    align-items: start;
  }

  .coverage-infographic {
    min-width: 0;
    max-height: none;
  }

  .coverage-list {
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .coverage-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .coverage-list li:last-child {
    border-bottom: 0;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .cookie-banner p {
    font-size: 12px;
    line-height: 1.35;
  }

  .cookie-banner > div {
    justify-content: stretch;
  }

  .cookie-banner .btn,
  .cookie-banner .ghost-btn {
    flex: 1;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 1.25;
  }

  .faq-item p {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  .footer {
    padding: 36px 0;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-contact a {
    font-size: 16px;
  }

  .footer-actions button {
    width: 100%;
    justify-content: center;
  }

  .modal {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
    padding: 26px 18px;
  }

  .product-edit .edit-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .top-actions {
    gap: 7px;
  }

  .telegram-icon,
  .max-icon,
  .call-link {
    min-width: 36px;
    min-height: 36px;
  }

  .telegram-icon svg {
    width: 18px;
    height: 18px;
  }

  .max-icon svg {
    width: 23px;
    height: 23px;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 44px);
  }

  .catalog h2 {
    max-width: 8.5ch;
    font-size: clamp(36px, 11vw, 46px);
  }

  .catalog .split-head > p {
    font-size: 15px;
  }

  .product-photo {
    aspect-ratio: 4 / 5;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .product-card p {
    font-size: 15px;
  }

  .price {
    font-size: 28px;
  }

  .hero-controls {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .reviews-carousel {
    padding-inline: 26px;
  }

  .reviews-track {
    height: 370px;
  }

  .review-slide {
    width: min(248px, 76vw);
    min-height: 350px;
  }

  .review-slide img {
    height: 350px;
  }

  .review-slide[data-position="-1"] {
    transform: translateX(calc(-50% - 78px)) translateZ(-92px) rotateY(28deg) scale(0.74);
  }

  .review-slide[data-position="1"] {
    transform: translateX(calc(-50% + 78px)) translateZ(-92px) rotateY(-28deg) scale(0.74);
  }

  .coverage-panel h3 {
    font-size: 28px;
  }

  .coverage-panel p {
    font-size: 15px;
  }

  .coverage-infographic .map-label {
    font-size: 12px;
    stroke-width: 6px;
  }
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.city-links a,
.footer-actions a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 760;
}

.breadcrumbs a {
  color: #FFFFFF;
}

.city-hero {
  position: relative;
  min-height: 660px;
  padding: 112px 0 54px;
  color: #FFFFFF;
  overflow: hidden;
}

.city-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 30, 0.96) 0%, rgba(3, 18, 30, 0.82) 45%, rgba(3, 18, 30, 0.4) 100%),
    url("assets/hero/hero-trout-karelia-wide.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.city-hero-layout,
.city-main {
  position: relative;
  z-index: 1;
}

.city-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.city-hero h1 {
  max-width: 820px;
  margin: 22px 0;
  color: #FFFFFF;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
}

.city-lead {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
}

.city-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.city-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.city-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.city-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.city-card div {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.city-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.city-card dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.city-card dd {
  margin: 0;
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 860;
}

.city-main {
  padding: 70px 0;
}

.city-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.city-content {
  display: grid;
  gap: 22px;
}

.city-section,
.city-aside {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(6, 24, 38, 0.08);
}

.city-section h2,
.city-aside h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.city-section h3 {
  margin: 22px 0 8px;
  font-size: 24px;
}

.city-section p,
.city-section li,
.city-aside p {
  color: var(--muted);
}

.city-steps,
.city-areas,
.city-faq {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.city-steps li,
.city-faq li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
}

.city-steps b,
.city-faq b {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

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

.city-areas li {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 820;
  background: #EEF6F8;
}

.city-aside {
  position: sticky;
  top: 92px;
}

.city-aside .product-photo {
  width: 100%;
  margin: 18px 0;
  border-radius: var(--radius);
}

.city-aside .price {
  display: block;
  margin: 12px 0 18px;
}

@media (max-width: 900px) {
  .city-hero {
    min-height: auto;
    padding: 94px 0 42px;
  }

  .city-hero-layout,
  .city-main-grid {
    grid-template-columns: 1fr;
  }

  .city-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .city-aside {
    position: static;
  }

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

@media (max-width: 560px) {
  .city-hero-bg {
    background:
      linear-gradient(180deg, rgba(3, 18, 30, 0.94) 0%, rgba(3, 18, 30, 0.74) 52%, rgba(3, 18, 30, 0.92) 100%),
      url("assets/hero/hero-trout-karelia-wide.jpg") 64% center / cover no-repeat;
  }

  .city-main {
    padding: 42px 0;
  }

  .city-section,
  .city-aside {
    padding: 20px;
  }

  .city-areas {
    grid-template-columns: 1fr;
  }
}

.city-hero {
  min-height: 520px;
  padding: 118px 0 48px;
}

.city-hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 18, 30, 0.98) 0%, rgba(3, 18, 30, 0.9) 44%, rgba(3, 18, 30, 0.56) 100%),
    url("assets/hero/hero-trout-karelia-wide.jpg") center / cover no-repeat;
}

.city-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.city-hero h1 {
  max-width: 880px;
  margin: 18px 0 20px;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 1.03;
}

.city-lead {
  max-width: 820px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.52;
}

.city-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, max-content));
  gap: 12px;
}

.city-actions .btn {
  min-height: 50px;
}

.city-actions .btn:last-child {
  grid-column: 1 / 2;
}

.city-card {
  max-width: 360px;
  justify-self: end;
  padding: 24px;
  background: rgba(234, 246, 249, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.city-card strong {
  margin-bottom: 16px;
  font-size: 20px;
}

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

.city-card div {
  padding-bottom: 12px;
}

.city-card dd {
  font-size: 17px;
  line-height: 1.25;
}

.city-main {
  padding: 44px 0 64px;
  background: linear-gradient(180deg, #F7FAFC, #EEF5F8);
}

.city-main-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: 28px;
}

.city-content {
  gap: 18px;
}

.city-section,
.city-aside {
  padding: clamp(22px, 2.2vw, 32px);
  border-color: rgba(6, 24, 38, 0.1);
  box-shadow: 0 14px 42px rgba(6, 24, 38, 0.07);
}

.city-section h2,
.city-aside h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}

.city-section p,
.city-section li,
.city-aside p {
  font-size: 17px;
  line-height: 1.55;
}

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

.city-steps li,
.city-faq li {
  min-height: 0;
  padding: 18px;
}

.city-steps b,
.city-faq b {
  font-size: 17px;
  line-height: 1.25;
}

.city-steps p,
.city-faq p {
  margin: 10px 0 0;
}

.city-areas {
  gap: 10px;
}

.city-areas li {
  padding: 12px 14px;
  font-size: 16px;
}

.city-aside {
  top: 92px;
}

.city-aside h2 {
  font-size: clamp(30px, 2.7vw, 40px);
}

.city-aside .product-photo {
  aspect-ratio: 4 / 5;
  margin: 16px 0;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.city-aside .price {
  font-size: 28px;
  line-height: 1.05;
}

.city-aside .btn {
  width: 100%;
  margin-top: 12px;
}

.city-aside .btn.secondary {
  color: var(--blue);
  border-color: rgba(6, 24, 38, 0.22);
  background: #FFFFFF;
}

@media (max-width: 1100px) {
  .city-actions {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .city-actions .btn:last-child {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .city-hero {
    padding: 96px 0 38px;
  }

  .city-hero-layout,
  .city-main-grid {
    grid-template-columns: 1fr;
  }

  .city-card {
    max-width: none;
    justify-self: stretch;
  }

  .city-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .city-hero {
    padding: 86px 0 30px;
  }

  .city-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .city-lead,
  .city-section p,
  .city-section li,
  .city-aside p {
    font-size: 16px;
  }

  .city-actions {
    grid-template-columns: 1fr;
  }

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

  .city-section h2,
  .city-aside h2 {
    font-size: clamp(28px, 8vw, 36px);
  }
}

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

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

  .reviews-carousel,
  .water-stage,
  .water-stage::before,
  .water-stage::after,
  .water-stage span {
    animation: none !important;
  }
}
