:root {
  --ink: #303238;
  --muted: #6c6e73;
  --cream: #f1f3f5;
  --paper: #fff;
  --green: #801020;
  --green-dark: #500914;
  --lime: #3b6da2;
  --orange: #3b6da2;
  --line: rgba(48, 50, 56, .14);
  --shadow: 0 24px 70px rgba(48, 50, 56, .14);
  --radius: 28px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 99; padding: 10px 16px; background: #fff; border-radius: 12px; }
.skip-link:focus { top: 20px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 14px; font-size: 12px; line-height: 1; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 27px; height: 2px; background: var(--orange); }
.eyebrow.light { color: rgba(255,255,255,.75); }
.display, h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(44px, 7vw, 86px); }
h2 { font-size: clamp(36px, 5vw, 62px); }
h3 { font-size: 26px; }
p { margin: 0 0 1em; }
.lead { max-width: 700px; font-size: clamp(18px, 2.2vw, 23px); line-height: 1.55; color: var(--muted); }
.section { padding: 100px 0; }
.section.alt { background: var(--cream); }
.section.dark { color: #fff; background: var(--green-dark); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-head .copy { max-width: 720px; }
.section-head p { max-width: 480px; margin: 0; color: var(--muted); }
.dark .section-head p { color: rgba(255,255,255,.68); }

.topbar { background: var(--green-dark); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-group { display: flex; gap: 24px; }
.topbar a:hover { color: #fff; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,253,248,.93); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.header-inner { min-height: 84px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 225px; }
.brand-mark { width: 58px; height: 42px; display: grid; place-items: center; flex: 0 0 58px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-family: Georgia, serif; font-size: 20px; font-weight: 600; }
.brand-text small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.main-nav { display: flex; justify-content: center; gap: 6px; }
.main-nav a { padding: 10px 13px; border-radius: 999px; font-size: 14px; font-weight: 650; }
.main-nav a:hover, .main-nav a.active { color: #fff; background: var(--green); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; border-radius: 50%; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--ink); transition: .25s; }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.btn { position: relative; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; overflow: hidden; padding: 12px 20px; border: 0; border-radius: 999px; font-weight: 750; cursor: pointer; transition: transform .25s, background .25s, box-shadow .25s; }
.btn::after { content: ""; position: absolute; inset: -40% auto -40% -50%; width: 36%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent); transform: skewX(-18deg); transition: left .55s ease; }
.btn:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 16px 34px rgba(48,50,56,.18); }
.btn:hover::after { left: 120%; }
.btn-primary { color: #fff; background: var(--green); box-shadow: 0 12px 30px rgba(128,16,32,.2); }
.btn-primary:hover { background: var(--green-dark); }
.btn-light { color: var(--green-dark); background: #fff; }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-orange { color: #fff; background: var(--orange); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 750; color: var(--green); }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.hero { position: relative; min-height: 690px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--green-dark); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { height: calc(100% + 50px); object-fit: cover; object-position: center; transform: translate3d(0,var(--parallax-y,0),0) scale(1.035); will-change: transform; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(80,9,20,.94) 0%, rgba(80,9,20,.72) 34%, rgba(59,109,162,.24) 68%, rgba(59,109,162,.08) 100%), linear-gradient(0deg, rgba(24,45,70,.62), transparent 50%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0 72px; }
.hero-copy { max-width: 690px; }
.hero-copy > *, .hero-note { opacity: 0; transform: translateY(24px); }
.is-ready .hero-copy > *, .is-ready .hero-note { animation: content-rise .82s cubic-bezier(.2,.72,.2,1) forwards; }
.is-ready .hero-copy > *:nth-child(2) { animation-delay: .08s; }
.is-ready .hero-copy > *:nth-child(3) { animation-delay: .16s; }
.is-ready .hero-copy > *:nth-child(4) { animation-delay: .24s; }
.is-ready .hero-note:nth-child(1) { animation-delay: .32s; }
.is-ready .hero-note:nth-child(2) { animation-delay: .4s; }
.is-ready .hero-note:nth-child(3) { animation-delay: .48s; }
.hero h1 { max-width: 760px; }
.hero .lead { max-width: 630px; margin: 24px 0 32px; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 72px; }
.hero-note { min-width: 175px; padding: 17px 20px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.09); border-radius: 18px; backdrop-filter: blur(10px); }
.hero-note strong { display: block; font-size: 18px; }
.hero-note span { color: rgba(255,255,255,.67); font-size: 13px; }

.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.intro-copy h2 { margin-bottom: 24px; }
.intro-copy .lead { margin-bottom: 28px; }
.intro-image { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.intro-image img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.floating-card { position: absolute; right: 22px; bottom: 22px; max-width: 270px; padding: 22px; color: #fff; background: var(--green); border-radius: 20px 20px 6px 20px; animation: gentle-float 4.8s ease-in-out infinite; }
.floating-card strong { display: block; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.floating-card span { color: rgba(255,255,255,.7); font-size: 13px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
.stat { padding: 20px; background: var(--cream); border-radius: 18px; }
.stat strong { display: block; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.stat span { color: var(--muted); font-size: 13px; }

.category-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.category-card { position: relative; min-height: 340px; grid-column: span 4; display: flex; flex-direction: column; justify-content: end; overflow: hidden; color: #fff; border-radius: 24px; background: var(--green-dark); }
.category-card.wide { grid-column: span 6; }
.category-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .6s; }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(80,9,20,.94) 0%, rgba(80,9,20,.56) 34%, rgba(59,109,162,.10) 76%, rgba(59,109,162,.02) 100%); }
.category-card-content { position: relative; z-index: 2; padding: 28px; }
.category-card h3 { margin: 5px 0 8px; }
.category-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.category-card:hover img { transform: scale(1.045); }
.card-index { color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .12em; }

.department-slider { position: relative; min-height: 560px; overflow: hidden; color: #fff; background: var(--green-dark); border-radius: 30px; box-shadow: var(--shadow); isolation: isolate; touch-action: pan-y; }
.department-slides, .department-slide { position: absolute; inset: 0; }
.department-slide { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .9s ease, visibility .9s; }
.department-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 2; }
.department-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08) translateX(1.5%); transition: transform 6.4s cubic-bezier(.18,.72,.18,1); }
.department-slide.is-active img { transform: scale(1.015) translateX(0); }
.department-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(80,9,20,.96) 0%, rgba(80,9,20,.82) 29%, rgba(80,9,20,.38) 57%, rgba(59,109,162,.08) 100%), linear-gradient(0deg, rgba(20,28,39,.58), transparent 58%); }
.department-slide-content { position: absolute; z-index: 2; left: clamp(28px,5vw,72px); bottom: clamp(68px,9vw,100px); max-width: 500px; opacity: 0; transform: translateX(34px); transition: opacity .55s .18s ease, transform .72s .16s cubic-bezier(.2,.72,.2,1); }
.department-slide.is-active .department-slide-content { opacity: 1; transform: translateX(0); }
.department-count { color: rgba(255,255,255,.76); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.department-slide h3 { margin: 12px 0 14px; color: #fff; font-size: clamp(44px,6vw,74px); line-height: .96; }
.department-slide p { max-width: 450px; margin: 0 0 26px; color: rgba(255,255,255,.82); font-size: 18px; }
.department-dots { position: absolute; z-index: 5; left: clamp(28px,5vw,72px); bottom: 30px; display: flex; gap: 9px; }
.department-dot { width: 30px; height: 4px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.34); cursor: pointer; transition: width .3s, background .3s; }
.department-dot.is-active { width: 54px; background: #fff; }
.department-arrows { position: absolute; z-index: 5; right: 28px; bottom: 24px; display: flex; gap: 8px; }
.department-arrows button { width: 48px; height: 48px; padding: 0; color: #fff; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: rgba(80,9,20,.42); backdrop-filter: blur(10px); font-size: 22px; cursor: pointer; transition: background .25s, transform .25s; }
.department-arrows button:hover { background: var(--green); transform: translateY(-2px); }
.department-progress { position: absolute; z-index: 6; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.16); }
.department-progress span { display: block; width: 0; height: 100%; background: var(--lime); }
.department-progress span.is-running { animation: department-progress 5.2s linear forwards; }
@keyframes department-progress { to { width: 100%; } }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit { padding: 28px; border: 1px solid var(--line); border-radius: 22px; }
.benefit-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; color: var(--green); background: var(--cream); border-radius: 15px; font-size: 21px; }
.benefit h3 { margin-bottom: 10px; font: 700 18px "Segoe UI", Arial, sans-serif; letter-spacing: -.02em; }
.benefit p { margin: 0; color: var(--muted); font-size: 14px; }

.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.promo { position: relative; min-height: 330px; display: grid; align-content: end; padding: 36px; color: #fff; border-radius: var(--radius); overflow: hidden; background: var(--green-dark); }
.promo.orange { background: var(--green); color: #fff; }
.promo.green { background: var(--lime); color: #fff; }
.promo-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.promo-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(80,9,20,.94) 0%, rgba(80,9,20,.70) 48%, rgba(59,109,162,.20) 100%), linear-gradient(0deg, rgba(24,45,70,.56), transparent 65%); }
.promo-photo.blue::after { background: linear-gradient(90deg, rgba(35,67,103,.94) 0%, rgba(59,109,162,.72) 48%, rgba(80,9,20,.26) 100%), linear-gradient(0deg, rgba(80,9,20,.50), transparent 66%); }
.promo-photo > *:not(img) { position: relative; z-index: 2; }
.promo-photo:hover > img { transform: scale(1.04); }
.promo-tag { width: max-content; margin-bottom: 60px; padding: 8px 12px; border: 1px solid currentColor; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.promo h3 { max-width: 460px; font-size: 38px; }
.promo p { max-width: 470px; margin: 14px 0 0; opacity: .8; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card { display: grid; overflow: hidden; color: var(--ink); border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.news-card img { height: 225px; object-fit: cover; transition: transform .55s; }
.news-card-body { padding: 24px; }
.news-card time { color: var(--orange); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { margin: 10px 0 14px; font: 700 20px "Segoe UI", Arial, sans-serif; line-height: 1.25; letter-spacing: -.02em; }
.news-card p { color: var(--muted); font-size: 14px; }
.news-card .text-link { display: inline-block; margin-top: 18px; }
.news-card:hover { transform: translateY(-5px); border-color: rgba(128,16,32,.26); box-shadow: 0 20px 42px rgba(80,9,20,.12); }
.news-card:hover img { transform: scale(1.04); }

.news-article-hero { position: relative; min-height: 620px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--green-dark); }
.news-article-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-article-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(80,9,20,.97) 0%, rgba(80,9,20,.78) 40%, rgba(59,109,162,.2) 100%), linear-gradient(0deg, rgba(28,37,54,.62), transparent 58%); }
.news-article-hero-content { position: relative; z-index: 2; padding: 110px 0 72px; }
.news-article-hero h1 { max-width: 980px; }
.news-article-hero .lead { max-width: 720px; margin-top: 22px; color: rgba(255,255,255,.84); }
.news-article-hero .breadcrumbs { margin-bottom: 38px; }
.news-article-hero .breadcrumbs a { color: rgba(255,255,255,.72); }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 76px; align-items: start; }
.article-content { max-width: 820px; font-size: 18px; line-height: 1.75; }
.article-content p { margin: 0 0 24px; }
.article-content .article-lead { margin-bottom: 36px; color: var(--green); font: 500 clamp(25px,3vw,35px)/1.3 Georgia,"Times New Roman",serif; }
.article-content strong { color: var(--ink); }
.article-video { margin-top: 42px; overflow: hidden; border-radius: 24px; background: var(--green-dark); box-shadow: var(--shadow); }
.article-video video { display: block; width: 100%; max-height: 540px; background: #160308; object-fit: contain; }
.article-video p { margin: 0; padding: 18px 22px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.55; }
.article-aside { position: sticky; top: 140px; overflow: hidden; padding-bottom: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 18px 42px rgba(48,50,56,.1); }
.article-aside img { width: 100%; height: 225px; object-fit: cover; }
.article-aside > *:not(img) { margin-left: 28px; margin-right: 28px; }
.article-aside .eyebrow { margin-top: 26px; }
.article-aside h3 { margin-bottom: 12px; font: 700 23px "Segoe UI",Arial,sans-serif; }
.article-aside p { margin-bottom: 22px; color: var(--muted); }

.cta { position: relative; overflow: hidden; color: #fff; background: var(--green-dark); border-radius: 32px; }
.cta::before { content: ""; position: absolute; width: 360px; height: 360px; right: -80px; top: -150px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.03), 0 0 0 120px rgba(255,255,255,.025); }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 54px; }
.cta h2 { max-width: 760px; font-size: clamp(36px, 5vw, 58px); }
.cta p { max-width: 650px; margin: 16px 0 0; color: rgba(255,255,255,.68); }

.page-hero { position: relative; min-height: 520px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--green-dark); }
.page-hero img { position: absolute; inset: -25px 0; height: calc(100% + 50px); object-fit: cover; transform: translate3d(0,var(--parallax-y,0),0) scale(1.035); will-change: transform; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(80,9,20,.92) 0%, rgba(80,9,20,.55) 48%, rgba(59,109,162,.22) 100%), linear-gradient(0deg, rgba(29,52,80,.68), transparent 62%); }
.page-hero-content { position: relative; z-index: 2; padding: 100px 0 64px; }
.page-hero-content > *, .news-article-hero-content > *, .detail-hero-content > * { opacity: 0; transform: translateY(22px); }
.is-ready .page-hero-content > *, .is-ready .news-article-hero-content > *, .is-ready .detail-hero-content > * { animation: content-rise .75s cubic-bezier(.2,.72,.2,1) forwards; }
.is-ready .page-hero-content > *:nth-child(2), .is-ready .news-article-hero-content > *:nth-child(2), .is-ready .detail-hero-content > *:nth-child(2) { animation-delay: .08s; }
.is-ready .page-hero-content > *:nth-child(3), .is-ready .news-article-hero-content > *:nth-child(3), .is-ready .detail-hero-content > *:nth-child(3) { animation-delay: .16s; }
.is-ready .page-hero-content > *:nth-child(4), .is-ready .news-article-hero-content > *:nth-child(4), .is-ready .detail-hero-content > *:nth-child(4) { animation-delay: .24s; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: rgba(255,255,255,.68); font-size: 13px; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; }
.page-hero h1 { max-width: 880px; }
.page-hero .lead { max-width: 700px; margin: 20px 0 0; color: rgba(255,255,255,.78); }

.catalog-toolbar { display: flex; gap: 14px; margin-bottom: 36px; }
.search-field { flex: 1; min-height: 54px; padding: 0 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; outline: none; }
.search-field:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(128,16,32,.09); }
.filter-select { min-width: 220px; padding: 0 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-item { display: grid; min-height: 260px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.catalog-item-image { position: relative; height: 170px; overflow: hidden; }
.catalog-item-image img { height: 100%; object-fit: cover; transition: transform .5s; }
.catalog-item-body { padding: 24px; }
.catalog-item h3 { margin-bottom: 12px; font: 700 21px "Segoe UI", Arial, sans-serif; letter-spacing: -.02em; }
.catalog-item ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.catalog-item li { padding: 5px 9px; color: var(--muted); background: var(--cream); border-radius: 999px; font-size: 12px; }
.catalog-item:hover img { transform: scale(1.05); }
.catalog-item[hidden] { display: none; }
.empty-state { display: none; grid-column: 1 / -1; padding: 55px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: 22px; }
.empty-state.visible { display: block; }

.subcat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.subcat { position: relative; min-height: 220px; display: flex; align-items: end; overflow: hidden; color: #fff; border-radius: 20px; background: var(--green-dark); box-shadow: 0 15px 34px rgba(48,50,56,.12); transition: transform .25s, box-shadow .25s; }
.subcat > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.subcat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(80,9,20,.94) 0%, rgba(80,9,20,.62) 40%, rgba(59,109,162,.12) 100%); }
.subcat-content { position: relative; z-index: 2; width: 100%; padding: 24px; }
.subcat .num { display: block; margin-bottom: 28px; color: #c8dcf0; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.subcat strong { display: block; font-size: 18px; }
.subcat small { color: rgba(255,255,255,.72); }
.subcat-link { display: inline-block; margin-top: 10px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; opacity: 0; transform: translateY(7px); transition: opacity .25s, transform .25s; }
.subcat:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(80,9,20,.18); }
.subcat:hover > img { transform: scale(1.045); }
.subcat:hover .subcat-link, .subcat:focus-visible .subcat-link { opacity: 1; transform: translateY(0); }

.detail-hero { position: relative; min-height: 610px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--green-dark); }
.detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(80,9,20,.97) 0%, rgba(80,9,20,.78) 34%, rgba(80,9,20,.26) 67%, rgba(59,109,162,.12) 100%), linear-gradient(0deg, rgba(29,52,80,.58), transparent 58%); }
.detail-hero-content { position: relative; z-index: 2; padding: 110px 0 72px; }
.detail-hero h1 { max-width: 850px; }
.detail-hero .lead { max-width: 690px; margin: 22px 0 30px; color: rgba(255,255,255,.84); }
.detail-hero .breadcrumbs { margin-bottom: 38px; }
.detail-hero .breadcrumbs a { color: rgba(255,255,255,.72); }
.detail-hero .breadcrumbs span { color: #fff; }

.detail-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: start; }
.detail-copy { position: sticky; top: 150px; }
.detail-copy h2 { margin-bottom: 22px; }
.detail-copy > p:last-child { color: var(--muted); }
.sales-grid { display: grid; gap: 14px; }
.sales-card { display: grid; grid-template-columns: 54px 1fr; gap: 5px 18px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.sales-card > span { grid-row: 1 / 3; width: 54px; height: 54px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 16px; font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.sales-card strong { align-self: end; font-size: 19px; }
.sales-card p { color: var(--muted); font-size: 14px; }

.detail-gallery { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 260px 260px; gap: 16px; }
.detail-photo { position: relative; width: 100%; padding: 0; overflow: hidden; border: 0; border-radius: 24px; background: var(--green-dark); cursor: zoom-in; }
.detail-photo:first-child { grid-row: 1 / 3; }
.detail-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s, filter .4s; }
.detail-photo::after { content: "+"; position: absolute; right: 18px; bottom: 18px; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(80,9,20,.6); backdrop-filter: blur(8px); font-size: 24px; }
.detail-photo:hover img { transform: scale(1.035); filter: saturate(1.08); }

.video-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 68px; align-items: center; }
.video-copy h2 { margin-bottom: 20px; }
.video-copy .lead { color: var(--muted); }
.department-video { overflow: hidden; border-radius: 28px; background: #140307; box-shadow: 0 24px 55px rgba(48,50,56,.18); }
.department-video video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #140307; }
.detail-cta { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 48px 54px; color: #fff; border-radius: 30px; background: linear-gradient(125deg, #500914, #801020 58%, #3b6da2); }
.detail-cta h2 { max-width: 760px; margin-bottom: 12px; }
.detail-cta p { max-width: 720px; color: rgba(255,255,255,.76); }
.empty-detail { min-height: 60vh; display: grid; align-content: center; justify-items: start; }

.gallery-dialog { width: min(1100px, calc(100% - 32px)); max-width: none; padding: 0; overflow: visible; border: 0; border-radius: 24px; background: transparent; }
.gallery-dialog::backdrop { background: rgba(25,5,10,.88); backdrop-filter: blur(8px); }
.gallery-dialog img { display: block; width: 100%; max-height: 84vh; object-fit: contain; border-radius: 24px; }
.gallery-dialog button { position: absolute; z-index: 2; right: -12px; top: -12px; width: 44px; height: 44px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: var(--green); font-size: 25px; cursor: pointer; }

.seo-section { overflow: hidden; }
.seo-article { display: grid; gap: 42px; }
.seo-heading { max-width: 940px; }
.seo-heading h2 { margin-bottom: 22px; }
.seo-heading .lead { max-width: 850px; color: var(--muted); }
.seo-story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.seo-story { position: relative; min-height: 260px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; }
.seo-story-main { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; min-height: 538px; color: #fff; border: 0; background: linear-gradient(145deg, #500914, #861329 64%, #3b6da2); }
.seo-story::after { content: ""; position: absolute; right: -70px; top: -70px; width: 190px; height: 190px; border: 1px solid rgba(59,109,162,.16); border-radius: 50%; }
.seo-story-main::after { width: 290px; height: 290px; border-color: rgba(255,255,255,.13); }
.seo-story > span { position: relative; z-index: 1; display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; margin-bottom: 34px; color: #fff; background: var(--green); border-radius: 14px; font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.seo-story-main > span { background: rgba(255,255,255,.15); }
.seo-story h3 { position: relative; z-index: 1; margin-bottom: 15px; font-size: clamp(25px,2.7vw,38px); }
.seo-story p { position: relative; z-index: 1; color: var(--muted); }
.seo-story p + p { margin-top: 13px; }
.seo-story-main p { color: rgba(255,255,255,.78); }
.tour-seo-grid { grid-template-columns: repeat(3, 1fr); }
.tour-seo-grid .seo-story { min-height: 330px; }
.seo-facts { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.seo-facts > div { padding: 30px; }
.seo-facts > div + div { border-left: 1px solid var(--line); }
.seo-facts strong { display: block; margin-bottom: 8px; color: var(--green); font: 700 clamp(30px,3vw,46px) Georgia, serif; }
.seo-facts span { color: var(--muted); font-size: 14px; }
.seo-visit { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 46px 50px; overflow: hidden; color: #fff; border-radius: 28px; background: linear-gradient(118deg, #500914, #801020 60%, #3b6da2); }
.seo-visit::after { content: ""; position: absolute; right: 8%; top: -130px; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.seo-visit > * { position: relative; z-index: 1; }
.seo-visit h3 { margin-bottom: 10px; font-size: clamp(30px,3.6vw,48px); }
.seo-visit p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.76); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-media { min-height: 520px; overflow: hidden; border-radius: var(--radius); }
.split-media img { height: 100%; min-height: 520px; object-fit: cover; }
.split-copy h2 { margin-bottom: 24px; }
.split-copy p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; }
.check-list li::before { content: "✓"; flex: 0 0 26px; height: 26px; display: grid; place-items: center; color: var(--green); background: var(--cream); border-radius: 50%; font-weight: 800; }

.info-band { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; }
.info-band article { padding: 30px; }
.info-band article + article { border-left: 1px solid var(--line); }
.info-band span { color: var(--muted); font-size: 13px; }
.info-band strong { display: block; margin-top: 6px; font-size: 20px; }

.rent-layout, .contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.contact-layout { align-items: stretch; }
.form-card { padding: 34px; background: var(--cream); border-radius: var(--radius); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid transparent; border-radius: 14px; background: #fff; outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(128,16,32,.08); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: 12px; }
.form-message { display: none; margin: 18px 0 0; padding: 14px 16px; color: #fff; background: var(--green); border-radius: 12px; }
.form-message.visible { display: block; }
.contact-cards { display: grid; gap: 12px; margin-top: 30px; }
.contact-card { display: flex; align-items: center; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; }
.contact-card-icon { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 48px; color: #fff; background: var(--green); border-radius: 15px; }
.contact-card small { display: block; color: var(--muted); }
.contact-card strong { font-size: 18px; }
.map-card { position: relative; min-height: 0; overflow: hidden; background: var(--green-dark); border: 1px solid var(--line); border-radius: var(--radius); }
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.tour-stage { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; border-radius: 30px; }
.tour-stage img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.tour-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(80,9,20,.58), rgba(59,109,162,.38)); }
.tour-launch { position: relative; z-index: 2; width: 120px; height: 120px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.14); border-radius: 50%; backdrop-filter: blur(8px); font-weight: 750; }
.tour-launch::after { content: "360°"; font-size: 26px; }

.vacancy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vacancy { padding: 28px; border: 1px solid var(--line); border-radius: 20px; }
.vacancy-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.vacancy h3 { font: 700 21px "Segoe UI", Arial, sans-serif; }
.vacancy .tag { height: max-content; padding: 6px 9px; color: var(--green); background: var(--cream); border-radius: 999px; font-size: 11px; font-weight: 800; }
.vacancy p { color: var(--muted); font-size: 14px; }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.72); background: #30070e; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1fr; gap: 40px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: rgba(255,255,255,.55); }
.footer-brand p { margin-top: 22px; color: rgba(255,255,255,.58); font-size: 14px; }
.footer-col h4 { margin: 0 0 18px; color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

/* Плавное движение фирменных фонов */
.section.dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(122deg, #41060f 0%, #650b19 43%, #5c0b18 66%, #263f60 100%);
}
.section.dark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -45%;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 34%, rgba(157,30,55,.68) 0 10%, transparent 34%),
    radial-gradient(circle at 72% 58%, rgba(59,109,162,.38) 0 8%, transparent 32%),
    radial-gradient(circle at 48% 82%, rgba(111,13,31,.82) 0 12%, transparent 38%);
  transform: translate3d(-4%,-2%,0) rotate(-3deg) scale(1.03);
  transform-origin: center;
  animation: brand-aurora 20s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  will-change: transform;
}
.section.dark::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(920px, 78vw);
  aspect-ratio: 1;
  right: -18vw;
  top: -42%;
  pointer-events: none;
  opacity: .74;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 21%, rgba(255,255,255,.075) 21.5% 31%, transparent 31.5% 42%, rgba(255,255,255,.055) 42.5% 52%, transparent 52.5% 63%, rgba(112,158,207,.11) 63.5% 64.5%, transparent 65%),
    linear-gradient(90deg, transparent 49.6%, rgba(255,255,255,.055) 50%, transparent 50.4%),
    linear-gradient(0deg, transparent 49.6%, rgba(255,255,255,.045) 50%, transparent 50.4%);
  animation: geometry-sweep 10s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  will-change: transform;
}
.section.dark > * { position: relative; z-index: 1; }

.cta,
.detail-cta,
.seo-story-main,
.seo-visit {
  background-image:
    radial-gradient(circle at 14% 20%, rgba(164,32,58,.8) 0, transparent 31%),
    radial-gradient(circle at 88% 76%, rgba(59,109,162,.48) 0, transparent 34%),
    linear-gradient(125deg, #430610 0%, #801020 55%, #2d527c 100%);
  background-size: 145% 145%, 150% 150%, 180% 180%;
  animation: brand-gradient-drift 18s ease-in-out infinite alternate;
}
.detail-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.detail-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  right: -95px;
  top: -170px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255,255,255,.035), 0 0 0 116px rgba(255,255,255,.02);
  animation: brand-ring-float 13s ease-in-out infinite alternate;
}
.detail-cta > * { position: relative; z-index: 1; }
.cta::before,
.detail-cta::before,
.seo-story-main::after,
.seo-visit::after {
  z-index: 0;
  width: 520px;
  height: 520px;
  right: -125px;
  top: -225px;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  pointer-events: none;
  opacity: .8;
  background:
    radial-gradient(circle, transparent 0 20%, rgba(255,255,255,.13) 20.5% 30%, transparent 30.5% 40%, rgba(255,255,255,.075) 40.5% 50%, transparent 50.5% 60%, rgba(121,168,216,.13) 60.5% 61.5%, transparent 62%),
    conic-gradient(from 35deg, transparent 0 15%, rgba(255,255,255,.06) 16% 28%, transparent 29% 58%, rgba(107,154,204,.09) 59% 72%, transparent 73%);
  animation: geometry-orbit 9s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  will-change: transform;
}
.cta::before { right: -80px; top: -245px; }
.seo-story-main::after { right: -150px; top: -180px; }
.seo-visit::after { right: 3%; top: -210px; }
.seo-story-main { animation-delay: -4s; }
.seo-visit { animation-delay: -9s; }

.topbar,
.site-footer {
  background-image: linear-gradient(118deg, #30070e 0%, #590a16 42%, #3d1020 68%, #243d5b 100%);
  background-size: 220% 220%;
  animation: brand-gradient-drift 26s ease-in-out infinite alternate;
}
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation-delay: -10s;
}
.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 720px;
  aspect-ratio: 1;
  right: -240px;
  bottom: -390px;
  pointer-events: none;
  border-radius: 50%;
  opacity: .58;
  background: repeating-radial-gradient(circle, transparent 0 58px, rgba(255,255,255,.07) 59px 62px, transparent 63px 105px);
  animation: geometry-orbit 12s ease-in-out infinite alternate-reverse;
  will-change: transform;
}
.site-footer > * { position: relative; z-index: 1; }

.hero::after,
.page-hero::after,
.news-article-hero::after,
.detail-hero::after,
.category-card::after,
.subcat::after,
.promo-photo::after,
.department-slide::after,
.tour-stage::after {
  background-size: 175% 175%, 145% 145%;
  background-position: 0% 50%, 50% 100%;
  animation: brand-overlay-flow 17s ease-in-out infinite alternate;
  will-change: background-position;
}
.category-card:nth-child(3n+2)::after,
.subcat:nth-child(3n+2)::after,
.promo-photo:nth-child(even)::after { animation-delay: -6s; animation-direction: alternate-reverse; }
.category-card:nth-child(3n)::after,
.subcat:nth-child(3n)::after { animation-delay: -11s; }

.hero::before,
.page-hero::before,
.news-article-hero::before,
.detail-hero::before,
.category-card::before,
.subcat::before,
.promo-photo::before,
.department-slide::before,
.tour-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 590px;
  aspect-ratio: 1;
  right: -230px;
  top: -260px;
  pointer-events: none;
  border-radius: 50%;
  opacity: .42;
  background:
    repeating-radial-gradient(circle, transparent 0 48px, rgba(255,255,255,.12) 49px 52px, transparent 53px 92px),
    conic-gradient(from 20deg, transparent 0 22%, rgba(107,157,211,.12) 23% 36%, transparent 37% 70%, rgba(255,255,255,.07) 71% 82%, transparent 83%);
  mix-blend-mode: screen;
  animation: geometry-orbit 8.5s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  will-change: transform;
}
.hero::before,
.page-hero::before,
.news-article-hero::before,
.detail-hero::before {
  width: min(900px, 74vw);
  right: -18vw;
  top: -44%;
  opacity: .34;
  animation-duration: 11s;
}
.category-card:nth-child(3n+2)::before,
.subcat:nth-child(3n+2)::before,
.promo-photo:nth-child(even)::before { animation-delay: -4s; animation-direction: alternate-reverse; }
.category-card:nth-child(3n)::before,
.subcat:nth-child(3n)::before { animation-delay: -7s; }

.reveal { opacity: 0; transform: translateY(28px) scale(.985); transition: opacity .75s var(--reveal-delay,0ms), transform .85s var(--reveal-delay,0ms) cubic-bezier(.2,.72,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes content-rise { to { opacity: 1; transform: none; } }
@keyframes gentle-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(-.4deg); } }
@keyframes brand-aurora {
  0% { transform: translate3d(-5%,-3%,0) rotate(-4deg) scale(1.02); }
  48% { transform: translate3d(2%,2%,0) rotate(1deg) scale(1.09); }
  100% { transform: translate3d(5%,-1%,0) rotate(4deg) scale(1.04); }
}
@keyframes brand-gradient-drift {
  0% { background-position: 0% 28%, 100% 72%, 0% 50%; }
  50% { background-position: 42% 62%, 58% 38%, 55% 50%; }
  100% { background-position: 100% 72%, 0% 28%, 100% 50%; }
}
@keyframes brand-overlay-flow {
  0% { background-position: 0% 50%, 50% 100%; }
  52% { background-position: 45% 48%, 62% 42%; }
  100% { background-position: 100% 50%, 35% 0%; }
}
@keyframes brand-ring-float {
  0% { transform: translate3d(-12px,10px,0) scale(.96); opacity: .72; }
  100% { transform: translate3d(18px,-14px,0) scale(1.08); opacity: 1; }
}
@keyframes geometry-sweep {
  0% { transform: translate3d(-11%,-7%,0) rotate(-11deg) scale(.82); }
  48% { transform: translate3d(1%,5%,0) rotate(1deg) scale(1.03); }
  100% { transform: translate3d(14%,-3%,0) rotate(13deg) scale(1.2); }
}
@keyframes geometry-orbit {
  0% { transform: translate3d(-58px,34px,0) rotate(-12deg) scale(.78); }
  52% { transform: translate3d(8px,-16px,0) rotate(3deg) scale(1.03); }
  100% { transform: translate3d(72px,-48px,0) rotate(18deg) scale(1.24); }
}

@media (hover:hover) {
  .benefit, .sales-card, .vacancy, .contact-card { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
  .benefit:hover, .sales-card:hover, .vacancy:hover, .contact-card:hover { transform: translateY(-6px); border-color: rgba(128,16,32,.22); box-shadow: 0 18px 38px rgba(48,50,56,.11); }
  .benefit:hover .benefit-icon { transform: rotate(-8deg) scale(1.08); }
  .benefit-icon { transition: transform .3s ease; }
}

@media (max-width: 1060px) {
  .main-nav { position: fixed; inset: 121px 0 auto; height: calc(100vh - 121px); display: grid; align-content: start; justify-content: stretch; gap: 4px; padding: 30px 20px; background: var(--paper); transform: translateX(100%); transition: transform .3s; }
  .nav-open .main-nav { transform: none; }
  .main-nav a { padding: 16px; border-radius: 14px; font-size: 18px; }
  .menu-toggle { display: block; }
  .header-actions .btn { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .intro-grid, .split, .rent-layout, .contact-layout { gap: 44px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar-group:last-child { display: none; }
  .topbar-inner { justify-content: center; }
  .header-inner { min-height: 74px; }
  .main-nav { inset: 110px 0 auto; height: calc(100vh - 110px); }
  .section { padding: 76px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 74px; }
  .hero-notes { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; }
  .intro-grid, .split, .rent-layout, .contact-layout, .detail-intro, .video-layout, .article-layout { grid-template-columns: 1fr; }
  .seo-story-grid, .tour-seo-grid { grid-template-columns: 1fr; }
  .seo-story-main { grid-row: auto; min-height: 410px; }
  .seo-visit { align-items: flex-start; flex-direction: column; }
  .detail-copy { position: static; }
  .article-aside { position: static; }
  .detail-gallery { grid-template-rows: 220px 220px; }
  .detail-cta { align-items: flex-start; flex-direction: column; }
  .map-card { min-height: 440px; }
  .department-slider { min-height: 520px; }
  .intro-image, .split-media, .split-media img { min-height: 400px; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
  .category-card, .category-card.wide { grid-column: span 6; }
  .benefit-grid, .promo-grid, .news-grid, .catalog-grid, .subcat-grid, .vacancy-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; padding: 38px; }
  .page-hero { min-height: 480px; }
  .info-band { grid-template-columns: 1fr; }
  .info-band article + article { border-left: 0; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .brand-text small { display: none; }
  .brand { min-width: 0; }
  .brand-text strong { font-size: 18px; }
  .hero h1 { font-size: 46px; }
  .hero-actions .btn { width: 100%; }
  .hero-notes { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .category-card, .category-card.wide { grid-column: 1 / -1; }
  .department-slider { min-height: 500px; border-radius: 22px; }
  .department-slide::after { background: linear-gradient(0deg, rgba(80,9,20,.97) 0%, rgba(80,9,20,.72) 54%, rgba(80,9,20,.12) 100%); }
  .department-slide-content { left: 24px; right: 24px; bottom: 82px; }
  .department-slide h3 { font-size: 43px; }
  .department-slide p { font-size: 15px; }
  .department-dots { left: 24px; bottom: 30px; }
  .department-dot { width: 20px; }
  .department-dot.is-active { width: 38px; }
  .department-arrows { right: 18px; top: 18px; bottom: auto; }
  .department-arrows button { width: 42px; height: 42px; }
  .detail-hero { min-height: 650px; }
  .news-article-hero { min-height: 660px; }
  .news-article-hero-content { padding: 88px 0 54px; }
  .article-content { font-size: 16px; }
  .detail-hero-content { padding: 88px 0 54px; }
  .detail-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 250px); }
  .detail-photo:first-child { grid-row: auto; }
  .sales-card { grid-template-columns: 46px 1fr; padding: 20px; }
  .sales-card > span { width: 46px; height: 46px; border-radius: 14px; }
  .detail-cta { padding: 34px 28px; }
  .seo-article { gap: 28px; }
  .seo-story, .tour-seo-grid .seo-story { min-height: 0; padding: 28px; }
  .seo-story-main { min-height: 420px; }
  .seo-facts { grid-template-columns: 1fr; }
  .seo-facts > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .seo-visit { padding: 34px 28px; }
  .seo-visit .btn { width: 100%; }
  .benefit-grid, .promo-grid, .news-grid, .catalog-grid, .subcat-grid, .vacancy-grid { grid-template-columns: 1fr; }
  .promo { min-height: 300px; padding: 28px; }
  .promo h3 { font-size: 31px; }
  .catalog-toolbar { display: grid; }
  .filter-select { min-height: 54px; width: 100%; }
  .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-copy > *, .hero-note, .page-hero-content > *, .news-article-hero-content > *, .detail-hero-content > * { opacity: 1; transform: none; }
  .hero-media img, .page-hero img { transform: none; }
  .department-progress { display: none; }
}
