/* =========================================================
   Рыбалка в Финляндии — стили
   Палитра: нордическая природа — лес, вода, песок
   ========================================================= */

/* ---------- Переменные темы ---------- */
:root {
  --bg: #f6f4ee;
  --bg-soft: #efece2;
  --surface: #ffffff;
  --ink: #1c2a2a;
  --ink-soft: #324342;
  --muted: #5d6e6c;
  --forest: #2c5d4f;
  --forest-dark: #1d3f35;
  --teal: #2f8a78;
  --teal-soft: #e6f1ee;
  --sand: #d7a85a;
  --sand-dark: #b7862f;
  --line: #e3ded1;
  --shadow-sm: 0 1px 2px rgba(28, 42, 42, 0.06), 0 1px 3px rgba(28, 42, 42, 0.08);
  --shadow-md: 0 6px 18px rgba(28, 42, 42, 0.10);
  --shadow-lg: 0 18px 48px rgba(28, 42, 42, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --font-head: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Open Sans", "Segoe UI", system-ui, sans-serif;
  --t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Сброс ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Контейнер ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: #fff;
}

/* ---------- Шапка / навигация ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--t);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(246, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.18rem;
  color: #fff;
  transition: var(--t);
}

.site-header.scrolled .logo {
  color: var(--forest);
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--forest);
  color: #fff;
  flex-shrink: 0;
}

.site-header.scrolled .logo-mark {
  background: var(--forest);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 9px 14px;
  border-radius: 9px;
  transition: var(--t);
}

.site-header.scrolled .nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  color: var(--forest);
  background: var(--teal-soft);
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: var(--t);
}

.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(20, 33, 32, 0.55) 0%,
    rgba(20, 33, 32, 0.45) 45%,
    rgba(20, 33, 32, 0.82) 100%
  );
}

.hero-content {
  max-width: 720px;
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 .accent {
  color: var(--sand);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--sand);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 6px;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2s ease-in-out infinite;
}

.scroll-hint .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}

.scroll-hint .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: #fff;
  border-radius: 3px;
  animation: wheel 1.6s ease-in-out infinite;
}

@keyframes wheel {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.3; transform: translate(-50%, 8px); }
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}

/* ---------- Секции общие ---------- */
.section {
  padding: 92px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* ---------- О Финляндии ---------- */
.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-media:hover img {
  transform: scale(1.04);
}

.about-media .badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
}

.about-media .badge .big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--forest);
  line-height: 1;
}

.about-media .badge .small {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature .ic {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
}

.feature .ic svg {
  width: 20px;
  height: 20px;
}

.feature h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.feature p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Виды рыб ---------- */
.fish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.fish-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--t);
}

.fish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.fish-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

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

.fish-card:hover .fish-img img {
  transform: scale(1.07);
}

.fish-img .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.fish-body {
  padding: 24px 24px 28px;
}

.fish-body h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.fish-latin {
  font-style: italic;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.fish-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.fish-meta {
  display: flex;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.fish-meta .m {
  font-size: 0.82rem;
}

.fish-meta .m strong {
  display: block;
  font-family: var(--font-head);
  color: var(--forest);
  font-size: 0.92rem;
  margin-bottom: 1px;
}

.fish-meta .m span {
  color: var(--muted);
}

/* ---------- Места ---------- */
.spots {
  background: var(--bg-soft);
}

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

.spot-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  cursor: pointer;
}

.spot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.spot-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.spot-card:hover img {
  transform: scale(1.08);
}

.spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 33, 32, 0) 35%, rgba(20, 33, 32, 0.88) 100%);
}

.spot-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  color: #fff;
  z-index: 2;
}

.spot-body .region {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.spot-body h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.spot-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.spot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.spot-tags span {
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- Сезоны ---------- */
.seasons .section-head {
  margin-bottom: 36px;
}

.season-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.season-tab {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--t);
}

.season-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.season-tab.active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.season-panel {
  display: none;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.season-panel.active {
  display: grid;
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.season-panel .text {
  padding: 46px;
}

.season-panel .text .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.season-panel .text .ico svg {
  width: 28px;
  height: 28px;
}

.season-panel .text h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.season-panel .text .months {
  color: var(--sand-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.season-panel .text p {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.season-fish {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.season-fish span {
  font-size: 0.82rem;
  background: var(--teal-soft);
  color: var(--forest);
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-head);
}

.season-panel .vis {
  position: relative;
  min-height: 320px;
}

.season-panel .vis img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Советы ---------- */
.tips {
  background: var(--forest-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.tips::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 168, 90, 0.22), transparent 70%);
}

.tips .section-head h2 {
  color: #fff;
}

.tips .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

.tips .section-tag {
  color: var(--sand);
}

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

.tip-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--t);
}

.tip-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(215, 168, 90, 0.4);
}

.tip-card .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}

.tip-card h4 {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.tip-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.license-cta {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.license-cta .l h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.license-cta .l p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  max-width: 540px;
}

.license-cta .price {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--sand);
}

/* ---------- Галерея ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 33, 32, 0);
  transition: var(--t);
}

.gallery-item:hover::after {
  background: rgba(20, 33, 32, 0.35);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 24, 23, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
  animation: fadeUp 0.3s ease;
}

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--t);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

/* ---------- CTA-баннер ---------- */
.cta-band {
  padding: 80px 0;
  background: var(--bg-soft);
}

.cta-inner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-inner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(215, 168, 90, 0.18);
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: 8px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

/* ---------- Подвал ---------- */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: var(--t);
}

.footer-social a:hover {
  background: var(--sand);
  color: var(--forest-dark);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: var(--t);
}

.footer-col ul a:hover {
  color: var(--sand);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .links {
  display: flex;
  gap: 20px;
}

.footer-bottom .links a:hover {
  color: var(--sand);
}

/* ---------- Кнопка наверх ---------- */
.to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--forest);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--t);
  z-index: 90;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--forest-dark);
  transform: translateY(-3px);
}

.to-top svg {
  width: 22px;
  height: 22px;
}

/* ---------- Анимации появления ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* =========================================================
   Адаптивность
   ========================================================= */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-media img {
    height: 380px;
  }
  .fish-grid,
  .spots-grid,
  .tips-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .season-panel.active {
    grid-template-columns: 1fr;
  }
  .season-panel .vis {
    min-height: 240px;
    order: -1;
  }
  .season-panel .text {
    padding: 32px;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    padding: 16px 22px 26px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: var(--t);
    border-top: 1px solid var(--line);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    color: var(--ink-soft);
    padding: 13px 14px;
    border-radius: 10px;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: var(--teal-soft);
    color: var(--forest);
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header.scrolled .nav-toggle span {
    background: var(--ink);
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-stat .num {
    font-size: 1.6rem;
  }
  .cta-inner {
    padding: 40px 30px;
  }
  .license-cta {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }
  .fish-grid,
  .spots-grid,
  .tips-grid,
  .about-features {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-item.big,
  .gallery-item.wide {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 92vh;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* Уважение к настройкам пользователя */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
