/* =============================================
   ITUGID — Главный стилевой файл
   ============================================= */

/* ---------- Импорт шрифтов ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS-переменные ---------- */
:root {
  --color-bg:        #FFFFFF;
  --color-bg-soft:   #F8F7F4;
  --color-text:      #1A1A1A;
  --color-text-mute: #6B6B6B;
  --color-accent:    #6EB6AA;
  --color-accent-hover: #59a096;
  --color-border:    #E8E4DF;
  --font-serif:      'Playfair Display', Georgia, serif;
  --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width:       1280px;
  --radius:          8px;
  --transition:      0.25s ease;
  --shadow:          0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover:    0 6px 28px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ---------- Утилиты ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section--photo-bg {
  position: relative;
  background-image: url('../../uploads/2026/04/skaly1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section--photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 10, 0.68);
  z-index: 0;
}

.section--photo-bg > .container {
  position: relative;
  z-index: 1;
}

.section--photo-bg .section__title,
.section--photo-bg .section__subtitle {
  color: #fff;
}

.section--photo-bg .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.section--photo-bg .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section__subtitle {
  color: var(--color-text-mute);
  font-size: 17px;
  margin-bottom: 48px;
  max-width: 560px;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(44,95,46,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

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

.btn--white {
  background: #fff;
  color: var(--color-text);
}

.btn--white:hover {
  background: var(--color-bg-soft);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: var(--color-bg-soft);
  color: var(--color-text-mute);
  border: 1px solid var(--color-border);
  text-transform: lowercase;
}

.tag--accent {
  background: rgba(44,95,46,0.1);
  color: var(--color-accent);
  border-color: rgba(44,95,46,0.2);
}

/* ---------- Навигация ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.header--transparent {
  background: transparent;
}

.header--solid {
  background: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  flex-shrink: 0;
}

.header--transparent .logo { color: #fff; }

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

.nav__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--color-accent);
  background: var(--color-bg-soft);
}

.header--transparent .nav__link { color: rgba(255,255,255,0.9); }
.header--transparent .nav__link:hover { color: #fff; background: rgba(255,255,255,0.12); }

.header__cta {
  flex-shrink: 0;
}

.header__weather {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 5px 12px;
  line-height: 1;
}

.header__weather-icon {
  font-size: 15px;
  line-height: 1;
}

.header__weather-temp {
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
}

.header--transparent .header__weather {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.header--transparent .header__weather-temp {
  color: #fff;
}

.header__clock {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-mute);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 5px 12px;
  line-height: 1;
  transition: color var(--transition);
}

.header__clock-time {
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  font-weight: 600;
  font-size: 13px;
}

.header__clock-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-mute);
}

.header--transparent .header__clock {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}

.header--transparent .header__clock svg {
  stroke: rgba(255,255,255,0.7);
}

.header--transparent .header__clock-time {
  color: #fff;
}

.header--transparent .header__clock-label {
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .header__clock { display: none; }
  .header__weather { display: none !important; }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}

.hamburger:hover { background: var(--color-bg-soft); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.header--transparent .hamburger span { background: #fff; }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 999;
  flex-direction: column;
  padding: 90px 32px 40px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.mobile-nav__link:hover { color: var(--color-accent); }

.mobile-nav__cta {
  margin-top: 32px;
}

/* ---------- Hero scroll wrapper ---------- */
.hero-scroll-wrapper {
  height: 150vh;
}

/* ---------- Hero ---------- */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1a0a;
}

.hero__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  will-change: opacity, transform;
}

.hero__layer--1 {
  z-index: 0;
  transform: scale(1);
}

.hero__layer--2 {
  z-index: 1;
  opacity: 0;
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__text .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Hero форма ---------- */
.hero__form-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero__form-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.hero__form-card p {
  font-size: 14px;
  color: var(--color-text-mute);
  margin-bottom: 24px;
}

/* ---------- Формы ---------- */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-mute);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(44,95,46,0.1);
}

.form-control::placeholder { color: #aaa; }

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--color-accent);
}

.form-success svg { margin: 0 auto 12px; }
.form-success h4 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--color-text-mute); }

/* ---------- Карточки ---------- */
.cards-grid {
  display: grid;
  gap: 24px;
}

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

/* Горизонтальный слайдер */
.slider-cards-4 {
  display: flex !important;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 24px;
  /* Убираем скроллбар для красоты */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider-cards-4::-webkit-scrollbar {
  display: none;
}
.slider-cards-4 .card {
  flex: 0 0 calc(25% - 24px); /* Уменьшил ширину, чтобы 4 карточки точно помещались с рамками */
}
@media (max-width: 1024px) {
  .slider-cards-4 .card { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 768px) {
  .slider-cards-4 .card { gap: 16px; flex: 0 0 calc(55% - 12px); }
  .slider-cards-4 { gap: 16px; }
}
@media (max-width: 480px) {
  .slider-cards-4 .card { flex: 0 0 calc(85% - 12px); }
}

/* Сетка маленьких услуг с иконками */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--color-text);
  cursor: pointer;
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}
.service-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-item__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}

/* ---- Иммерсивные карточки проживания ---- */
.accom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 520px;
  margin-top: 40px;
}
.accom-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.accom-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.accom-card:hover img {
  transform: scale(1.07);
}
.accom-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
  transition: background 0.4s ease;
}
.accom-card:hover .accom-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
}
.accom-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  gap: 6px;
}
.accom-card__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.accom-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}
.accom-card__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.accom-card:hover .accom-card__arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateX(4px);
}
/* Разделители между карточками */
.accom-card + .accom-card {
  border-left: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .accom-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .accom-card {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .accom-grid { grid-template-columns: 1fr; }
  .accom-card { height: 260px; }
}

/* ---- Секция "Почему ITUGID" ---- */
.why-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  color: #fff;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  font-weight: 700;
}

.why-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}

.why-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.why-card__title {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.why-card__kicker {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 10px;
  line-height: 1.4;
}

.why-card__body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1100px) {
  .why-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid-new {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 24px 20px;
  }
}

/* Обёртка слайдера */
.slider-wrapper {
  position: relative;
  margin: 0;
  padding: 0;
}

/* Контрольная панель (стрелки + прогресс-бар) */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.slider-controls__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.slider-arrow {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.slider-arrow:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Прогресс-бар */
.slider-progress {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}
.slider-progress__fill {
  height: 100%;
  width: 25%; /* начальное значение, обновляется JS */
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}



.card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.13), 0 6px 16px rgba(0,0,0,0.07);
  border-color: rgba(88, 126, 80, 0.3);
}

.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-soft);
}

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

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

.card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__tag {
  margin-bottom: 10px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

.card__desc {
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.card__meta {
  font-size: 13px;
  color: var(--color-text-mute);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Карточки туров (большие) ---------- */
.tour-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 380px 1fr;
  transition: box-shadow var(--transition);
}

.tour-card:hover { box-shadow: var(--shadow-hover); }

.tour-card__image {
  overflow: hidden;
  height: 100%;
}

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

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

.tour-card__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.tour-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.tour-card__desc {
  color: var(--color-text-mute);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.tour-card__included {
  margin-bottom: 24px;
}

.tour-card__included h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-mute);
  margin-bottom: 10px;
}

.tour-card__included li {
  font-size: 14px;
  color: var(--color-text);
  padding: 3px 0 3px 18px;
  position: relative;
}

.tour-card__included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ---------- Факты (о компании) ---------- */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fact {
  background: var(--color-bg);
  padding: 48px 36px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
}

.fact:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.fact__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(44,95,46,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.fact__number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.fact__label {
  font-size: 16px;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 12px;
}

.fact__desc {
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.6;
}

/* ---------- Wide блок (источники, etc) ---------- */
.wide-block {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: #0a1a0a;
}

.wide-block__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.wide-block__content {
  position: relative;
  z-index: 1;
  padding: 60px;
  color: #fff;
  max-width: 600px;
}

.wide-block__content .eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.wide-block__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.wide-block__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ---------- Горизонтальный скролл ---------- */
.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  -webkit-overflow-scrolling: touch;
}

.scroll-row::-webkit-scrollbar { height: 4px; }
.scroll-row::-webkit-scrollbar-track { background: transparent; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }

.scroll-row .card { min-width: 300px; flex-shrink: 0; }

/* ---------- Фильтры экскурсий ---------- */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  background: var(--color-bg-soft);
  color: var(--color-text-mute);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.filter-btn.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ---------- Аккордеон ---------- */
.accordion {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__item:last-child { border-bottom: none; }

.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  gap: 16px;
  transition: background var(--transition);
}

.accordion__trigger:hover { background: var(--color-bg-soft); }

.accordion__trigger.active { color: var(--color-accent); }

.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.accordion__trigger.active .accordion__icon { transform: rotate(180deg); }

.accordion__content {
  display: none;
  padding: 4px 24px 24px;
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.7;
}

.accordion__content.open { display: block; }

/* ---------- Модальное окно ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--color-bg);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-mute);
  transition: all var(--transition);
  z-index: 1;
}

.modal__close:hover { background: var(--color-border); color: var(--color-text); }

.modal__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

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

.modal__body { padding: 32px; }

.modal__tag { margin-bottom: 12px; }

.modal__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.modal__desc {
  color: var(--color-text-mute);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---------- Страница тура ---------- */
/* Компактная фото-шапка страницы (без фиксированной высоты) */
.page-header-photo {
  position: relative;
  background-image: url('../../uploads/2026/04/skaly1.jpeg');
  background-size: cover;
  background-position: center;
  border-bottom: none !important;
}

.page-header-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 10, 0.68);
  z-index: 0;
}

.page-header-photo > .container {
  position: relative;
  z-index: 1;
}

.page-header-photo .breadcrumb a,
.page-header-photo .breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

.page-header-photo .section__title,
.page-header-photo .section__subtitle {
  color: #fff;
}

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a1a0a;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.page-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* ---------- Included/Not included ---------- */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.included-box {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.included-box--yes { border-color: rgba(44,95,46,0.2); background: rgba(44,95,46,0.03); }
.included-box--no { border-color: rgba(180,70,70,0.2); background: rgba(180,70,70,0.03); }

.included-box__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.included-box--yes .included-box__title { color: var(--color-accent); }
.included-box--no .included-box__title { color: #b44646; }

.included-box li {
  font-size: 14px;
  padding: 5px 0 5px 22px;
  position: relative;
  color: var(--color-text);
}

.included-box--yes li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.included-box--no li::before { content: '✕'; position: absolute; left: 0; color: #b44646; font-weight: 700; }

/* ---------- Детальная страница тура: трофейная рыбалка ---------- */
.tour-detail-hero {
  min-height: 620px;
}

.tour-detail-hero .page-hero__bg {
  filter: brightness(0.46) saturate(1.08);
}

.tour-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 18, 0.78), rgba(4, 20, 18, 0.28) 58%, rgba(4, 20, 18, 0.58));
  pointer-events: none;
}

.tour-detail-hero__content {
  z-index: 2;
}

.tour-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 32px;
}

.tour-hero-fact {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.tour-hero-fact span,
.tour-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.tour-hero-fact strong {
  display: block;
  color: #fff;
  font-size: 17px;
}

.tour-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.tour-detail-main {
  min-width: 0;
}

.tour-detail-main--wide {
  margin-top: clamp(44px, 6vw, 72px);
}

.tour-intro-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(7, 28, 25, 0.94), rgba(22, 61, 47, 0.86)),
    url('../../uploads/2021/08/2gr_4703-2-1620x1080.jpeg') center / cover;
  box-shadow: 0 28px 70px rgba(8, 20, 18, 0.18);
  margin-bottom: 56px;
  color: #fff;
}

.tour-intro-panel::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}

.tour-intro-panel .section__title {
  margin-bottom: 20px;
  color: #fff;
  max-width: 760px;
}

.tour-intro-panel p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 760px;
}

.tour-note {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid #a7d8cc;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 760px;
}

.tour-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 28px;
  background: rgba(255,255,255,0.14);
}

.tour-proof-grid div {
  padding: 22px;
  background: rgba(7, 28, 25, 0.58);
}

.tour-proof-grid strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

.tour-proof-grid span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-section-block {
  margin-bottom: 64px;
}

.catch-section {
  margin-left: -32px;
  margin-right: -32px;
  padding: 44px 32px;
  background:
    linear-gradient(135deg, rgba(5, 20, 18, 0.96), rgba(19, 55, 43, 0.92)),
    url('../../uploads/2021/10/fishing_2x-1728x1080.jpg') center / cover;
  color: #fff;
}

.catch-section .section__title {
  color: #fff;
}

.catch-section .tour-kicker,
.catch-section .catch-card span {
  color: #a7d8cc;
}

.catch-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.catch-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.catch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  border-color: rgba(255,255,255,0.28);
}

.catch-card--featured {
  position: relative;
  min-height: 320px;
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(6, 30, 28, 0.10), rgba(6, 30, 28, 0.88)),
    url('../../uploads/2021/07/fish_2x-1024x640.jpg') center / cover;
  color: #fff;
}

.catch-card span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.catch-card--featured span {
  color: rgba(255,255,255,0.72);
}

.catch-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #fff;
}

.catch-card--featured strong {
  font-size: clamp(40px, 5vw, 68px);
}

.catch-card p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.55;
}

.catch-card--featured p {
  color: rgba(255,255,255,0.78);
}

.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catch-section .tag {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
}

.fishing-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fishing-type-card {
  position: relative;
  min-height: 420px;
  border: 0;
  background: #10241f;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fishing-type-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.fishing-type-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.84;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.fishing-type-card:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}

.fishing-type-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 32px;
  background: linear-gradient(180deg, rgba(4,18,16,0), rgba(4,18,16,0.92));
}

.fishing-type-card span {
  display: block;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.fishing-type-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 10px;
  color: #fff;
}

.fishing-type-card p {
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.65;
}

.tour-program-tabs {
  border: 0;
  background: #f7f7f4;
  box-shadow: 0 28px 70px rgba(8, 20, 18, 0.12);
}

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-bottom: 0;
  background: #e9eee8;
}

.tour-tab {
  min-height: 96px;
  padding: 18px 20px;
  border: 0;
  background: rgba(255,255,255,0.55);
  color: var(--color-text-mute);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.tour-tab:last-child {
  border-right: 0;
}

.tour-tab span {
  display: block;
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.tour-tab:hover,
.tour-tab.active {
  background: #fff;
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(8, 20, 18, 0.10);
}

.tour-program-panel {
  display: none;
  padding: 40px;
}

.tour-program-panel.active {
  display: block;
  animation: fadeInUp 0.38s ease both;
}

.program-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

.program-head h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.program-head p {
  color: var(--color-text-mute);
  line-height: 1.7;
}

.program-price {
  padding: 22px;
  background: #153528;
  border: 0;
  color: #fff;
}

.program-price span,
.booking-season span {
  display: block;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.program-price strong,
.booking-season strong {
  display: block;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.25;
}

.program-price strong {
  color: #fff;
}

.program-price small {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 8px;
}

.program-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.program-timeline::before {
  display: none;
}

.program-day {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--color-border);
  background: #fff;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-day::before {
  content: attr(data-day);
  position: absolute;
  right: 20px;
  bottom: -18px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(44,95,46,0.08);
  font-family: var(--font-serif);
  font-size: 104px;
  line-height: 1;
  z-index: 0;
}

.program-day:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.program-day span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.program-day h4 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  margin-bottom: 12px;
}

.program-day li {
  position: relative;
  z-index: 1;
  color: var(--color-text-mute);
  font-size: 14px;
  line-height: 1.65;
  padding-left: 18px;
}

.program-day li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.tour-booking-card {
  position: sticky;
  top: 92px;
  padding: 28px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,247,243,0.98)),
    url('../../uploads/2021/11/yacht_2x-800x500.jpg') center top / 100% auto no-repeat;
  box-shadow: 0 28px 70px rgba(8, 20, 18, 0.14);
}

.booking-season {
  padding: 16px;
  border: 1px solid rgba(44,95,46,0.16);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
}

.tour-booking-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.tour-booking-card p {
  color: var(--color-text-mute);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---------- Premium tour refresh (AGENTS.md) ---------- */
.tour-detail-hero {
  min-height: min(720px, 82vh);
}

.tour-detail-hero .page-hero__bg {
  filter: brightness(0.62) saturate(1.02);
  transform: scale(1.01);
}

.tour-detail-hero::after {
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.74), rgba(8, 18, 16, 0.28) 56%, rgba(8, 18, 16, 0.18)),
    linear-gradient(180deg, rgba(8, 18, 16, 0.16), rgba(8, 18, 16, 0.62));
}

.tour-detail-hero .page-hero__title {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 84px);
  letter-spacing: 0;
}

.tour-detail-hero .page-hero__desc {
  max-width: 620px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

.tour-hero-facts {
  gap: 8px;
  max-width: 760px;
}

.tour-hero-fact {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

.tour-detail-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
}

.tour-intro-panel {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: #fbfbf8;
  color: var(--color-text);
  box-shadow: 0 12px 36px rgba(18, 26, 22, 0.06);
}

.tour-intro-panel::after {
  display: none;
}

.tour-intro-panel .section__title {
  color: var(--color-text);
  max-width: 780px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
}

.tour-intro-panel p {
  color: var(--color-text-mute);
  max-width: 780px;
}

.tour-note {
  max-width: 780px;
  border-left: 2px solid var(--color-accent);
  background: #eef5f1;
  color: var(--color-text);
}

.tour-proof-grid {
  max-width: 780px;
  gap: 12px;
  background: transparent;
}

.tour-proof-grid div {
  padding: 18px;
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: #fff;
}

.tour-proof-grid strong {
  color: var(--color-text);
  font-size: clamp(30px, 3.2vw, 44px);
}

.tour-proof-grid span {
  color: var(--color-text-mute);
}

.catch-section {
  margin-left: 0;
  margin-right: 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: #f7f8f5;
  color: var(--color-text);
}

.catch-section .section__title {
  color: var(--color-text);
}

.catch-section .tour-kicker,
.catch-section .catch-card span {
  color: var(--color-accent);
}

.catch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.catch-card {
  min-width: 0;
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
  justify-content: flex-end;
  overflow: hidden;
}

.catch-card::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 22px;
  width: 126px;
  height: 72px;
  opacity: 0.12;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='96' viewBox='0 0 180 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 50C43 18 92 12 132 39L162 22L151 52L162 78L131 61C88 86 42 80 18 50Z' stroke='%232c5f46' stroke-width='5' stroke-linejoin='round'/%3E%3Cpath d='M55 33C45 45 45 58 55 70' stroke='%232c5f46' stroke-width='5' stroke-linecap='round'/%3E%3Ccircle cx='122' cy='43' r='4' fill='%232c5f46'/%3E%3Cpath d='M79 26L95 8L103 31' stroke='%232c5f46' stroke-width='5' stroke-linejoin='round'/%3E%3Cpath d='M78 70L96 88L103 65' stroke='%232c5f46' stroke-width='5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.catch-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: rgba(44,95,46,0.22);
}

.catch-card--featured {
  min-height: 250px;
  background: #edf5f1;
}

.catch-card--featured::after {
  width: 150px;
  height: 82px;
  opacity: 0.18;
}

.catch-card strong {
  position: relative;
  z-index: 1;
  max-width: 100%;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.25;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.catch-card--featured strong {
  color: var(--color-text);
  font-size: clamp(14px, 0.95vw, 16px);
}

.catch-card p {
  position: relative;
  z-index: 1;
  color: var(--color-text-mute);
}

.catch-card--featured p {
  color: var(--color-text-mute);
}

.catch-section .tag {
  border-color: rgba(20, 30, 25, 0.08);
  background: #fff;
  color: var(--color-text-mute);
}

.tour-flow-section {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: var(--color-bg-soft);
}

.tour-flow-section .how-grid {
  gap: 18px;
}

.tour-flow-section .how-card {
  border-color: rgba(20, 30, 25, 0.08);
  box-shadow: none;
}

.tour-flow-section .how-card__title {
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.08em;
}

#trophy-flow .how-route__rail,
#trophy-flow .how-route__mover,
#trophy-flow .how-connector__rail,
#trophy-flow .how-connector__dot,
#trophy-flow .how-step__num,
#trophy-flow .how-route__city--to {
  animation-play-state: paused;
}

#trophy-flow.in-view .how-route__rail,
#trophy-flow.in-view .how-route__mover,
#trophy-flow.in-view .how-connector__rail,
#trophy-flow.in-view .how-connector__dot,
#trophy-flow.in-view .how-step__num,
#trophy-flow.in-view .how-route__city--to {
  animation-play-state: running;
}

.fishing-gallery-section {
  padding: 0;
  border: 0;
  background: #fff;
}

.fishing-gallery {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.fishing-gallery figure {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 360px;
  overflow: hidden;
  background: #111917;
  border: 0;
  border-radius: 12px;
  will-change: flex-grow, transform;
  transition:
    flex-grow 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.52s ease;
}

.fishing-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s ease;
}

.fishing-gallery figure:hover img {
  transform: scale(1.055);
  opacity: 0.9;
}

.fishing-gallery figure:hover {
  flex: 2.05 1 0;
  z-index: 2;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(18, 26, 22, 0.12);
}

.fishing-gallery__lead::after,
.fishing-gallery__item::after {
  display: none;
}

.fishing-gallery__lead figcaption,
.fishing-gallery__item figcaption {
  display: none;
}

.fishing-gallery__lead figcaption span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fishing-gallery__lead figcaption strong {
  display: block;
  max-width: 260px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.fishing-gallery__side {
  display: contents;
}

.fishing-gallery__item figcaption {
  font-size: 14px;
  font-weight: 700;
}

.fishing-type-grid {
  gap: 16px;
}

.fishing-type-card {
  min-height: 360px;
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: #111917;
  box-shadow: none;
}

.fishing-type-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(18, 26, 22, 0.10);
}

.fishing-type-card img {
  opacity: 0.9;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.fishing-type-card:hover img {
  transform: scale(1.035);
  opacity: 0.82;
}

.fishing-type-card div {
  padding: 28px;
}

.tour-program-tabs {
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: #fff;
  box-shadow: 0 12px 36px rgba(18, 26, 22, 0.06);
}

.tour-tabs {
  gap: 8px;
  padding: 8px;
  background: #f3f5f1;
}

.tour-tab {
  min-height: 84px;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.tour-tab:hover {
  background: rgba(255,255,255,0.7);
  transform: none;
  box-shadow: none;
}

.tour-tab.active {
  background: #fff;
  border-color: rgba(20, 30, 25, 0.08);
  transform: none;
  box-shadow: 0 8px 20px rgba(18, 26, 22, 0.05);
}

.tour-program-panel {
  padding: clamp(24px, 3.4vw, 42px);
}

.tour-program-panel.active {
  animation: premiumPanelIn 0.32s ease both;
}

.program-price {
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: #f6f8f5;
  color: var(--color-text);
}

.program-price strong {
  color: var(--color-text);
}

.program-price small {
  color: var(--color-text-mute);
}

.program-day {
  min-height: 232px;
  border-color: rgba(20, 30, 25, 0.08);
  background: #fbfbf8;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.program-day:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: rgba(44,95,46,0.22);
  background: #fff;
}

.program-day::before {
  color: rgba(44,95,46,0.055);
}

.tour-booking-card {
  border: 1px solid rgba(20, 30, 25, 0.08);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 12px 36px rgba(18, 26, 22, 0.08);
  backdrop-filter: blur(18px);
}

.booking-season {
  border-color: rgba(20, 30, 25, 0.08);
  background: #f6f8f5;
}

.tour-booking-card .btn {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.tour-booking-card .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(44,95,46,0.18);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .tour-program-panel.active,
  .tour-tab,
  .catch-card,
  .fishing-type-card,
  .program-day {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* ---------- Футер ---------- */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 13px;
  font-weight: 600;
}

.footer__social:hover { background: var(--color-accent); color: #fff; }

.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__nav a:hover { color: #fff; }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer__contact:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-mute);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--color-text-mute); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb span { color: var(--color-border); }

/* ---------- Почему ITUGID ---------- */
.why-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.why-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: box-shadow var(--transition);
}

.why-item:hover { box-shadow: var(--shadow); }

.why-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(44,95,46,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.why-item__title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.why-item__desc {
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.5;
}

/* ---------- Контакты ---------- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
  margin-bottom: 12px;
}

.contact-card:hover { box-shadow: var(--shadow); }
.contact-card:last-child { margin-bottom: 0; }

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(44,95,46,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-card__label {
  font-size: 12px;
  color: var(--color-text-mute);
  margin-bottom: 2px;
}

.contact-card__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}

.contact-card:hover .contact-card__value { color: var(--color-accent); }

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---------- Spring блоки ---------- */
.spring-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.spring-block:last-child { border-bottom: none; }
.spring-block:nth-child(even) { direction: rtl; }
.spring-block:nth-child(even) > * { direction: ltr; }

.spring-block__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.spring-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spring-block__eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.spring-block__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.spring-block__desc {
  color: var(--color-text-mute);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.spring-block__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.spring-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
}

.spring-meta-item svg { color: var(--color-accent); flex-shrink: 0; }

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefits-list .tag { font-size: 12px; }

/* ---------- Страница проживания ---------- */
.accommodation-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
  background: var(--color-bg);
}

.accommodation-card:hover { box-shadow: var(--shadow-hover); }

.accommodation-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

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

.accommodation-card__body { padding: 28px; }

.accommodation-card__type {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 8px;
}

.accommodation-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.accommodation-card__desc {
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.6;
  margin-bottom: 20px;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.amenity {
  padding: 5px 12px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--color-text-mute);
}

/* ---------- VIP-страница ---------- */
.vip-block {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #0a1a0a;
  margin-bottom: 32px;
}

.vip-block__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.vip-block__content {
  position: relative;
  z-index: 1;
  padding: 80px;
  color: #fff;
  max-width: 580px;
}

.vip-block__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.vip-block__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.vip-block__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ---------- Программа по дням ---------- */
.day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

/* ---------- Другие туры (блок) ---------- */
.related-section {
  background: var(--color-bg-soft);
  padding: 80px 0;
}

/* ---------- Анимации ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* ---------- Адаптивность ---------- */
@media (max-width: 1200px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .catch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catch-card--featured { grid-row: auto; min-height: 260px; }
  .tour-detail-layout { grid-template-columns: 1fr; }
  .tour-booking-card { position: static; }
}

@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-card { max-width: 480px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact { padding: 32px 24px; }
  .tour-card { grid-template-columns: 1fr; }
  .tour-card__image { min-height: 220px; }
  .included-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .spring-block { grid-template-columns: 1fr; }
  .spring-block:nth-child(even) { direction: ltr; }
  .why-section-layout { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .vip-block__content { padding: 48px 40px; }
  .program-head { grid-template-columns: 1fr; }
  .program-timeline { grid-template-columns: 1fr; }
  .fishing-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fishing-gallery figure {
    min-height: 300px;
  }
  .fishing-gallery figure:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .cards-grid--3, .cards-grid--4 { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .wide-block__content { padding: 36px 28px; }
  .section__header { flex-direction: column; align-items: flex-start; }
  .vip-block { min-height: 400px; }
  .vip-block__content { padding: 36px 28px; }
  .hero__form-card { padding: 24px 20px; }
  .tour-card__body { padding: 24px; }
  .tour-detail-hero { min-height: 560px; }
  .tour-hero-facts, .tour-proof-grid, .fishing-type-grid { grid-template-columns: 1fr; }
  .tour-tabs { grid-template-columns: 1fr; }
  .tour-tab { border-right: 0; border-bottom: 1px solid var(--color-border); }
  .tour-tab:last-child { border-bottom: 0; }
  .tour-intro-panel, .tour-program-panel { padding: 24px; }
  .program-day { padding: 20px 18px 20px 48px; }
  .catch-section { margin-left: 0; margin-right: 0; padding: 32px 20px; }
  .fishing-gallery-section { padding: 28px 20px; }
  .fishing-gallery { grid-template-columns: 1fr; }
  .fishing-gallery__lead, .fishing-gallery__item { min-height: 320px; }
  .fishing-type-card { min-height: 360px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .facts-grid { border-radius: 12px; }
  .page-hero__title { font-size: 28px; }
  .catch-grid { grid-template-columns: 1fr; }
  .fishing-gallery__lead, .fishing-gallery__item { min-height: 260px; }
  .tour-booking-card { padding: 22px; }
}

/* =============================================
   СТРАНИЦЫ ЭКСКУРСИЙ
   ============================================= */

/* ---------- Hero экскурсии ---------- */
.exc-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.exc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.exc-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 0;
}

.exc-hero__breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.exc-hero__breadcrumb a { color: rgba(255,255,255,0.7); }
.exc-hero__breadcrumb a:hover { color: #fff; }
.exc-hero__breadcrumb span { color: rgba(255,255,255,0.4); }

.exc-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.exc-hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ---------- Блоки контента ---------- */
.exc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--color-border);
}

.exc-block:last-child { border-bottom: none; }

.exc-block--reverse { direction: rtl; }
.exc-block--reverse > * { direction: ltr; }

.exc-block__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.exc-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exc-block__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.exc-block__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.25;
}

.exc-block__text {
  color: var(--color-text-mute);
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- Галерея ---------- */
.exc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.exc-gallery__item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.exc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.exc-gallery__item:hover img { transform: scale(1.05); }

.exc-gallery__item::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exc-gallery__item:hover::after { opacity: 1; }

/* ---------- Лайтбокс ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__nav:hover { background: rgba(255,255,255,0.28); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* ---------- Другие экскурсии ---------- */
.other-exc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Адаптив экскурсии ---------- */
@media (max-width: 1024px) {
  .exc-block { grid-template-columns: 1fr; gap: 32px; }
  .exc-block--reverse { direction: ltr; }
  .exc-gallery { grid-template-columns: repeat(2, 1fr); }
  .other-exc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .exc-gallery { grid-template-columns: 1fr; }
  .other-exc-grid { grid-template-columns: 1fr; }
  .exc-hero { height: 50vh; }
}

/* ==================== REVIEW SECTION ==================== */
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
  display: flex !important;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(9, 31, 20, 0.06);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(9, 31, 20, 0.09);
  border-color: var(--color-border);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  min-height: 56px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3e7bb;
  color: #39423a;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar--mint { background: #dcece1; }
.review-avatar--sand { background: #fbe5c3; }
.review-avatar--sky { background: #dceaf5; }
.review-avatar--stone { background: #e3e8ef; }
.review-avatar--rose { background: #f8dde8; }

.review-name {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 4px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-mute);
  white-space: nowrap;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
.review-star {
  width: 13px;
  height: 13px;
  fill: #ffb800;
  flex-shrink: 0;
}

.review-source {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--color-text-mute);
  font-size: 11px;
  white-space: nowrap;
}

.review-yandex {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  font-size: 11px;
  color: #999;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.review-yandex__ya {
  font-weight: 700;
  color: #fc3f1d;
  font-size: 11px;
}

.review-text-wrapper {
  position: relative;
}

.review-text {
  font-size: 15px;
  line-height: 1.62;
  color: #525e5a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.is-expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.review-text-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 86%);
  transition: opacity 0.2s ease;
}

.is-expanded + .review-text-fade {
  opacity: 0;
}

.review-more-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  margin-top: 10px;
  padding: 0;
}

.review-more-btn:hover {
  opacity: 0.82;
}

.review-gallery {
  margin-top: auto;
  padding-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.review-photo {
  border: 0;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  position: relative;
  aspect-ratio: 4/3;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.review-photo::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.review-photo:hover img {
  transform: scale(1.06);
}

.review-photo:hover::after {
  opacity: 1;
}

.review-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: rgba(0, 0, 0, 0.62);
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.review-modal.open {
  display: flex;
}

.review-modal__dialog {
  width: min(760px, 100%);
  max-height: min(86vh, 860px);
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 44px rgba(10, 23, 18, 0.24);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-modal__close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  color: var(--color-text-mute);
}

.review-modal__author {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.15;
  margin-bottom: 6px;
  padding-right: 28px;
}

.review-modal__meta {
  font-size: 12px;
  color: var(--color-text-mute);
  margin-bottom: 16px;
}

.review-modal__body {
  overflow: auto;
  padding-right: 4px;
  color: var(--color-text);
  line-height: 1.72;
  font-size: 16px;
}

.review-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.review-lightbox.open {
  display: flex;
}

.review-lightbox__img {
  max-width: min(92vw, 1360px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.review-lightbox__close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  opacity: 0.8;
}

.review-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-lightbox__prev {
  left: 16px;
}

.review-lightbox__next {
  right: 16px;
}

.review-lightbox__counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.34);
  padding: 6px 12px;
  border-radius: 999px;
}

@media (max-width: 700px) {
  .review-card {
    padding: 18px;
  }

  .review-modal__dialog {
    padding: 18px;
    max-height: 90vh;
  }

  .review-modal__body {
    font-size: 15px;
    line-height: 1.65;
  }

  .review-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .review-lightbox__prev {
    left: 8px;
  }

  .review-lightbox__next {
    right: 8px;
  }
}

/* ==================== HOW TO GET ==================== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.how-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px;
}

.how-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.how-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.how-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.how-card__note {
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.6;
  margin: 0 0 24px;
  padding: 12px 16px;
  background: rgba(110, 182, 170, 0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
}

.how-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.how-step:last-child {
  margin-bottom: 0;
}

.how-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  animation: stepPulse 2.5s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110, 182, 170, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(110, 182, 170, 0); }
}

.how-connector {
  position: relative;
  width: 2px;
  flex: 1;
  margin: 4px 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s ease;
}

#how-to-get.in-view .how-step:nth-child(1) .how-connector {
  transform: scaleY(1);
  transition-delay: 1.1s;
}

.how-connector__rail {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, var(--color-accent) 0, var(--color-accent) 5px, transparent 5px, transparent 9px);
  background-size: 100% 9px;
  animation: railFlowV 0.8s linear infinite;
  opacity: 0.3;
}

@keyframes railFlowV {
  from { background-position: 0 0; }
  to { background-position: 0 9px; }
}

.how-connector__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  left: -2px;
  box-shadow: 0 0 8px rgba(110, 182, 170, 0.6);
  animation: connectorDot 2.5s ease-in-out infinite;
}

@keyframes connectorDot {
  0% { top: -3px; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { top: calc(100% - 3px); opacity: 0; }
}

.how-step__body {
  padding-top: 4px;
}

.how-step__text {
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.6;
  margin: 0;
}

.how-step__hint {
  font-size: 13px;
  color: var(--color-text-mute);
  margin: 8px 0 0;
  line-height: 1.5;
}

.how-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.how-route__city {
  white-space: nowrap;
}

.how-route__city--to {
  animation: cityArrival 3s ease-in-out infinite;
}

.how-route__city--dest::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 5px;
  vertical-align: middle;
  box-shadow: 0 0 6px rgba(110, 182, 170, 0.5);
}

@keyframes cityArrival {
  0%, 80% { color: inherit; }
  87% { color: var(--color-accent); }
  94% { color: inherit; }
}

.how-route__track {
  position: relative;
  flex: 1;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
}

.how-route__rail {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-accent) 0, var(--color-accent) 6px, transparent 6px, transparent 10px);
  background-size: 10px 100%;
  animation: railFlowH 0.8s linear infinite;
  opacity: 0.3;
}

@keyframes railFlowH {
  from { background-position: 0 0; }
  to { background-position: 10px 0; }
}

.how-route__mover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  filter: drop-shadow(0 0 6px rgba(110, 182, 170, 0.6));
  animation: moverFly 3s ease-in-out infinite;
}

.how-route__mover::after {
  content: '';
  position: absolute;
  right: 70%;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-accent));
  border-radius: 2px;
  opacity: 0.4;
}

@keyframes moverFly {
  0% { left: -2%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 96%; opacity: 0; }
}

.how-route__track--fast .how-route__mover {
  animation-duration: 2s;
}

.how-route__track--fast .how-route__city--to {
  animation-duration: 2s;
}

.how-route__track--sea .how-route__rail {
  background: repeating-linear-gradient(90deg, var(--color-accent) 0, var(--color-accent) 4px, transparent 4px, transparent 14px);
  background-size: 14px 100%;
  animation-duration: 1.2s;
  opacity: 0.22;
}

.how-route__mover--dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(110, 182, 170, 0.7);
  animation-duration: 4s;
  filter: none;
}

.how-route__mover--dot svg {
  display: none;
}

.how-route__mover--dot::after {
  width: 40px;
  height: 2px;
  opacity: 0.3;
}

.how-route__track--sea .how-route__city--to {
  animation-duration: 4s;
}

#how-to-get .how-route__rail,
#how-to-get .how-route__mover,
#how-to-get .how-connector__rail,
#how-to-get .how-connector__dot,
#how-to-get .how-step__num,
#how-to-get .how-route__city--to {
  animation-play-state: paused;
}

#how-to-get.in-view .how-route__rail,
#how-to-get.in-view .how-route__mover,
#how-to-get.in-view .how-connector__rail,
#how-to-get.in-view .how-connector__dot,
#how-to-get.in-view .how-step__num,
#how-to-get.in-view .how-route__city--to {
  animation-play-state: running;
}

/* Sequential reveal driven by JS class .how-step--active */
.how-step {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.how-step.how-step--active {
  opacity: 1;
  transform: translateY(0);
}

.how-connector {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease 0.1s;
}

.how-step.how-step--active .how-connector {
  transform: scaleY(1);
}

@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .how-route__track { min-width: 16px; }
  .how-route__mover::after { display: none; }
  .how-card { padding: 24px; }
}

/* =============================================
   Трофейная рыбалка — макет по новому референсу
   ============================================= */
.itf-page {
  --itf-accent: var(--color-accent);
  --itf-accent-dark: #2c9f94;
  --itf-dark: #102421;
  --itf-text: #202625;
  --itf-muted: #6c7472;
  --itf-line: rgba(18, 36, 32, 0.12);
  background: #fff;
  color: var(--itf-text);
  overflow: hidden;
}

.itf-page .container { max-width: 1280px; }
.itf-page svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.itf-section { padding: 42px 0; }

.itf-hero {
  position: relative;
  min-height: 560px;
  padding-top: 82px;
  isolation: isolate;
  overflow: hidden;
}

.itf-hero::before {
  content: '';
  position: absolute;
  inset: 68px 0 0;
  z-index: -2;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.9) 23%, rgba(255,255,255,0.25) 55%, rgba(255,255,255,0) 100%);
}

.itf-hero__bg {
  position: absolute;
  inset: 68px 0 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.68) 34%, rgba(255,255,255,0.2) 61%, rgba(255,255,255,0.5) 100%),
    url('../../uploads/2021/08/2gr_4703-2-1536x1024.jpeg') 58% bottom / auto 112% no-repeat,
    linear-gradient(90deg, #fff, #dcedf1 58%, #f6fbfb);
}

.itf-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 66%, #fff 100%);
}

.itf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(32, 38, 37, 0.52);
  font-size: 12px;
  margin-bottom: 26px;
}

.itf-breadcrumb a:hover { color: var(--itf-accent-dark); }

.itf-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 336px;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.itf-hero__content { max-width: 470px; }

.itf-season {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(110, 182, 170, 0.18);
  color: #258f85;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.itf-hero h1,
.itf-title h2,
.itf-form-card h2,
.itf-catch-card h2,
.itf-type-card h3,
.itf-day h3,
.itf-cta h2 {
  font-family: var(--font-serif);
  color: #171b1a;
}

.itf-hero h1 {
  font-size: clamp(38px, 3.8vw, 50px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
  max-width: 540px;
}

.itf-hero__lead {
  color: #1f2827;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 470px;
  margin-top: 4px;
  margin-bottom: 24px;
}

.itf-catch-card,
.itf-form-card,
.itf-features__grid,
.itf-type-card,
.itf-day,
.itf-price,
.itf-bottom-features__grid {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17, 35, 31, 0.08);
  box-shadow: 0 18px 54px rgba(13, 28, 25, 0.10);
}

.itf-catch-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  max-width: 390px;
  padding: 20px;
  border-radius: 16px;
}

.itf-catch-card__icon,
.itf-feature__icon,
.itf-type-card__icon,
.itf-bottom-features span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--itf-accent-dark);
  background: rgba(110, 182, 170, 0.12);
  border: 1px solid rgba(44, 159, 148, 0.28);
  flex: 0 0 auto;
}

.itf-catch-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #61c3b8, #258f85);
  color: #fff;
  border: 0;
}

.itf-catch-card__icon svg { width: 30px; height: 30px; }

.itf-catch-card h2 {
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.itf-catch-card li {
  position: relative;
  color: var(--itf-muted);
  font-size: 12px;
  line-height: 1.42;
  padding-left: 15px;
  margin-bottom: 5px;
}

.itf-catch-card li::before,
.itf-day li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--itf-accent-dark);
}

.itf-form-card {
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.itf-form-card h2 {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.itf-form-card p {
  color: var(--itf-muted);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.itf-field {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--itf-line);
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.itf-field:focus-within {
  border-color: rgba(44, 159, 148, 0.55);
  box-shadow: 0 0 0 4px rgba(110, 182, 170, 0.13);
}

.itf-field span { width: 18px; height: 18px; color: #7d8583; }

.itf-field input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  color: var(--itf-text);
  font-size: 14px;
  background: transparent;
}

.itf-button,
.itf-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #44b2a7, #25988d);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(37, 152, 141, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.itf-button { width: 100%; margin-top: 4px; }
.itf-button:hover, .itf-cta__button:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(37, 152, 141, 0.28); }
.itf-form-card small { display: block; color: rgba(32,38,37,0.55); font-size: 10px; line-height: 1.45; margin-top: 10px; }

.itf-features {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding-bottom: 44px;
}

.itf-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
}

.itf-feature {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-right: 1px solid rgba(17, 35, 31, 0.08);
}

.itf-feature:last-child { border-right: 0; }
.itf-feature__icon { width: 56px; height: 56px; background: #fff; }
.itf-feature__icon svg { width: 30px; height: 30px; }

.itf-feature h3,
.itf-bottom-features h3 {
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.itf-feature p,
.itf-bottom-features p {
  color: var(--itf-muted);
  font-size: 13px;
  line-height: 1.45;
}

.itf-title { margin-bottom: 30px; }

.itf-title span {
  display: block;
  color: var(--itf-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.itf-title h2 {
  max-width: 700px;
  font-size: clamp(30px, 4.4vw, 42px);
  line-height: 1.06;
  text-transform: uppercase;
}

.itf-title--compact h2 { font-size: clamp(28px, 3vw, 36px); }

.itf-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 64px;
  align-items: start;
}

.itf-about__text p {
  max-width: 720px;
  color: #28302f;
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 22px;
}

.itf-about__text strong {
  display: block;
  color: var(--itf-accent-dark);
  font-size: 15px;
  margin: 24px 0 28px;
}

.itf-about__text em {
  display: block;
  color: #1f2827;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.itf-types { padding-top: 6px; }

.itf-type-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 138px;
  border-radius: 12px;
  overflow: visible;
  margin-bottom: 22px;
}

.itf-type-card img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.itf-type-card__icon {
  position: absolute;
  left: 184px;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 14px 30px rgba(13, 28, 25, 0.10);
}

.itf-type-card__icon svg { width: 30px; height: 30px; }
.itf-type-card div:last-child { padding: 24px 24px 22px 42px; }

.itf-type-card h3 {
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.itf-type-card p,
.itf-type-card small {
  color: var(--itf-muted);
  font-size: 13px;
  line-height: 1.45;
}

.itf-type-card small {
  display: block;
  color: #2f3836;
  margin-top: 8px;
}

.itf-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-radius: 8px;
  background: #f2f3f2;
  overflow: hidden;
  margin-bottom: 22px;
}

.itf-tab {
  min-height: 50px;
  border: 0;
  background: transparent;
  color: #66706e;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}

.itf-tab.active {
  background: linear-gradient(135deg, #45b2a8, #279b90);
  color: #fff;
}

.itf-program-panel { display: none; }
.itf-program-panel.active { display: block; animation: fadeInUp 0.34s ease both; }

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

.itf-days--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.itf-day {
  min-height: 330px;
  padding: 26px 24px;
  border-radius: 12px;
  box-shadow: none;
}

.itf-day h3 {
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.itf-day li {
  position: relative;
  color: #4d5755;
  font-size: 13px;
  line-height: 1.52;
  padding-left: 16px;
  margin-bottom: 10px;
}

.itf-price {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 680px;
  min-height: 78px;
  margin-top: -2px;
  padding: 20px 28px;
  border-radius: 0 0 12px 12px;
  background: #edf7f5;
  box-shadow: none;
}

.itf-price::before {
  content: '';
  width: 44px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #45b2a8, #279b90);
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.12);
  flex: 0 0 auto;
}

.itf-price span { color: #1f2827; font-weight: 800; text-transform: uppercase; }
.itf-price strong { color: var(--itf-accent-dark); font-size: 16px; text-transform: uppercase; }
.itf-price small { color: var(--itf-muted); font-size: 12px; }

.itf-gallery { padding-top: 8px; }
.itf-gallery__wrap { position: relative; }

.itf-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.itf-gallery__grid img {
  width: 100%;
  aspect-ratio: 1.42;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(13, 28, 25, 0.10);
}

.itf-gallery__arrow {
  position: absolute;
  top: 50%;
  left: -22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #101917;
  box-shadow: 0 12px 28px rgba(13, 28, 25, 0.12);
  transform: translateY(-50%);
}

.itf-gallery__arrow svg { width: 24px; height: 24px; margin: 11px; }
.itf-gallery__arrow--next { left: auto; right: -22px; }

.itf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.itf-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8dddc;
}

.itf-dots span.active { background: var(--itf-accent-dark); }

.itf-bottom-features { padding: 22px 0 44px; }

.itf-bottom-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 20px;
  border-radius: 12px;
}

.itf-bottom-features article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(17, 35, 31, 0.08);
}

.itf-bottom-features article:last-child { border-right: 0; }
.itf-bottom-features span { width: 48px; height: 48px; }
.itf-bottom-features svg { width: 26px; height: 26px; }

.itf-cta {
  position: relative;
  overflow: hidden;
  padding: 36px 0;
  background:
    linear-gradient(90deg, rgba(12, 36, 33, 0.98), rgba(20, 57, 51, 0.94)),
    url('../../uploads/2021/10/fishing_2x-1728x1080.jpg') center / cover;
  color: #fff;
}

.itf-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px 190px;
  gap: 42px;
  align-items: center;
}

.itf-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.itf-cta p {
  max-width: 650px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.6;
}

.itf-cta__rod {
  height: 118px;
  opacity: 0.58;
  background:
    radial-gradient(circle at 14px 100px, transparent 0 9px, rgba(255,255,255,0.85) 10px 12px, transparent 13px),
    linear-gradient(135deg, transparent 0 56%, rgba(255,255,255,0.72) 57% 59%, transparent 60%),
    radial-gradient(ellipse at 82% 20%, transparent 0 48px, rgba(255,255,255,0.72) 49px 51px, transparent 52px);
}

@media (max-width: 1120px) {
  .itf-hero { min-height: auto; }
  .itf-hero__grid,
  .itf-about__grid { grid-template-columns: 1fr; }
  .itf-hero__content { max-width: 620px; }
  .itf-form-card { max-width: 520px; }
  .itf-features__grid,
  .itf-days,
  .itf-days--three,
  .itf-gallery__grid,
  .itf-bottom-features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .itf-feature,
  .itf-bottom-features article {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 35, 31, 0.08);
  }
  .itf-feature:nth-last-child(-n+1),
  .itf-bottom-features article:nth-last-child(-n+2) { border-bottom: 0; }
  .itf-cta__inner { grid-template-columns: 1fr 220px; }
  .itf-cta__rod { display: none; }
}

@media (max-width: 760px) {
  .itf-hero { padding-top: 88px; }
  .itf-hero__bg {
    opacity: 0.42;
    background-position: center top;
  }
  .itf-breadcrumb { margin-bottom: 32px; }
  .itf-hero h1 { font-size: 42px; }
  .itf-catch-card,
  .itf-feature,
  .itf-bottom-features article { grid-template-columns: 1fr; }
  .itf-features__grid,
  .itf-days,
  .itf-days--three,
  .itf-gallery__grid,
  .itf-bottom-features__grid { grid-template-columns: 1fr; }
  .itf-type-card { grid-template-columns: 1fr; }
  .itf-type-card img {
    min-height: 220px;
    border-radius: 12px 12px 0 0;
  }
  .itf-type-card__icon {
    left: 24px;
    top: 220px;
  }
  .itf-type-card div:last-child { padding: 46px 24px 24px; }
  .itf-tabs { grid-template-columns: 1fr; }
  .itf-price {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;
  }
  .itf-price small { grid-column: 2; }
  .itf-gallery__arrow { display: none; }
  .itf-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .itf-section { padding: 34px 0; }
  .itf-form-card,
  .itf-catch-card,
  .itf-day { padding: 22px; }
}

/* =============================================
   Дополнительные услуги
   ============================================= */
.svc-page {
  --svc-accent: #6FC7BD;
  --svc-accent-dark: #55AFA6;
  --svc-dark: #0F1F1D;
  --svc-text: #2A2A2A;
  --svc-muted: #6F6F6F;
  --svc-light: #F7F7F5;
  --svc-border: #E6E6E6;
  background: #fff;
  color: var(--svc-text);
}

.svc-page .container {
  max-width: 1280px;
}

.svc-page h1,
.svc-page h2,
.svc-page h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 0.98;
  color: #151515;
}

.svc-hero {
  min-height: 620px;
  padding: 108px 0 62px;
  background:
    linear-gradient(90deg, rgba(9,24,22,.82), rgba(9,24,22,.45) 50%, rgba(9,24,22,.18)),
    url('/assets/images/services/konservnaya-main.jpg') center 52% / cover no-repeat;
  color: #fff;
}

.svc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(36px, 7vw, 96px);
  align-items: stretch;
  min-height: 450px;
  position: relative;
  z-index: 1;
}

.svc-breadcrumb {
  display: flex;
  gap: 8px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  margin-bottom: 42px;
}

.svc-breadcrumb a:hover {
  color: #fff;
}

.svc-hero h1 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(46px, 6vw, 76px);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.svc-hero__content p {
  max-width: 620px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 42px;
}

.svc-hero__content,
.svc-request {
  opacity: 1 !important;
  transform: none !important;
}

.svc-hero__content {
  display: flex;
  flex-direction: column;
}

.svc-hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin-top: auto;
}

.svc-hero__benefits div {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.svc-hero__benefits span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(111,199,189,.55);
  border-radius: 50%;
  color: var(--svc-accent);
  background: rgba(15,31,29,.32);
  backdrop-filter: blur(10px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.svc-hero__benefits svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .28s ease;
}

.svc-hero__benefits div:hover span {
  transform: translateY(-4px);
  border-color: rgba(111,199,189,.9);
  background: rgba(111,199,189,.16);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.svc-hero__benefits div:hover svg {
  transform: scale(1.08) rotate(-3deg);
}

@media (prefers-reduced-motion: no-preference) {
  .svc-hero__benefits span {
    animation: svcIconFloat 4.5s ease-in-out infinite;
  }

  .svc-hero__benefits div:nth-child(2) span { animation-delay: .35s; }
  .svc-hero__benefits div:nth-child(3) span { animation-delay: .7s; }
  .svc-hero__benefits div:nth-child(4) span { animation-delay: 1.05s; }
}

@keyframes svcIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.svc-request {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 80px rgba(0,0,0,.12);
  color: var(--svc-text);
}

.svc-request h2 {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.svc-request p {
  color: var(--svc-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.svc-field {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--svc-border);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 12px;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.svc-field:focus-within {
  border-color: rgba(85,175,166,.58);
  box-shadow: 0 0 0 4px rgba(111,199,189,.14);
}

.svc-field span {
  color: #8a9492;
  width: 18px;
  text-align: center;
  flex: 0 0 auto;
}

.svc-field input,
.svc-field select {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--svc-text);
  font: inherit;
  font-size: 14px;
}

.svc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--svc-accent), var(--svc-accent-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(85,175,166,.22);
  transition: transform .22s ease, box-shadow .22s ease;
}

.svc-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(85,175,166,.28);
}

.svc-request small {
  display: block;
  color: #8a8a8a;
  font-size: 11px;
  line-height: 1.45;
  margin-top: 13px;
}

.svc-section {
  padding: 34px 0 84px;
}

.svc-title {
  margin-bottom: 30px;
}

.svc-title span {
  display: inline-block;
  color: var(--svc-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.svc-title h2 {
  max-width: 640px;
  font-size: clamp(38px, 5vw, 58px);
  text-transform: uppercase;
}

.svc-service {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  padding: 30px 0;
  border-bottom: 1px solid var(--svc-border);
}

.svc-media {
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  align-self: stretch;
}

.svc-media__main {
  min-height: 300px;
  overflow: hidden;
  border-radius: 10px;
  background: #d8dddc;
}

.svc-media__main img,
.svc-media__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-media__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.svc-media__thumbs img {
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 8px;
}

.svc-route,
.svc-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  align-items: center;
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #eef7f5;
  color: #285d58;
}

.svc-route strong,
.svc-contact strong {
  display: block;
  color: #17201f;
  font-size: 13px;
  text-transform: uppercase;
}

.svc-route span,
.svc-contact span,
.svc-contact small,
.svc-contact em {
  color: #49706b;
  font-size: 13px;
  font-style: normal;
}

.svc-contact small {
  display: block;
  margin-top: 3px;
}

.svc-contact {
  grid-template-columns: max-content 1fr;
}

.svc-contact em {
  justify-self: end;
  white-space: nowrap;
}

.svc-content {
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15,31,29,.08), 0 18px 44px rgba(15,31,29,.06);
}

.svc-content h3 {
  font-size: clamp(30px, 3.3vw, 38px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.svc-content h3 small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .02em;
}

.svc-content p {
  color: var(--svc-muted);
  font-size: 15px;
  line-height: 1.62;
  margin-bottom: 14px;
}

.svc-lead {
  color: #303837 !important;
  font-size: 16px !important;
}

.svc-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 22px;
}

.svc-info-grid + .svc-info-grid {
  margin-top: 10px;
}

.svc-info-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.svc-info {
  min-height: 0;
  padding: 16px;
  border: 1px solid var(--svc-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,31,29,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  will-change: transform;
}

.svc-info:hover {
  transform: translateY(-3px);
  border-color: rgba(85,175,166,.32);
  box-shadow: 0 18px 42px rgba(15,31,29,.1);
}

.svc-info strong {
  display: block;
  color: #202625;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.svc-info li {
  position: relative;
  color: var(--svc-muted);
  font-size: 13px;
  line-height: 1.3;
  padding-left: 14px;
  margin-bottom: 6px;
}

.svc-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--svc-accent-dark);
}

.svc-info p {
  font-size: 13px;
  line-height: 1.38;
  margin-bottom: 6px;
}

.svc-price {
  color: var(--svc-accent-dark) !important;
  font-size: 20px !important;
  font-weight: 800;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
}

.svc-note {
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(111,199,189,.12);
  color: #285d58;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.svc-cta {
  position: relative;
  overflow: hidden;
  padding: 52px 0;
  background:
    linear-gradient(90deg, rgba(9,24,22,.97), rgba(12,43,39,.9)),
    url('/assets/images/services/konservnaya-2.jpg') center / cover no-repeat;
  color: #fff;
}

.svc-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 40px;
}

.svc-cta h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.svc-cta p {
  max-width: 650px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.6;
}

.svc-button--cta {
  width: 100%;
}

@media (max-width: 1100px) {
  .svc-hero__grid,
  .svc-service {
    grid-template-columns: 1fr;
  }

  .svc-hero__benefits,
  .svc-info-grid,
  .svc-info-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-request {
    max-width: 520px;
  }
}

@media (max-width: 700px) {
  .svc-hero {
    min-height: auto;
    padding: 92px 0 52px;
  }

  .svc-hero h1 {
    font-size: 42px;
  }

  .svc-hero__content p {
    font-size: 16px;
  }

  .svc-hero__benefits,
  .svc-info-grid,
  .svc-info-grid--two,
  .svc-contact,
  .svc-cta__inner {
    grid-template-columns: 1fr;
  }

  .svc-media__main {
    height: 240px;
    min-height: 0;
  }

  .svc-media__thumbs img {
    height: 68px;
  }

  .svc-content,
  .svc-request {
    padding: 22px;
  }

  .svc-info {
    min-height: auto;
  }
}
