/* ── Inner pages (excursions catalog, about, contacts) ── */

.page-hero--contacts .page-hero-bg {
  background-image:
    linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(201, 168, 76, 0.35) 100%),
    url("/site/assets/slider-tickets.svg");
}

/* ── Contacts page ── */

.contacts-section {
  padding-top: 64px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.contact-card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--navy);
}

.contact-card > p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-card-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-card-list a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s;
}

.contact-card-list a:hover {
  color: var(--emerald);
}

.contact-card-list span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.contact-address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 600;
}

.contact-address span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.contacts-map-section {
  background: var(--cream-dark);
  padding: 72px 0;
}

.contacts-map-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contacts-map-info {
  padding: 40px 36px;
}

.contacts-map-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.2;
}

.contacts-map-info h2 em {
  color: var(--emerald);
  font-style: italic;
}

.contacts-map-info > p {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 48ch;
}

.contacts-map-hints {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.contacts-map-hints li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

.contacts-map-hints li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 700;
}

.contacts-map-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(26, 107, 56, 0.25) 0%, rgba(10, 22, 40, 0.85) 100%),
    url("/site/assets/slider-kazan.svg") center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 32px;
}

.contacts-map-pin {
  font-size: 3rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.contacts-map-visual span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.contacts-faq-section {
  padding-bottom: 48px;
}

.contacts-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contacts-faq-item {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
}

.contacts-faq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--navy);
}

.contacts-faq-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 72px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero--excursions .page-hero-bg {
  background-image:
    linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(26, 107, 56, 0.45) 100%),
    url("/site/assets/slider-bus.svg");
}

.page-hero--about .page-hero-bg {
  background-image:
    linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(30, 107, 154, 0.5) 100%),
    url("/site/assets/slider-kazan.svg");
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(201, 168, 76, 0.12), transparent),
    linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.4) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 20px;
}

.page-hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.page-hero-lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.page-hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.page-hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Catalog ── */

.catalog-section {
  padding-top: 64px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.catalog-filter-btn {
  padding: 11px 22px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.catalog-filter-btn:hover {
  color: var(--navy);
}

.catalog-filter-btn.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.2);
}

.catalog-count {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* ── Promo band ── */

.promo-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 72px 0;
}

.promo-band-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}

.promo-band .section-tag {
  color: var(--gold-light);
}

.promo-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 14px;
  line-height: 1.2;
}

.promo-band h2 em {
  color: var(--gold-light);
}

.promo-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
  line-height: 1.65;
}

.promo-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Highlights ── */

.highlights-section {
  background: var(--cream-dark);
  padding: 72px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.highlight-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 16px;
}

.highlight-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--navy);
}

.highlight-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Stats band ── */

.stats-band {
  background: var(--card);
  border-bottom: 1px solid var(--border-dark);
  padding: 48px 0;
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-band-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-band-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ── Values ── */

.values-section {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s;
}

.value-card:hover {
  box-shadow: var(--shadow);
}

.value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--navy);
}

.value-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Timeline ── */

.timeline-section {
  background: var(--card);
  border-top: 1px solid var(--border-dark);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--emerald), var(--water));
  opacity: 0.35;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--emerald);
  text-align: right;
  padding-top: 4px;
}

.timeline-body {
  background: var(--cream);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.timeline-body strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 15px;
}

.timeline-body p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Fleet ── */

.fleet-section {
  background: linear-gradient(165deg, var(--water-deep) 0%, var(--navy) 100%);
  color: #fff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.fleet-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}

.fleet-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.fleet-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.fleet-card p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.fleet-card--river .btn-gold {
  color: var(--navy);
}

/* ── Trust ── */

.trust-section {
  background: var(--cream-dark);
  padding: 64px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
}

.trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Quote ── */

.quote-section {
  padding: 72px 0;
}

.company-quote {
  margin: 0;
  padding: 48px 56px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.company-quote p {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.company-quote footer strong {
  display: block;
  color: var(--gold-light);
  font-size: 15px;
  margin-bottom: 4px;
}

.company-quote footer span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ── CTA panel ── */

.cta-section {
  padding-bottom: 100px;
}

.cta-panel {
  text-align: center;
  padding: 56px 40px;
  background:
    linear-gradient(135deg, rgba(26, 107, 56, 0.08) 0%, rgba(201, 168, 76, 0.12) 100%),
    var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin: 0 0 12px;
}

.cta-panel p {
  margin: 0 auto 28px;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.65;
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-panel .btn-ghost {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.cta-panel .btn-ghost:hover {
  background: var(--navy-mid);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts-map-panel {
    grid-template-columns: 1fr;
  }

  .contacts-faq-grid {
    grid-template-columns: 1fr;
  }

  .promo-band-inner {
    grid-template-columns: 1fr;
  }

  .promo-band-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid,
  .fleet-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-filters {
    border-radius: var(--radius);
    justify-content: center;
  }

  .catalog-filter-btn {
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 14px;
    font-size: 13px;
  }

  .timeline::before {
    left: 56px;
  }

  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .company-quote {
    padding: 32px 24px;
  }

  .page-hero-stats {
    gap: 20px;
  }
}
