/* =========================================================
   EDEN — ритуальное агентство
   Палитра: чёрный / платина / тёплое серебро
   ========================================================= */

:root {
  --black:        #0a0a0a;
  --black-soft:   #121212;
  --black-card:   #161616;
  --platinum:     #c9cdd0;
  --platinum-dim: #9a9fa3;
  --platinum-line:#3a3b3c;
  --champagne:    #c4b48c;   /* тёплый акцент, благородная латунь/шампань */
  --ivory:        #f4f2ee;
  --line:         rgba(201,205,208,0.14);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --gap-section: clamp(72px, 10vw, 140px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--platinum);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; color: var(--ivory); }
p { margin: 0 0 1.1em; }
button { font-family: inherit; cursor: pointer; }

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

::selection { background: var(--champagne); color: #0a0a0a; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- EYEBROW / TITLES ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--champagne);
}
.eyebrow--light { color: #8c7d54; }

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.section-title--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title--light { color: #0e0e0e; }

.section-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--platinum-dim);
}
.section-title--center + .section-lead {
  margin: 0 auto 64px;
  text-align: center;
}
.section-lead--light { color: #4a4338; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 57px;
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--platinum-line);
  border-radius: 6px;
  transition: all .45s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--champagne);
  border-color: var(--champagne);
  color: #16140e;
}
.btn--primary:hover {
  background: transparent;
  color: var(--champagne);
}
.btn--ghost {
  background: transparent;
  color: var(--platinum);
  border-color: var(--platinum-line);
}
.btn--ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark {
  font-family: var(--font-display);
  font-size: 54px;
  color: var(--champagne);
  border: 1px solid var(--platinum-line);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(8,8,8,0.86);
  backdrop-filter: blur(10px);
  border-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; }
.brand { display: flex; align-items: center; }
.brand picture, .site-footer__brand picture { display: flex; }
.brand__logo {
  height: 130px;
  width: auto;
  transition: opacity .3s, height .4s var(--ease);
}
.brand__logo:hover { opacity: .85; }
.site-header.is-scrolled .brand__logo { height: 44px; }

.main-nav {
  display: flex;
  gap: 34px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.main-nav a {
  position: relative;
  color: var(--platinum);
  padding-bottom: 4px;
  transition: color .3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--champagne);
  transition: width .35s var(--ease);
}
.main-nav a:hover { color: var(--champagne); }
.main-nav a:hover::after { width: 100%; }

/* .header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header-contacts__phone {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--champagne);
}
.header-contacts__note {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--platinum-dim);
} */

.header-contacts {
  position: relative;
}
.header-contacts__trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  background: none;
  border: none;
  padding: 6px 4px;
  font-family: inherit;
}
.header-contacts__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--champagne);
}
.header-contacts__note {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--platinum-dim);
}
.header-contacts__chevron {
  color: var(--platinum-dim);
  transition: transform .3s var(--ease);
}
.header-contacts__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 230px;
  background: rgba(12,12,12,0.97);
  border: 1px solid var(--platinum-line);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 50;
}
.header-contacts__item {
  padding: 11px 16px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--platinum);
  border-radius: 1px;
  transition: background .25s, color .25s;
}
.header-contacts__item:hover {
  background: rgba(196,180,140,0.1);
  color: var(--champagne);
}

/* hover на устройствах с курсором (десктоп) */
@media (hover: hover) and (pointer: fine) {
  .header-contacts:hover .header-contacts__dropdown,
  .header-contacts__trigger:focus-visible ~ .header-contacts__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* клик на тач-устройствах — управляется классом is-open через JS */
.header-contacts.is-open .header-contacts__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-contacts.is-open .header-contacts__chevron { transform: rotate(180deg); }


.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
}
.burger span {
  display: block;
  height: 1px;
  background: var(--platinum);
  transition: all .35s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8,8,8,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), visibility .4s var(--ease), transform .4s var(--ease);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.mobile-nav nav a {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ivory);
}
.mobile-nav nav a:hover { color: var(--champagne); }
.mobile-nav__phone {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--champagne);
  border: 1px solid var(--platinum-line);
  padding: 12px 28px;
}

/* =========================================================
   HERO + PARALLAX
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--gap-section) 0;
    background: var(--black-soft);
    border-top: 1px solid var(--line);
  
}
.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg {
  position: absolute;
  inset: -10% -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(35%) brightness(.25) contrast(1.05);
  will-change: transform;
}
.hero__bg--2 {
  opacity: .35;
  mix-blend-mode: overlay;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(10,10,10,0.2), rgba(8,8,8,0.78) 70%),
    linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.35) 40%, rgba(8,8,8,0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}
.hero__title {
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1.06;
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--champagne);
}
.hero__lead {
  max-width: 520px;
  font-size: 18px;
  color: var(--platinum);
}
.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero__scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--platinum-line);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  background: var(--champagne);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: var(--gap-section) 0;
  background: var(--black);
}
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__media-frame {
  position: relative;
  overflow: hidden;
  /* border: 1px solid var(--platinum-line); */
}
.about__media-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%) brightness(.92);
  transition: transform 1.2s var(--ease);
}
.about__media:hover .about__media-frame img { transform: scale(1.04); }

.about__years {
  position: absolute;
  bottom: 128px;
  right: 20px;
  background: var(--champagne);
  color: #16140e;
  padding: 4px 6px;
  text-align: center;
  width: 400px;
  color: #c4b48c;
  background: none;
}
.about__years-num {
  display: block;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
}
.about__years-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.about__text p {
  color: var(--platinum-dim);
  font-size: 15.5px;
}
.about__points {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.about__points li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--platinum);
}
.about__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1px;
  background: var(--champagne);
}

/* =========================================================
   TRANSPORT
   ========================================================= */
.transport {
  padding: var(--gap-section) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.transport__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.transport__media {
  overflow: hidden;
  border: 1px solid var(--platinum-line);
}
.transport__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(15%) brightness(.95);
  transition: transform 1.2s var(--ease);
}
.transport__media:hover img { transform: scale(1.05); }

.transport__list { display: grid; gap: 26px; margin-top: 36px; }
.transport__list li {
  padding-left: 26px;
  border-left: 1px solid var(--platinum-line);
  font-size: 14.5px;
  color: var(--platinum-dim);
}
.transport__list li span {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ivory);
  margin-bottom: 4px;
}

/* =========================================================
   HALL (gallery)
   ========================================================= */
.hall { padding: var(--gap-section) 0; background: var(--black); text-align: center; }
.hall__gallery {
  margin-top: 56px;
  display: flex;
  grid-template-columns: 1fr1fr;
  gap: 22px;
  align-items: center;
}
.hall__item { overflow: hidden; border: 1px solid var(--platinum-line); margin: 0; }
.hall__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: grayscale(20%) brightness(.92);
  transition: transform 1.2s var(--ease);
}
.hall__item--tall img { aspect-ratio: 3/4.5; }
.hall__item:hover img { transform: scale(1.06); }

/* =========================================================
   SERVICES (light inverted block)
   ========================================================= */
.services {
  padding: var(--gap-section) 0;
  background: linear-gradient(180deg, #ece8df 0%, #e2dccd 100%);
  text-align: center;
  color: #1a1712;
}
.services__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  text-align: left;
}
.service-card {
  background: #f6f4ee;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -20px rgba(20,15,5,0.35);
}
.service-card__media { overflow: hidden; aspect-ratio: 1/1; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(10%);
  transition: transform 1.1s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card h3 {
  font-size: 23px;
  color: #1a1712;
  margin: 26px 26px 14px;
}
.service-card ul { margin: 0 26px 28px; display: grid; gap: 9px; }
.service-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #534b3c;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 1px;
  background: #8c7d54;
}

/* =========================================================
   MONUMENTS
   ========================================================= */
.monuments { padding: var(--gap-section) 0; background: var(--black); text-align: center; }
.monuments__grid {
    margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  justify-content: center;
}
.monuments__item { overflow: hidden; border: 1px solid var(--platinum-line); margin: 0; }
.monuments__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(25%) brightness(.92);
  transition: transform 1.2s var(--ease);
}
.monuments__item:hover img { transform: scale(1.06); }

/* =========================================================
   CONTACTS
   ========================================================= */
.contacts {
  padding: var(--gap-section) 0;
  background: linear-gradient(180deg, #efece4 0%, #e6e0d0 100%);
  color: #1a1712;
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacts .section-lead--light { max-width: 460px; }
.contacts__details { margin: 18px 0 30px; }
.contacts__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: #1a1712;
  margin-bottom: 6px;
  transition: color .3s;
}
.contacts__phone:hover { color: #8c7d54; }
.contacts__address {
  margin-top: 14px;
  font-size: 14.5px;
  color: #534b3c;
}

.contacts__social { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(20,15,5,0.25);
  color: #1a1712;
  transition: all .35s var(--ease);
}
.social-btn__icon { width: 18px; height: 18px; display: inline-flex; }
.social-btn__icon svg { width: 100%; height: 100%; }
.social-btn:hover {
  background: #1a1712;
  color: #efece4;
  border-color: #1a1712;
}

.contacts__form-wrap {
  background: #f6f4ee;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 44px;
}
.contacts__form-title {
  font-size: 26px;
  color: #1a1712;
  margin-bottom: 10px;
}
.contacts__form-note {
  font-size: 14px;
  color: #6b6253;
  margin-bottom: 28px;
}

.callback-form__field { margin-bottom: 18px; }
.callback-form input {
  width: 100%;
  padding: 15px 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--font-body);
  font-size: 15px;
  color: #1a1712;
  transition: border-color .3s;
}
.callback-form input::placeholder { color: #9a9182; }
.callback-form input:focus {
  outline: none;
  border-color: #8c7d54;
}
.callback-form__submit {
  width: 100%;
  margin-top: 6px;
  position: relative;
}
.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(22,20,14,0.3);
  border-top-color: #16140e;
  border-radius: 50%;
}
.callback-form__submit.is-loading .btn-label { opacity: .5; }
.callback-form__submit.is-loading .btn-spinner {
  display: inline-block;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.callback-form__status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 13.5px;
}
.callback-form__status.is-success { color: #4f7a52; }
.callback-form__status.is-error { color: #a4493b; }

.callback-form__legal {
  font-size: 11.5px;
  color: #9a9182;
  margin: 14px 0 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 50px 0;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__brand { display: flex; flex-direction: column; }
.site-footer__nav { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; }
.site-footer__nav a { color: var(--platinum-dim); transition: color .3s; }
.site-footer__nav a:hover { color: var(--champagne); }
.site-footer__copy { font-size: 12.5px; color: var(--platinum-line); width: 100%; text-align: center; margin-top: 10px; }

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px; height: 46px;
  border: 1px solid var(--platinum-line);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  font-size: 18px;
  z-index: 60;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .4s var(--ease);
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--champagne); color: #16140e; border-color: var(--champagne); }

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* stagger inside grids */
.about__points li,
.transport__list li,
.hall__gallery .hall__item,
.services__grid .service-card,
.monuments__grid .monuments__item {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------- TRANSPORT SLIDER ---------- */
.transport-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--platinum-line);
}
.transport-slider__track {
  display: flex;
  transition: transform .6s var(--ease);
}
.transport-slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.transport-slider__slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(15%) brightness(.95);
  display: block;
}

.transport-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,205,208,0.4);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
  color: var(--platinum);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
  z-index: 5;
}
.transport-slider__arrow:hover {
  background: var(--champagne);
  color: #16140e;
  border-color: var(--champagne);
}
.transport-slider__arrow--prev { left: 16px; }
.transport-slider__arrow--next { right: 16px; }

.transport-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.transport-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--platinum-line);
  background: rgba(10,10,10,0.5);
  padding: 0;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s;
}
.transport-slider__dot.is-active {
  background: var(--champagne);
  border-color: var(--champagne);
  transform: scale(1.15);
}
/* =========================================================
   MAP SECTION — 3 адреса
   ========================================================= */
.map-section {
  padding: var(--gap-section) 0;
  background: linear-gradient(180deg, #efece4 0%, #e6e0d0 100%);
  text-align: center;
}
.map-section__wrap {
  margin-top: 48px;
}
.map-section__map {
  width: 100%;
  height: 460px;
  border: 1px solid rgba(20,15,5,0.18);
  filter: grayscale(15%) contrast(1.02);
}
.map-section__map .leaflet-popup-content-wrapper {
  border-radius: 1px;
  font-family: var(--font-body);
}
.map-section__map .leaflet-popup-content {
  font-size: 13.5px;
  color: #1a1712;
  margin: 10px 14px;
  line-height: 1.5;
  text-align: left;
}
.map-section__map .leaflet-popup-content b {
  font-family: var(--font-display);
  font-size: 15px;
}
.map-section__map .leaflet-popup-content a {
  color: #8c7d54;
}
.map-section__addresses {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.map-section__addresses li {
  font-size: 15px;
  color: #4a4338;
}
.map-section__addresses li span {
  font-family: var(--font-display);
  font-size: 17px;
  color: #1a1712;
}



/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .about__grid, .transport__grid, .contacts__grid { grid-template-columns: 1fr; gap: 56px; }
  .transport__text { order: 2; text-align: center; }
  .transport__media { order: 1; max-width: 300px; margin: 0 auto;}
  .monuments__grid { max-width: 640px; }
  .hall__gallery { grid-template-columns: 1fr 1fr; justify-items: center; /* по горизонтали */
    align-content: center;}
  .hall__item--tall { grid-row: span 2; }
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 56px auto 0; }
  .about__media { max-width: 70%; }
  .about__text { text-align: center; }
  .about__media { margin: 0 auto; width: 30%; }
  /* .about__years { width: 50%; } */
  .contacts__grid { text-align: center;}
  .main-nav { font-size: 11.5px; }
}

@media (max-width: 1150px){
  .about__years {display: none;}
  .about__media reveal is-visible {display: none;}
}

@media (max-width: 860px) {
  .main-nav, .header-contacts { display: none; }
  .burger { display: flex; }
  .about__years { right: 0; bottom: -px; padding: 2px; width: 90px; }
  
  
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(36px, 11vw, 54px); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hall__gallery { grid-template-columns: 1fr; }
  .hall__item--tall { grid-row: auto; }
  .monuments__grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; max-width: 420px; }
  .contacts__form-wrap { padding: 30px 24px; }
  .site-footer__inner { flex-direction: column; text-align: center; }
  .site-footer__nav { justify-content: center; }
  .about { padding: 0 0;}
  .map-section__addresses li { font-size: 14px; }
}

@media (max-width: 509px) {
  .about__media-frame { display: none; }
  .about__media {
    position: static;
    margin-bottom: 28px;
    
  }
  .about__years {
    position: none;
    width: auto;
    margin: 0 auto;
    color: #c4b48c;
    background: none;
  }
}