:root {
  --bg: #f7f1e8;
  --paper: #fffaf2;
  --red: #c91517;
  --red-dark: #7d0f12;
  --ink: #1b1715;
  --muted: #7f7770;
  --rose: #e9b6b0;
  --line: rgba(201, 21, 23, 0.20);
  --soft-line: rgba(125, 15, 18, 0.10);
  --shadow: 0 24px 62px rgba(66, 35, 26, 0.12);
  --radius: 30px;
  --wrap: min(1360px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(233,182,176,.36), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(201,21,23,.07), transparent 26%),
    linear-gradient(180deg, #faf4eb 0%, var(--bg) 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(125,15,18,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,15,18,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1460px, calc(100% - 48px));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 13px 16px 13px 22px;
  border: 1px solid rgba(201,21,23,.13);
  border-radius: 999px;
  background: rgba(247, 241, 232, .86);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 42px rgba(48, 28, 22, .08);
}
.brand { line-height: 1; display: inline-grid; gap: 5px; }
.brand__title { color: var(--red); font-weight: 850; letter-spacing: .035em; text-transform: uppercase; }
.brand__subtitle { color: var(--muted); font-size: 12px; }
.nav { display: flex; justify-content: center; gap: clamp(12px, 1.4vw, 22px); align-items: center; font-size: 13px; font-weight: 750; }
.nav a { color: rgba(27,23,21,.74); transition: color .2s ease, background .2s ease; white-space: nowrap; }
.nav a:hover { color: var(--red); }
.header-phone {
  border: 1px solid rgba(201,21,23,.48);
  color: var(--red);
  padding: 10px 17px;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}
.burger { display: none; border: 0; background: transparent; width: 44px; height: 38px; padding: 0; justify-self: end; }
.burger span { display: block; width: 24px; height: 2px; background: var(--red); margin: 7px auto; border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }

.section { width: var(--wrap); margin: 0 auto; padding: 84px 0; position: relative; }
main .section:not(.hero) { content-visibility: auto; contain-intrinsic-size: 900px; }
.eyebrow { margin: 0 0 14px; color: var(--red); font-weight: 850; text-transform: uppercase; letter-spacing: .11em; font-size: 13px; }
h1, h2, h3, p { margin-top: 0; }
h1 { color: var(--red); font-size: clamp(40px, 5.6vw, 86px); line-height: .99; letter-spacing: -.058em; margin: 0 0 24px; }
h2 { font-size: clamp(32px, 4.2vw, 66px); line-height: 1.03; letter-spacing: -.05em; margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.12; letter-spacing: -.03em; }
p { color: var(--muted); line-height: 1.68; }
.script-note { font-family: "Segoe Script", "Brush Script MT", cursive; color: var(--red); font-size: clamp(25px, 2.8vw, 42px); line-height: 1.05; }
.mini-heart { color: var(--red); display: inline-block; font-size: 20px; margin-bottom: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--red); color: #fff; box-shadow: 0 16px 35px rgba(201,21,23,.24); }
.button--secondary { background: rgba(255,250,242,.62); border-color: rgba(201,21,23,.35); color: var(--red); }

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding-top: 88px;
}
.hero__copy { position: relative; z-index: 4; }
.hero__text { font-size: clamp(17px, 1.45vw, 19px); max-width: 680px; color: rgba(27,23,21,.78); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 32px 0 22px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero__meta span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-size: 13px; color: var(--muted); background: rgba(255,250,242,.52); }
.hero__visual { position: relative; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); isolation: isolate; background: var(--paper); }
.hero__visual img { width: 100%; height: min(710px, 72vh); object-fit: cover; object-position: center top; filter: grayscale(.88) sepia(.12) contrast(.94) brightness(1.05); }
.hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,241,232,.16), transparent 48%, rgba(247,241,232,.12)); pointer-events: none; }
.heart-sticker { position: absolute; top: 36px; right: 38px; color: var(--red); font-size: 38px; transform: rotate(-10deg); z-index: 2; }
.visual-note { position: absolute; right: 32px; bottom: 30px; z-index: 2; }
.word-pattern { max-width: 560px; margin-top: 22px; color: rgba(201,21,23,.14); font-size: 23px; font-weight: 850; letter-spacing: .06em; line-height: .96; }
.red-line { position: absolute; pointer-events: none; z-index: 3; overflow: visible; }
.red-line path { fill: none; stroke: var(--red); stroke-width: 3.2; stroke-linecap: round; opacity: .76; }
.red-line--hero { left: -10vw; right: -10vw; bottom: 18%; width: 120vw; height: 300px; }

.section-heading { text-align: center; max-width: 850px; margin: 0 auto 44px; }
.section-heading--left { text-align: left; margin-left: 0; }
.section-heading p:not(.eyebrow):not(.script-note) { font-size: 18px; }
.section-heading--with-arrows { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.slider-buttons { display: flex; gap: 10px; align-items: center; flex: 0 0 auto; }
.slider-buttons button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,21,23,.22);
  border-radius: 999px;
  background: rgba(255,250,242,.82);
  color: var(--red);
  box-shadow: 0 14px 34px rgba(66,35,26,.10);
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}
.slider-buttons button:hover { background: var(--red); color: #fff; }

.video-section { display: grid; grid-template-columns: .68fr 1.32fr; gap: 42px; align-items: center; }
.video-section__copy p { font-size: 18px; max-width: 640px; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); background: #1b1715; border: 1px solid rgba(201,21,23,.2); }
.video-frame img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72) saturate(.9); }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.play-button { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 12px; border: 0; color: #fff; background: radial-gradient(circle at center, rgba(201,21,23,.25), rgba(27,23,21,.45)); cursor: pointer; }
.play-button span { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 999px; background: var(--red); box-shadow: 0 18px 44px rgba(201,21,23,.34); padding-left: 4px; font-size: 28px; }
.play-button strong { font-size: 18px; }

.for-whom { padding-top: 60px; }
.cards-four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.small-card { min-height: 250px; padding: 28px; border-radius: 26px; background: rgba(255,250,242,.68); border: 1px solid var(--line); box-shadow: 0 18px 52px rgba(66,35,26,.07); position: relative; overflow: hidden; }
.small-card::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(201,21,23,.06); border-radius: 18px; pointer-events: none; }
.card-icon { color: var(--red); font-size: 36px; display: inline-block; margin-bottom: 34px; }
.small-card h3 { max-width: 220px; }
.small-card p { margin-bottom: 0; }

.why { display: grid; grid-template-columns: 1.04fr .82fr; gap: 54px; align-items: center; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-grid article { padding: 26px; border-radius: 24px; background: rgba(255,250,242,.62); border: 1px solid var(--line); }
.why-grid h3 { margin-bottom: 10px; }
.why-grid p { margin-bottom: 0; }
.why__image { position: relative; margin: 0; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); }
.why__image img { height: 700px; width: 100%; object-fit: cover; object-position: center top; filter: grayscale(.86) sepia(.12); }
.why__image figcaption { position: absolute; right: 28px; top: 28px; max-width: 290px; }

.process { display: grid; grid-template-columns: .45fr 1fr; gap: 44px; align-items: center; }
.process__photo { position: relative; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); background: var(--paper); }
.process__photo img { width: 100%; height: 500px; object-fit: cover; object-position: center center; filter: grayscale(.85) sepia(.12); }
.process__photo .script-note { position: absolute; left: 24px; bottom: 22px; max-width: 260px; }
.process__content { position: relative; z-index: 4; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps article { padding: 24px 12px 0; }
.steps span { display: block; color: var(--red); font-size: clamp(48px, 6vw, 78px); line-height: 1; letter-spacing: -.07em; font-weight: 400; }
.steps h3 { margin: 12px 0 8px; }
.steps p { margin-bottom: 0; font-size: 15px; }
.red-line--process { right: -9vw; left: 20%; top: 48%; width: 96vw; height: 170px; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.package-card { display: flex; flex-direction: column; min-height: 632px; background: rgba(255,250,242,.96); border: 1px solid var(--line); border-radius: 30px; overflow: hidden; box-shadow: 0 20px 56px rgba(66,35,26,.09); }
.package-card img { width: 100%; height: 260px; object-fit: cover; object-position: center top; filter: grayscale(.72) sepia(.12); background: var(--paper); }
.package-card--featured { border-color: rgba(201,21,23,.44); box-shadow: 0 28px 80px rgba(201,21,23,.13); }
.package-card:nth-child(3) img { filter: grayscale(.55) sepia(.18); }
.package-card__body { flex: 1; padding: 28px; display: flex; flex-direction: column; background: linear-gradient(180deg, rgba(255,250,242,.98), rgba(255,250,242,.94)); }
.package-card__body h3 { color: var(--ink); font-size: 30px; margin-bottom: 14px; }
.package-card__body p:not(.package-tag), .package-card__body .clean-list, .package-card__body .gift-details ul { color: rgba(27, 23, 21, .72); font-size: 16px; line-height: 1.64; }
.package-card__body strong { display: inline-flex; align-items: center; width: max-content; max-width: 100%; padding: 10px 14px; margin-top: auto; border-radius: 16px; background: rgba(201,21,23,.08); border: 1px solid rgba(201,21,23,.18); color: var(--red); font-size: 32px; line-height: 1; letter-spacing: -.04em; white-space: nowrap; }
.package-card__body a { display: inline-flex; width: max-content; max-width: 100%; margin-top: 18px; color: var(--red); border-bottom: 1px solid rgba(201,21,23,.32); font-weight: 850; }
.package-tag { display: inline-flex; width: max-content; margin: 0 0 12px; color: var(--red-dark); border: 1px solid rgba(201,21,23,.22); padding: 5px 10px; border-radius: 999px; font-size: 13px; font-weight: 850; line-height: 1.2; }
.gift-details { margin: 10px 0 0; padding: 0; border: 0; background: transparent; }
.gift-details summary { width: max-content; color: var(--red); border: 1px solid rgba(201,21,23,.25); padding: 8px 12px; border-radius: 999px; font-size: 14px; cursor: pointer; }
.gift-details[open] summary { background: rgba(201,21,23,.08); }
.gift-details ul { margin: 12px 0 0; padding-left: 20px; }
.clean-list { margin: 0 0 22px; padding: 0; list-style: none; }
.clean-list li { position: relative; padding-left: 18px; margin-bottom: 5px; }
.clean-list li::before { content: "♥"; position: absolute; left: 0; top: 0; color: var(--red); font-size: 11px; }

.certificate { display: grid; grid-template-columns: .78fr 1fr; gap: 48px; align-items: center; padding-top: 70px; }
.certificate__visual { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); background: var(--paper); }
.certificate__visual img { width: 100%; height: 500px; object-fit: cover; object-position: center center; filter: grayscale(.2) sepia(.08); }
.certificate__copy p { font-size: 18px; max-width: 680px; }

.scroll-strip { display: flex; gap: 18px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding: 2px; padding: 2px 2px 16px; scrollbar-width: thin; scrollbar-color: rgba(201,21,23,.35) transparent; }
.scroll-strip::-webkit-scrollbar { height: 8px; }
.scroll-strip::-webkit-scrollbar-thumb { background: rgba(201,21,23,.28); border-radius: 999px; }
.choreo-card { scroll-snap-align: start; flex: 0 0 min(880px, calc(100% - 4px)); display: grid; grid-template-columns: 310px 1fr; gap: 24px; padding: 22px; border-radius: 30px; background: rgba(255,250,242,.74); border: 1px solid var(--line); box-shadow: 0 18px 52px rgba(66,35,26,.08); align-items: stretch; }
.choreo-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center top; border-radius: 24px; filter: sepia(.05) contrast(.98); }
.choreo-card h3 { font-size: 32px; color: var(--red); margin-bottom: 12px; }
.choreo-card p { font-size: 15px; line-height: 1.62; margin-bottom: 0; }

.gallery { padding-top: 72px; }
.wedding-strip { gap: 16px; padding-bottom: 18px; }
.photo-card { flex: 0 0 calc(33.333% - 11px); margin: 0; min-width: 300px; border-radius: 26px; overflow: hidden; background: rgba(255,250,242,.75); border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(66,35,26,.08); scroll-snap-align: start; }
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center center; transition: transform .35s ease; }
.photo-card:hover img { transform: scale(1.025); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { position: relative; padding: 34px; min-height: 326px; background: rgba(255,250,242,.80); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.review-card::after { content: "♥"; position: absolute; top: -15px; right: 28px; color: var(--red); font-size: 26px; filter: drop-shadow(0 6px 8px rgba(201,21,23,.16)); }
.review-card p { color: rgba(27,23,21,.82); font-size: 17px; }
.review-card span { display: block; margin-top: 24px; font-weight: 850; color: var(--ink); }
.review-card strong { display: block; color: var(--red); letter-spacing: .16em; margin-top: 10px; }
.review-card em { position: absolute; right: 24px; bottom: 18px; color: var(--red); font-family: "Segoe Script", "Brush Script MT", cursive; font-size: 28px; font-style: normal; transform: rotate(-6deg); }

.halls a { color: var(--red); font-weight: 850; }
.hall-map-link { display: inline-flex; align-items: center; margin-top: 10px; font-size: 14px; text-decoration: none; border-bottom: 1px solid rgba(201,21,23,.28); }
.hall-layout { display: grid; grid-template-columns: 1fr .72fr; gap: 24px; align-items: start; }
.hall-list { columns: 2; column-gap: 16px; }
details { break-inside: avoid; margin: 0 0 14px; padding: 18px 20px; border-radius: 22px; background: rgba(255,250,242,.68); border: 1px solid var(--line); box-shadow: 0 12px 38px rgba(66,35,26,.06); }
summary { cursor: pointer; font-weight: 850; color: var(--red-dark); }
details p { margin: 12px 0 0; font-size: 15px; line-height: 1.55; color: rgba(27,23,21,.72); }
.map-card { position: sticky; top: 100px; background: rgba(255,250,242,.72); border: 1px solid var(--line); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 620px; border: 0; display: block; background: #eee; }
.ymap-container { display: none; width: 100%; height: 620px; background: rgba(233,182,176,.18); }
.ymap-container.is-visible { display: block; }
.map-placeholder { min-height: 620px; padding: 36px; display: grid; place-items: center; align-content: center; text-align: center; background: linear-gradient(135deg, rgba(255,250,242,.95), rgba(233,182,176,.20)); }
.map-placeholder span { color: var(--red); font-size: 54px; line-height: 1; }
.map-placeholder h3 { color: var(--red-dark); font-size: 30px; margin: 12px 0 10px; }
.map-placeholder p { max-width: 360px; margin: 0 auto 22px; }
.map-placeholder.is-loading [data-load-map] { pointer-events: none; opacity: .72; }
.map-placeholder.is-loading [data-load-map]::after { content: "..."; }
.map-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.button--ghost { background: rgba(255,250,242,.72); color: var(--red); border: 1px solid rgba(201,21,23,.18); }
.map-caption { padding: 18px 22px 24px; margin: 0; font-size: 15px; }

.cta { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: center; padding-bottom: 80px; }
.cta__content, .contact-buttons, .contact-buttons .button { position: relative; z-index: 9; }
.cta h2 { color: var(--red); }
.cta img { border-radius: 34px; width: 100%; height: 540px; object-fit: cover; object-position: center top; box-shadow: var(--shadow); filter: grayscale(.85) sepia(.12); position: relative; z-index: 2; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 16px; }
.red-line--cta { left: -8vw; bottom: 88px; width: 114vw; height: 190px; z-index: 1; }

.seo-block { width: var(--wrap); margin: 0 auto 40px; padding: 34px; border: 1px solid var(--soft-line); border-radius: 26px; background: rgba(255,250,242,.45); content-visibility: auto; contain-intrinsic-size: 220px; }
.seo-block h2 { font-size: 22px; margin-bottom: 10px; letter-spacing: -.03em; color: var(--red-dark); }
.seo-block p { margin: 0; font-size: 13px; line-height: 1.8; color: rgba(127,119,112,.82); }

.footer { width: min(1460px, calc(100% - 48px)); margin: 0 auto 30px; padding: 32px; border-radius: 28px; border: 1px solid var(--line); background: rgba(255,250,242,.66); display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; color: var(--muted); font-weight: 750; }
.footer__contacts { display: grid; gap: 6px; text-align: right; font-weight: 850; font-size: 14px; }
.footer__contacts a:nth-of-type(n+2) { color: var(--red); }
.mobile-contact-bar { display: none; }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: auto auto; }
  .burger { display: block; }
  .nav { display: none; grid-column: 1 / -1; flex-direction: column; align-items: flex-start; padding: 10px 0 6px; }
  .nav.is-open { display: flex; }
  .header-phone { display: none; }
  .hero, .video-section, .why, .cta, .certificate, .process, .hall-layout { grid-template-columns: 1fr; }
  .map-card { position: relative; top: auto; }
  .hero__visual img { height: 560px; }
  .package-grid, .review-grid, .cards-four, .steps { grid-template-columns: 1fr 1fr; }
  .hall-list { columns: 1; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer__contacts { text-align: center; }
}

@media (max-width: 767.98px) {
  :root {
    --radius: 24px;
    --shadow: 0 18px 44px rgba(66, 35, 26, 0.11);
    --wrap: calc(100% - 22px);
  }
  html { scroll-padding-top: 92px; }
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 0 0, rgba(233,182,176,.34), transparent 32%),
      linear-gradient(180deg, #faf4eb 0%, #f7f1e8 100%);
  }

  .site-header {
    width: calc(100% - 20px);
    margin: 8px auto 0;
    padding: 11px 12px 11px 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    border-radius: 22px;
  }
  .brand__title { font-size: 15px; letter-spacing: .04em; }
  .brand__subtitle { font-size: 10px; }
  .burger { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(201,21,23,.22); border-radius: 14px; background: rgba(255,250,242,.78); }
  .burger span { width: 22px; margin: 0; }
  .burger span + span { margin-top: -12px; }
  .burger[aria-expanded="true"] span:first-child { transform: translateY(5px) rotate(42deg); }
  .burger[aria-expanded="true"] span:last-child { transform: translateY(-5px) rotate(-42deg); }
  .nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: none; padding: 10px; flex-direction: column; align-items: stretch; gap: 0; border-radius: 22px; background: rgba(255,250,242,.98); border: 1px solid rgba(201,21,23,.16); box-shadow: 0 22px 56px rgba(48,28,22,.14); }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 13px 14px; border-radius: 14px; font-size: 14px; color: rgba(27,23,21,.86); }
  .nav a + a { margin-top: 2px; }
  .nav a:hover, .nav a:focus { background: rgba(201,21,23,.07); }

  .section { padding: 48px 0; }
  .section-heading { text-align: left; margin: 0 0 24px; max-width: none; }
  .section-heading--with-arrows { align-items: start; gap: 14px; }
  .section-heading p:not(.eyebrow):not(.script-note) { font-size: 15.5px; }
  .eyebrow { font-size: 11px; letter-spacing: .12em; margin-bottom: 10px; }
  h1 { font-size: clamp(34px, 11.3vw, 48px); line-height: 1; letter-spacing: -.055em; margin-bottom: 18px; }
  h2 { font-size: clamp(28px, 8.5vw, 38px); line-height: 1.05; letter-spacing: -.045em; }
  h3 { font-size: 21px; }
  p { line-height: 1.62; }
  .script-note { font-size: 27px; }
  .button { width: 100%; min-height: 52px; border-radius: 15px; padding: 13px 18px; }

  .hero { min-height: auto; display: flex; flex-direction: column; gap: 22px; padding-top: 42px; padding-bottom: 44px; }
  .hero__text { font-size: 16.5px; line-height: 1.62; }
  .hero__actions { gap: 10px; margin: 24px 0 16px; }
  .hero__meta { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hero__meta span { width: max-content; max-width: 100%; font-size: 12px; padding: 7px 10px; }
  .word-pattern { font-size: 16px; line-height: 1.05; max-width: 100%; margin-top: 14px; }
  .hero__visual { border-radius: 24px; }
  .hero__visual img { height: min(520px, 78vh); width: 100%; object-fit: cover; object-position: center top; }
  .heart-sticker { top: 18px; right: 22px; font-size: 30px; }
  .visual-note { right: 18px; bottom: 18px; font-size: 25px; }
  .red-line--hero { opacity: .45; bottom: 28%; height: 190px; }

  .video-section { display: flex; flex-direction: column; gap: 22px; }
  .video-section__copy p { font-size: 15.5px; }
  .video-frame { border-radius: 22px; }
  .play-button span { width: 58px; height: 58px; font-size: 24px; }
  .play-button strong { font-size: 16px; }

  .cards-four, .why-grid, .steps, .package-grid, .review-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .for-whom { padding-top: 42px; }
  .small-card { min-height: 0; padding: 21px 20px; border-radius: 22px; }
  .small-card::after { inset: 12px; border-radius: 16px; }
  .card-icon { margin-bottom: 16px; font-size: 30px; }
  .small-card h3 { max-width: none; margin-bottom: 8px; }

  .why { display: flex; flex-direction: column; gap: 24px; }
  .why-grid article { padding: 20px; border-radius: 20px; }
  .why-grid h3 { font-size: 19px; }
  .why-grid p { font-size: 14.5px; }
  .why__image { border-radius: 24px; }
  .why__image img { height: 420px; object-fit: cover; object-position: center top; }
  .why__image figcaption { left: 18px; right: 18px; top: auto; bottom: 18px; max-width: 260px; padding: 9px 12px; border-radius: 16px; background: rgba(255,250,242,.72); }

  .process { display: flex; flex-direction: column; gap: 24px; }
  .process__photo { border-radius: 24px; width: 100%; }
  .process__photo img { height: 330px; object-position: center center; }
  .process__photo .script-note { left: 18px; bottom: 16px; max-width: 220px; }
  .steps article { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,250,242,.62); }
  .steps span { font-size: 54px; }
  .red-line--process { display: none; }

  .packages .section-heading { margin-bottom: 18px; }
  .package-card { min-height: 0; border-radius: 24px; }
  .package-card img { height: 230px; width: 100%; object-fit: cover; object-position: center top; }
  .package-card__body { padding: 21px; }
  .package-card__body h3 { font-size: 25px; margin-bottom: 10px; }
  .package-card__body p:not(.package-tag), .package-card__body .clean-list, .package-card__body .gift-details ul { font-size: 14.5px; line-height: 1.58; }
  .package-card__body strong { font-size: 26px; margin-top: 8px; white-space: normal; }
  .package-card__body a { width: 100%; justify-content: center; margin-top: 14px; padding: 12px 14px; border: 1px solid rgba(201,21,23,.28); border-radius: 14px; background: rgba(201,21,23,.06); }
  .gift-details summary { width: 100%; text-align: center; padding: 10px 12px; }

  .certificate { display: flex; flex-direction: column; gap: 22px; padding-top: 48px; }
  .certificate__visual { border-radius: 24px; width: 100%; }
  .certificate__visual img { height: 320px; object-position: center center; }
  .certificate__copy p { font-size: 15.5px; }

  .slider-buttons { gap: 8px; }
  .slider-buttons button { width: 44px; height: 44px; font-size: 34px; }
  .scroll-strip { margin-left: -11px; margin-right: -11px; padding-left: 11px; padding-right: 11px; }
  .choreo-card { flex: 0 0 86%; display: flex; flex-direction: column; gap: 16px; padding: 16px; border-radius: 24px; }
  .choreo-card img { height: 390px; min-height: 0; object-fit: cover; object-position: center top; border-radius: 19px; }
  .choreo-card h3 { font-size: 28px; }
  .choreo-card p { font-size: 14px; line-height: 1.58; }

  .gallery { padding-top: 48px; }
  .wedding-strip { gap: 8px; padding-bottom: 14px; }
  .photo-card { flex: 0 0 calc(50% - 4px); min-width: 0; border-radius: 17px; }
  .photo-card img { aspect-ratio: 3 / 4; object-fit: cover; object-position: center center; }

  .review-card { min-height: 0; padding: 25px 22px 58px; border-radius: 22px; }
  .review-card p { font-size: 15.5px; }
  .review-card em { font-size: 24px; right: 18px; }

  .hall-layout { display: flex; flex-direction: column; gap: 18px; }
  .hall-list { columns: 1; max-height: 520px; overflow-y: auto; padding-right: 3px; overscroll-behavior: contain; }
  details { margin-bottom: 10px; padding: 15px 16px; border-radius: 18px; }
  summary { font-size: 15px; }
  details p { font-size: 13.5px; }
  .map-card { position: static; border-radius: 22px; }
  .map-card iframe, .map-placeholder, .ymap-container { height: 360px; min-height: 360px; }
  .map-placeholder { padding: 22px; }
  .map-placeholder span { font-size: 42px; }
  .map-placeholder h3 { font-size: 24px; }
  .map-placeholder p { font-size: 13.5px; margin-bottom: 16px; }
  .map-actions { flex-direction: column; align-items: stretch; width: min(100%, 260px); margin: 0 auto; }
  .hall-map-link { font-size: 13px; }
  .map-caption { padding: 14px 16px 18px; font-size: 13.5px; }

  .cta { display: flex; flex-direction: column; gap: 22px; padding-bottom: 48px; }
  .cta img { height: 360px; border-radius: 24px; object-position: center top; }
  .contact-buttons { gap: 10px; margin-top: 20px; }
  .red-line--cta { display: none; }
  .cta small { display: block; line-height: 1.5; color: var(--muted); }

  .seo-block { margin-bottom: 20px; padding: 20px; border-radius: 20px; }
  .seo-block h2 { font-size: 18px; }
  .seo-block p { font-size: 11.5px; line-height: 1.65; }

  .footer { width: var(--wrap); margin-bottom: 18px; padding: 22px 18px; border-radius: 22px; grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; font-size: 13px; }
  .footer__contacts { text-align: center; font-size: 13px; gap: 7px; }

  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 100;
    display: grid;
    grid-template-columns: 1.12fr 1fr .78fr;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
    background: rgba(255,250,242,.94);
    border: 1px solid rgba(201,21,23,.18);
    box-shadow: 0 18px 50px rgba(48,28,22,.2);
    backdrop-filter: blur(18px);
  }
  .mobile-contact-bar a { min-height: 44px; display: grid; place-items: center; border-radius: 14px; font-size: 13px; font-weight: 850; color: var(--red); background: rgba(201,21,23,.06); border: 1px solid rgba(201,21,23,.14); }
  .mobile-contact-bar a:first-child { color: #fff; background: var(--red); box-shadow: 0 12px 28px rgba(201,21,23,.23); }
}

@media (max-width: 380px) {
  h1 { font-size: 34px; }
  .brand__title { font-size: 13px; }
  .mobile-contact-bar { grid-template-columns: 1fr 1fr 1fr; }
  .mobile-contact-bar a { font-size: 12px; }
  .choreo-card { flex-basis: 90%; }
  .choreo-card img { height: 340px; }
}

@media (min-width: 768px) and (max-width: 1160px) {
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-card { flex-basis: calc(50% - 9px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* v11: адреса по метро, карта сразу видна, мобильный hero с текстом поверх фото */
.hall-list { columns: 1; display: grid; gap: 12px; }
.hall-cluster { margin: 0; padding: 0; overflow: hidden; border-radius: 24px; background: rgba(255,250,242,.78); border: 1px solid var(--line); box-shadow: 0 14px 42px rgba(66,35,26,.06); }
.hall-cluster.is-hidden { display: none; }
.hall-cluster summary { list-style: none; display: flex; gap: 12px; align-items: center; padding: 18px 20px; color: var(--ink); }
.hall-cluster summary::-webkit-details-marker { display: none; }
.hall-cluster summary span:last-child { display: grid; gap: 4px; }
.hall-cluster summary strong { font-size: 18px; line-height: 1.2; color: var(--red-dark); }
.hall-cluster summary small { font-size: 13px; font-weight: 750; color: var(--muted); }
.pin-dot { flex: 0 0 auto; display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; color: #fff; background: var(--red); box-shadow: 0 10px 25px rgba(201,21,23,.20); }
.hall-cluster p { margin: 0; padding: 0 20px 12px 66px; font-size: 14.5px; line-height: 1.55; color: rgba(27,23,21,.70); }
.hall-addresses { margin: 0; padding: 0 20px 20px 66px; list-style: none; display: grid; gap: 8px; }
.hall-addresses li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: start; color: var(--red); }
.hall-addresses span { line-height: 1.55; opacity: .82; }
.hall-addresses a { color: rgba(27,23,21,.82); font-weight: 650; text-decoration: none; border-bottom: 1px solid rgba(201,21,23,.20); }
.hall-addresses a:hover { color: var(--red); }
.hall-more { width: 100%; margin-top: 6px; justify-content: center; }
.hall-more.is-hidden { display: none; }
.map-card--visible { position: sticky; top: 100px; }
.map-card--visible iframe { width: 100%; min-height: 620px; height: min(620px, 72vh); display: block; }
.map-actions--below { justify-content: center; padding: 16px 18px 18px; border-top: 1px solid rgba(201,21,23,.10); background: rgba(255,250,242,.76); }

@media (max-width: 767px) {
  .hero {
    position: relative;
    min-height: calc(100svh - 110px);
    padding: 115px 0 28px;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
  }
  .hero__visual {
    position: absolute;
    inset: 22px 0 22px;
    z-index: 1;
    border-radius: 28px;
  }
  .hero__visual img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
  }
  .hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,12,9,.08), rgba(20,12,9,.08) 35%, rgba(20,12,9,.36) 100%);
    pointer-events: none;
  }
  .hero__copy {
    position: relative;
    z-index: 4;
    margin: 0 12px;
    padding: 22px 18px 18px;
    border-radius: 24px;
    background: rgba(255,250,242,.80);
    border: 1px solid rgba(255,250,242,.72);
    box-shadow: 0 20px 60px rgba(35,18,12,.18);
    backdrop-filter: blur(16px);
  }
  .hero__copy .eyebrow { color: var(--red); }
  .hero__copy h1 { font-size: clamp(31px, 9.3vw, 43px); margin-bottom: 12px; }
  .hero__text { font-size: 15.5px; line-height: 1.55; color: rgba(27,23,21,.82); }
  .hero__actions { margin: 18px 0 12px; }
  .hero__meta { gap: 6px; }
  .hero__meta span { background: rgba(255,250,242,.66); }
  .word-pattern { display: none; }
  .visual-note, .heart-sticker { display: none; }
  .red-line--hero { z-index: 2; opacity: .34; bottom: 16%; }

  .hall-list { max-height: none; overflow: visible; padding-right: 0; gap: 10px; }
  .hall-cluster { border-radius: 20px; }
  .hall-cluster summary { padding: 15px 15px; gap: 10px; }
  .hall-cluster summary strong { font-size: 15.5px; }
  .hall-cluster summary small { font-size: 12px; }
  .pin-dot { width: 30px; height: 30px; font-size: 13px; }
  .hall-cluster p { padding: 0 15px 10px 55px; font-size: 13.5px; }
  .hall-addresses { padding: 0 15px 16px 55px; gap: 7px; }
  .hall-addresses a { font-size: 13.5px; line-height: 1.45; }
  .map-card--visible iframe { min-height: 360px; height: 360px; }
  .map-actions--below { padding: 12px; }
}

/* v12: аккуратные адресные плитки, капелька-геометка, прозрачнее hero на мобилке и форма в Telegram */
.hall-layout { grid-template-columns: 1fr .82fr; }
.hall-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: start; }
.hall-cluster {
  min-height: 190px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,250,242,.88), rgba(255,250,242,.68));
}
.hall-cluster[open] { min-height: 0; }
.hall-cluster summary { padding: 18px; min-height: 92px; }
.hall-cluster p { padding: 0 18px 12px 18px; }
.hall-addresses { padding: 0 16px 18px; gap: 10px; }
.hall-addresses li {
  min-height: 58px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.44);
  border: 1px solid rgba(201,21,23,.10);
}
.hall-addresses a { border-bottom: 0; }
.pin-dot,
.address-pin {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(201,21,23,.22);
  opacity: 1;
}
.pin-dot { width: 28px; height: 28px; margin-left: 2px; }
.pin-dot::after,
.address-pin::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.pin-dot::after { width: 9px; height: 9px; }
.map-card--visible { overflow: hidden; }
.map-card--visible iframe { border-radius: 0; }

.tg-request-form {
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,250,242,.76);
  border: 1px solid rgba(201,21,23,.16);
  box-shadow: 0 18px 50px rgba(66,35,26,.08);
  position: relative;
  z-index: 10;
}
.form-head { margin-bottom: 18px; }
.form-head .mini-heart { margin-bottom: 6px; }
.form-head h3 { font-size: 26px; color: var(--red-dark); margin-bottom: 8px; }
.form-head p { font-size: 14.5px; line-height: 1.55; margin: 0; color: rgba(27,23,21,.68); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.tg-request-form label { display: grid; gap: 7px; font-weight: 850; color: var(--ink); font-size: 13.5px; }
.tg-request-form input,
.tg-request-form select,
.tg-request-form textarea {
  width: 100%;
  border: 1px solid rgba(201,21,23,.18);
  border-radius: 14px;
  padding: 12px 13px;
  background: rgba(255,255,255,.62);
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  outline: none;
}
.tg-request-form textarea { resize: vertical; min-height: 92px; }
.tg-request-form input:focus,
.tg-request-form select:focus,
.tg-request-form textarea:focus { border-color: rgba(201,21,23,.46); box-shadow: 0 0 0 4px rgba(201,21,23,.08); }
.form-wide { grid-column: 1 / -1; }
.request-submit { width: 100%; margin-top: 16px; }
.form-note,
.form-status { margin: 10px 0 0; font-size: 12.8px; line-height: 1.45; color: var(--muted); }
.form-status:not(:empty) { color: var(--red-dark); font-weight: 800; }

@media (max-width: 1160px) {
  .hall-layout { grid-template-columns: 1fr; }
  .hall-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .hero__copy {
    background: rgba(255,250,242,.62);
    border-color: rgba(255,250,242,.52);
    box-shadow: 0 18px 48px rgba(35,18,12,.15);
    backdrop-filter: blur(10px);
  }
  .hero__visual::after { background: linear-gradient(180deg, rgba(20,12,9,.04), rgba(20,12,9,.08) 36%, rgba(20,12,9,.30) 100%); }
  .hall-list { grid-template-columns: 1fr; }
  .hall-cluster { min-height: 0; border-radius: 18px; }
  .hall-cluster summary { min-height: 78px; padding: 14px; }
  .pin-dot { width: 24px; height: 24px; }
  .pin-dot::after { width: 8px; height: 8px; }
  .hall-cluster p { padding: 0 14px 10px; }
  .hall-addresses { padding: 0 12px 14px; }
  .hall-addresses li { min-height: 54px; padding: 10px; border-radius: 14px; }
  .address-pin { width: 18px; height: 18px; }
  .address-pin::after { width: 6px; height: 6px; }
  .form-grid { grid-template-columns: 1fr; }
  .tg-request-form { margin-top: 22px; padding: 18px; border-radius: 22px; }
  .form-head h3 { font-size: 22px; }
  .tg-request-form input,
  .tg-request-form select,
  .tg-request-form textarea { border-radius: 13px; padding: 11px 12px; }
}

/* v13 refinements: real logo, cleaner request form, tighter address cards */
.brand--logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand__logo {
  display: block;
  width: clamp(178px, 16vw, 248px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
}
.brand--footer .brand__logo {
  width: clamp(176px, 18vw, 240px);
  max-height: 64px;
}
.site-header .brand--logo { margin-left: -3px; }
.form-head .mini-heart { display: none; }
.form-head h3 { margin-bottom: 10px; }
.form-note { display: none; }
.tg-request-form {
  background: linear-gradient(145deg, rgba(255,250,242,.88), rgba(255,246,239,.72));
}
.hall-cluster {
  border-radius: 18px;
}
.hall-cluster summary {
  min-height: auto;
  padding: 14px 16px;
  align-items: center;
}
.hall-cluster p {
  display: none;
}
.hall-addresses {
  padding: 0 12px 12px;
  gap: 8px;
}
.hall-addresses li {
  min-height: 0;
  padding: 10px 11px;
  border-radius: 12px;
  align-items: center;
}
.hall-addresses a {
  font-size: 14px;
  line-height: 1.32;
}
.address-pin {
  width: 17px;
  height: 17px;
}
.address-pin::after {
  width: 5px;
  height: 5px;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto auto;
  }
  .brand__logo {
    width: clamp(166px, 35vw, 220px);
  }
}

@media (max-width: 767px) {
  .site-header {
    width: min(100% - 22px, 520px);
    margin-top: 10px;
    padding: 9px 10px 9px 12px;
  }
  .brand__logo {
    width: min(176px, 52vw);
    max-height: 48px;
  }
  .hero__copy {
    background: rgba(255,250,242,.48);
    border-color: rgba(255,250,242,.40);
    backdrop-filter: blur(8px);
  }
  .hero__copy h1 {
    font-size: clamp(30px, 8.8vw, 40px);
  }
  .hero__text {
    font-size: 15.5px;
    line-height: 1.55;
  }
  .hall-cluster {
    border-radius: 16px;
  }
  .hall-cluster summary {
    min-height: auto;
    padding: 12px;
  }
  .hall-cluster summary strong {
    font-size: 15px;
  }
  .hall-cluster summary small {
    font-size: 11.5px;
  }
  .hall-addresses {
    padding: 0 10px 10px;
    gap: 7px;
  }
  .hall-addresses li {
    min-height: 0;
    padding: 9px 10px;
    border-radius: 12px;
    grid-template-columns: 16px 1fr;
  }
  .hall-addresses a {
    font-size: 13.2px;
    line-height: 1.28;
  }
  .address-pin {
    width: 15px;
    height: 15px;
  }
  .tg-request-form {
    padding: 16px;
  }
  .form-head h3 {
    font-size: 21px;
  }
  .form-head p {
    font-size: 13.8px;
  }
  .request-submit {
    min-height: 52px;
  }
  .cta h2 {
    font-size: clamp(28px, 8.4vw, 40px);
  }
  .footer .brand__logo {
    width: min(190px, 62vw);
  }
}
