/* ═══════ Локальные шрифты (без внешних CDN — доступность из любых сетей) ═══════ */
@font-face { font-family: "Oswald"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/oswald-v57-cyrillic_latin-500.woff2") format("woff2"); }
@font-face { font-family: "Oswald"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/oswald-v57-cyrillic_latin-600.woff2") format("woff2"); }
@font-face { font-family: "Oswald"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/oswald-v57-cyrillic_latin-700.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/playfair-display-v40-cyrillic_latin-500.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 500; font-display: swap; src: url("assets/fonts/playfair-display-v40-cyrillic_latin-500italic.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 600; font-display: swap; src: url("assets/fonts/playfair-display-v40-cyrillic_latin-600italic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/inter-v20-cyrillic_latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/inter-v20-cyrillic_latin-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/inter-v20-cyrillic_latin-600.woff2") format("woff2"); }

:root {
  --paper: #f2eee7;
  --ink: #16130f;
  --ink-soft: #55504a;
  --brick: #d14b32;
  --brick-deep: #a93a24;
  --dark: #14120f;
  --pink: #f2d7cb;
  --green: #2e4a3c;
  --line: rgba(22, 19, 15, .14);
  --oswald: "Oswald", "Inter Tight", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.index-label {
  font-family: var(--oswald); font-weight: 600; font-size: 13px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--brick); display: block; margin-bottom: 22px;
}
.index-label--light { color: #e8836d; }
.giant {
  font-family: var(--oswald); font-weight: 700; text-transform: uppercase;
  font-size: clamp(52px, 7.5vw, 110px); line-height: .95; letter-spacing: .005em;
}
.giant--light { color: var(--paper); }

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 34px; mix-blend-mode: normal;
  transition: background .35s, padding .35s, box-shadow .35s;
}
.nav.scrolled { background: rgba(242, 238, 231, .95); backdrop-filter: blur(14px); padding: 12px 34px; box-shadow: 0 1px 0 var(--line); }
.nav__logo {
  font-family: var(--oswald); font-weight: 700; font-size: 16px; line-height: 1.05;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none; color: #fff;
  transition: color .35s;
}
.nav.scrolled .nav__logo { color: var(--ink); }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-family: var(--oswald); font-weight: 600; font-size: 13.5px; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,.9); transition: color .2s;
}
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__links a:hover { color: var(--brick); }
.nav__burger { display: none; }

/* ═══════ HERO ═══════ */
.hero { position: relative; height: 100svh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: -6%;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.8s ease;
  will-change: transform, opacity;
}
.hero__slide.is-active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.1) translate(-1.2%, -1.5%); }
}
.hero__veil { position: absolute; inset: 0; background: radial-gradient(ellipse at center 62%, rgba(10,8,6,.16) 0%, rgba(10,8,6,.5) 100%); }
.hero__center { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 20px; }
.hero__phrase {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 3vw, 40px); line-height: 1.25; margin-bottom: 3vh;
  opacity: 0; animation: riseIn 1.2s ease .3s forwards;
}
.hero__title {
  font-family: var(--oswald); font-weight: 700; text-transform: uppercase;
  font-size: clamp(64px, 12.5vw, 210px); line-height: .92; letter-spacing: .01em;
  opacity: 0; animation: riseIn 1.2s ease .7s forwards;
  text-shadow: 0 10px 60px rgba(0,0,0,.35);
}
.hero__place {
  font-family: var(--oswald); font-weight: 500; font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: .3em; text-transform: uppercase; margin-top: 4vh; color: rgba(255,255,255,.85);
  opacity: 0; animation: riseIn 1.2s ease 1.1s forwards;
}
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: #fff; text-decoration: none; font-size: 22px; animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ═══════ TICKER ═══════ */
.ticker { background: var(--ink); color: var(--paper); overflow: hidden; padding: 16px 0; }
.ticker__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.ticker__track span {
  font-family: var(--oswald); font-weight: 600; font-size: 17px; letter-spacing: .22em;
  text-transform: uppercase; white-space: nowrap; padding-right: 18px;
}
.ticker__track i { font-style: normal; color: var(--brick); padding-right: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════ STATEMENT ═══════ */
.statement { padding: 20vh 8vw; text-align: center; }
.statement__text {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 4.6vw, 66px); line-height: 1.22; max-width: 1150px; margin: 0 auto;
}
.statement__text em { font-style: italic; color: var(--brick); }
.statement__sign {
  margin-top: 4vh; font-family: var(--oswald); font-weight: 500; font-size: 13px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink-soft);
}

/* ═══════ WHAT: типографический аккордеон ═══════ */
.what { padding: 10vh 0 14vh; }
.what__head { padding: 0 5vw 7vh; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.what__head .index-label { grid-column: 1 / -1; margin-bottom: 0; }
.what__hint { max-width: 300px; font-size: 14.5px; color: var(--ink-soft); padding-bottom: 10px; }
.what__rows { border-top: 1px solid var(--line); }
.wrow { border-bottom: 1px solid var(--line); }
.wrow__bar {
  display: grid; grid-template-columns: 72px 1fr auto 60px; align-items: center; gap: 18px;
  width: 100%; padding: 26px 5vw; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--oswald); transition: background .25s, color .25s;
}
.wrow__num { font-weight: 500; font-size: 15px; letter-spacing: .1em; color: var(--ink-soft); }
.wrow__name {
  font-weight: 700; text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(30px, 4.6vw, 64px); line-height: 1;
}
.wrow__count { font-weight: 500; font-size: 14px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.wrow__arrow { font-size: 26px; justify-self: end; transition: transform .3s; }
.wrow__bar:hover { background: var(--brick); }
.wrow__bar:hover .wrow__name, .wrow__bar:hover .wrow__num, .wrow__bar:hover .wrow__count, .wrow__bar:hover .wrow__arrow { color: #fff; }
.wrow.open .wrow__arrow { transform: rotate(45deg); }
.wrow__panel { max-height: 0; overflow: hidden; transition: max-height .55s ease; }
.wrow__inner {
  padding: 14px 5vw 48px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px;
}
.fcard {
  font-family: var(--sans); text-align: left; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 22px 20px; cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  opacity: 0; transform: translateY(16px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .3s ease;
}
.wrow.open .fcard { opacity: 1; transform: none; transition-delay: calc(var(--i) * 45ms); }
.fcard:hover {
  transform: translateY(-5px) !important; border-color: var(--brick);
  box-shadow: 0 16px 40px rgba(169, 58, 36, .16); transition-delay: 0s;
}
.fcard__icon { color: var(--brick); margin-bottom: 16px; }
.fcard__icon svg { width: 42px; height: 42px; display: block; }
.fcard__title { font-family: var(--oswald); font-weight: 600; font-size: 19px; text-transform: uppercase; letter-spacing: .02em; line-height: 1.12; }
.fcard__sub { font-size: 13px; color: var(--ink-soft); margin-top: 7px; line-height: 1.45; }
.fcard__place { font-family: var(--oswald); font-weight: 500; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #a39d93; margin-top: 14px; }
.fcard__more { font-size: 12.5px; font-weight: 600; color: var(--brick); margin-top: 10px; opacity: 0; transition: opacity .2s; }
.fcard:hover .fcard__more { opacity: 1; }

/* ═══════ FULL-BLEED ═══════ */
.bleed { position: relative; height: 92vh; overflow: hidden; }
.bleed__img {
  position: absolute; inset: -12% 0; background-size: cover; background-position: center;
  will-change: transform;
}
.bleed__caption { position: absolute; left: 5vw; bottom: 6vh; color: #fff; z-index: 2; }
.bleed__serif { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3.4vw, 48px); text-shadow: 0 4px 30px rgba(0,0,0,.5); }
.bleed__note { font-family: var(--oswald); font-weight: 500; font-size: 13px; letter-spacing: .24em; text-transform: uppercase; margin-top: 10px; color: rgba(255,255,255,.85); }
.bleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), transparent 30%, transparent 60%, rgba(0,0,0,.45)); }
.bleed__caption { z-index: 3; }

/* ═══════ PLAN ═══════ */
.plansec { background: var(--green); color: var(--paper); display: grid; grid-template-columns: 1fr 1.35fr; gap: 4vw; padding: 12vh 5vw; align-items: center; }
.plansec__text { margin-top: 3vh; font-size: 16.5px; color: rgba(242,238,231,.85); max-width: 420px; }
.plansec__text--accent { color: #f0b7a4; font-weight: 500; }
.plansec__stats { display: flex; gap: 34px; margin-top: 5vh; flex-wrap: wrap; }
.plansec__stats b { font-family: var(--oswald); font-weight: 700; font-size: 32px; display: block; }
.plansec__stats span { font-size: 12.5px; color: rgba(242,238,231,.65); letter-spacing: .04em; }
.plan { position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.plan img { width: 100%; display: block; }
.plan__markers { position: absolute; inset: 0; }
.marker {
  position: absolute; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brick); color: #fff; border: 2.5px solid #fff;
  font-family: var(--oswald); font-weight: 600; font-size: 12.5px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .15s, background .15s;
  box-shadow: 0 3px 10px rgba(0,0,0,.35); padding: 0;
}
.marker:hover { transform: translate(-50%, -50%) scale(1.28); background: var(--brick-deep); z-index: 5; }
.marker::after {
  content: attr(data-name);
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-family: var(--sans); font-weight: 500;
  font-size: 12px; padding: 5px 10px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s;
}
.marker:hover::after { opacity: 1; }
.marker--land { background: #6f8f7c; }

/* ═══════ NUMBERS ═══════ */
.numbers { background: var(--brick); color: #fff; display: grid; grid-template-columns: repeat(4, 1fr); }
.num { padding: 7vh 3vw; text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.num:last-child { border-right: 0; }
.num b { font-family: var(--oswald); font-weight: 700; font-size: clamp(44px, 6vw, 92px); line-height: 1; display: block; }
.num span { font-family: var(--oswald); font-weight: 500; font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; display: block; margin-top: 12px; color: rgba(255,255,255,.85); }

/* ═══════ MUSEUM ═══════ */
.museum { background: var(--dark); color: var(--paper); padding: 14vh 0 10vh; }
.museum__head { padding: 0 5vw; max-width: 1200px; }
.museum__lead { margin-top: 4vh; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.6; color: rgba(242,238,231,.8); max-width: 640px; }
.halls-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding: 7vh 5vw 3vh;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.halls-scroll::-webkit-scrollbar { display: none; }
.hall {
  flex: 0 0 300px; scroll-snap-align: start;
  background: #201d18; border: 1px solid rgba(242,238,231,.1); border-radius: 12px; padding: 28px 24px;
  transition: transform .25s, border-color .25s;
}
.hall:hover { transform: translateY(-6px); border-color: var(--brick); }
.hall span { font-family: var(--oswald); font-weight: 600; font-size: 13px; letter-spacing: .26em; color: var(--brick); text-transform: uppercase; }
.hall h4 { font-family: var(--oswald); font-weight: 600; font-size: 21px; text-transform: uppercase; letter-spacing: .02em; color: #fff; margin: 14px 0 10px; line-height: 1.15; }
.hall p { font-size: 13.5px; color: rgba(242,238,231,.6); line-height: 1.55; }
.museum__axon { margin: 6vh 5vw 0; }
.museum__axon img { border-radius: 12px; width: 100%; }
.museum__axon figcaption { font-family: var(--oswald); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(242,238,231,.55); margin-top: 14px; }
.museum__strip { margin: 8vh 5vw 0; border-top: 1px solid rgba(242,238,231,.15); padding-top: 4vh; }
.museum__strip p { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 28px); color: rgba(242,238,231,.9); }
.museum__strip em { color: var(--brick); font-style: italic; }

/* ═══════ OBJECTS: ключевые объекты ═══════ */
.obj {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5vw;
  align-items: center; padding: 12vh 5vw; min-height: 78vh;
}
.obj--rev .obj__body { order: 2; }
.obj--rev .obj__media { order: 1; }
.obj--paper { background: var(--paper); }
.obj--tint { background: #e9e3d9; }
.obj--green { background: var(--green); color: var(--paper); }
.obj--ink { background: var(--dark); color: var(--paper); }
.obj--brick { background: var(--brick); color: #fff; }
.index-label--cream { color: rgba(255,255,255,.75); }
.obj__title {
  font-family: var(--oswald); font-weight: 700; text-transform: uppercase;
  font-size: clamp(42px, 5.6vw, 84px); line-height: .96; letter-spacing: .005em;
}
.obj--green .obj__title, .obj--ink .obj__title, .obj--brick .obj__title { color: #fff; }
.obj__lead { margin-top: 3vh; font-size: clamp(15.5px, 1.35vw, 18px); line-height: 1.6; max-width: 520px; color: var(--ink-soft); }
.obj--green .obj__lead, .obj--ink .obj__lead { color: rgba(242,238,231,.82); }
.obj--brick .obj__lead { color: rgba(255,255,255,.9); }
.obj__facts { display: flex; gap: 36px; margin-top: 4vh; flex-wrap: wrap; }
.obj__facts b { font-family: var(--oswald); font-weight: 700; font-size: clamp(30px, 3vw, 44px); display: block; line-height: 1; }
.obj__facts span { font-size: 12.5px; letter-spacing: .03em; display: block; margin-top: 6px; max-width: 150px; color: var(--ink-soft); }
.obj--green .obj__facts span, .obj--ink .obj__facts span { color: rgba(242,238,231,.65); }
.obj--brick .obj__facts span { color: rgba(255,255,255,.8); }
.obj__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 3.5vh; max-width: 540px; }
.obj__chips span {
  font-family: var(--oswald); font-weight: 500; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 14px; color: var(--ink-soft);
}
.obj__chips--dark span { border-color: rgba(242,238,231,.3); color: rgba(242,238,231,.8); }
.obj--brick .obj__chips span { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.85); }
.obj__more {
  margin-top: 4vh; display: inline-block; background: none; cursor: pointer;
  font-family: var(--oswald); font-weight: 600; font-size: 13.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brick); border: 0; border-bottom: 2px solid var(--brick); padding: 0 0 6px; transition: opacity .2s;
}
.obj__more:hover { opacity: .65; }
.obj--green .obj__more, .obj--ink .obj__more { color: #f0b7a4; border-color: #f0b7a4; }
.obj--brick .obj__more { color: #fff; border-color: #fff; }
.obj__media img { width: 100%; border-radius: 14px; }
.obj__media:not(.obj__media--plain) img { background: #fff; padding: clamp(18px, 2.5vw, 40px); border: 1px solid var(--line); }
.obj__media--plain img { box-shadow: 0 24px 70px rgba(0,0,0,.25); }

/* ═══════ PHASES: дорожная карта ═══════ */
.phases { background: var(--dark); color: var(--paper); padding: 14vh 0 10vh; }
.phases__head { padding: 0 5vw; max-width: 1200px; }
.phases__lead { margin-top: 4vh; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.6; color: rgba(242,238,231,.8); max-width: 640px; }
.phases__scroll {
  display: flex; gap: 18px; overflow-x: auto; padding: 7vh 5vw 2vh;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.phases__scroll::-webkit-scrollbar { display: none; }
.phase {
  flex: 0 0 min(560px, 86vw); scroll-snap-align: start;
  background: #201d18; border: 1px solid rgba(242,238,231,.1); border-radius: 14px;
  padding: 28px 26px 24px; transition: border-color .25s;
}
.phase:hover { border-color: var(--brick); }
.phase__year { font-family: var(--oswald); font-weight: 700; font-size: clamp(44px, 4vw, 64px); line-height: 1; color: #e0705a; }
.phase__name { font-family: var(--oswald); font-weight: 600; font-size: 17px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 8px 0 18px; }
.phase__img { background: #fff; border-radius: 10px; padding: 12px; margin-bottom: 18px; }
.phase__img img { width: 100%; }
.phase ul { margin: 0 0 0 18px; }
.phase li { font-size: 14px; color: rgba(242,238,231,.75); margin-bottom: 6px; line-height: 1.45; }
.phases__coda {
  padding: 5vh 5vw 0; font-family: var(--serif); font-size: clamp(20px, 2.4vw, 30px);
  color: rgba(242,238,231,.9); max-width: 900px;
}
.phases__coda em { font-style: italic; color: #e0705a; }
.phases__sign {
  padding: 2.5vh 5vw 0; font-family: var(--oswald); font-weight: 500; font-size: 12.5px;
  letter-spacing: .26em; text-transform: uppercase; color: rgba(242,238,231,.5);
}

/* ═══════ HERITAGE ═══════ */
.heritage { display: grid; grid-template-columns: 1fr 1fr; }
.heritage__block { padding: 9vh 5vw; display: flex; flex-direction: column; justify-content: center; }
.heritage__block--text p { margin-top: 3vh; font-size: 16.5px; color: var(--ink-soft); max-width: 460px; }
.heritage__block--img { background: #fff; align-items: center; }
.heritage__block--img img { max-height: 320px; object-fit: contain; }
.heritage__block--tint { background: var(--pink); }
.heritage__cap { font-family: var(--oswald); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 22px; text-align: center; }
.heritage__block--quote { background: var(--ink); color: var(--paper); }
.heritage__block--quote p { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 34px); line-height: 1.35; }

/* ═══════ FINAL ═══════ */
.final { position: relative; overflow: hidden; }
.final__img { position: absolute; inset: -8% 0; background-size: cover; background-position: center 30%; will-change: transform; }
.final::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,8,6,.35), rgba(10,8,6,.75) 85%); }
.final__content { position: relative; z-index: 2; width: 100%; padding: 14vh 5vw 7vh; color: #fff; }
.final__serif { font-family: var(--serif); font-style: italic; font-size: clamp(34px, 5vw, 72px); line-height: 1.15; }
.final__who { margin-top: 5vh; max-width: 720px; }
.final__who-label {
  font-family: var(--oswald); font-weight: 600; font-size: 13px; letter-spacing: .28em;
  text-transform: uppercase; color: #f0b7a4; margin-bottom: 16px;
}
.final__who p + p { margin-top: 14px; }
.final__who p:not(.final__who-label) { font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,.88); }
.cform-wrap { margin-top: 6vh; max-width: 620px; }
.cform { display: flex; flex-direction: column; gap: 12px; }
.cform__bot { display: none; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cform input[type="text"], .cform input[type="email"], .cform select, .cform textarea {
  font-family: var(--sans); font-size: 15px; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
  padding: 14px 16px; outline: none; transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none; width: 100%;
}
.cform select { cursor: pointer; }
.cform select option { color: var(--ink); }
.cform ::placeholder { color: rgba(255,255,255,.55); }
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: #f0b7a4; background: rgba(255,255,255,.12); }
.cform textarea { resize: vertical; min-height: 96px; }
.cform__foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cform__btn {
  font-family: var(--oswald); font-weight: 600; font-size: 14px; letter-spacing: .2em; text-transform: uppercase;
  background: var(--brick); color: #fff; border: 0; border-radius: 100px; padding: 15px 34px; cursor: pointer;
  transition: background .2s, transform .2s;
}
.cform__btn:hover { background: var(--brick-deep); transform: translateY(-2px); }
.cform__btn:disabled { opacity: .55; cursor: default; transform: none; }
.cform__status { font-size: 14px; color: #f0b7a4; }
.final__note { margin-top: 3vh; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }
.final__footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 7vh; padding-top: 3vh; border-top: 1px solid rgba(255,255,255,.25);
  font-family: var(--oswald); font-weight: 600; font-size: 13px; letter-spacing: .24em; text-transform: uppercase;
}

/* ═══════ MODAL ═══════ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15,12,9,.6); backdrop-filter: blur(4px); }
.modal__card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(620px, calc(100vw - 32px)); max-height: 86vh; overflow-y: auto;
  background: var(--paper); border-radius: 14px; padding: 44px 44px 36px;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
}
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 15px; color: var(--ink-soft);
}
.modal__close:hover { color: var(--brick-deep); border-color: var(--brick); }
.modal__group { font-family: var(--oswald); font-weight: 600; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--brick); margin-bottom: 12px; }
.modal__title { font-family: var(--oswald); font-weight: 700; font-size: 34px; text-transform: uppercase; letter-spacing: .01em; line-height: 1.05; margin-bottom: 10px; }
.modal__meta { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; }
.modal__img { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 18px; }
.modal__body p { font-size: 15px; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.6; }
.modal__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.modal__tags span {
  font-family: var(--oswald); font-weight: 500; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(209,75,50,.12); color: var(--brick-deep); border-radius: 100px; padding: 7px 13px;
}

/* ═══════ REVEAL ═══════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-active { animation: none; }
  .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 960px) {
  .plansec { grid-template-columns: 1fr; }
  .obj { grid-template-columns: 1fr; gap: 5vh; min-height: 0; padding: 9vh 5vw; }
  .obj--rev .obj__body { order: 1; }
  .obj--rev .obj__media { order: 2; }
  .heritage { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .num:nth-child(2) { border-right: 0; }
  .num { border-bottom: 1px solid rgba(255,255,255,.2); }
  .what__head { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(242,238,231,.98); padding: 20px 24px; gap: 16px; box-shadow: 0 14px 34px rgba(0,0,0,.15);
  }
  .nav__links.open a { color: var(--ink); font-size: 15px; }
  .nav__burger { display: flex; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; }
  .nav__burger span { width: 24px; height: 2px; background: #fff; transition: background .35s; }
  .nav.scrolled .nav__burger span { background: var(--ink); }
  .wrow__bar { grid-template-columns: 1fr auto; padding: 20px 20px; }
  .wrow__num, .wrow__count { display: none; }
  .wrow__inner { padding: 4px 20px 30px; }
  .statement { padding: 14vh 24px; }
  .bleed { height: 64vh; }
  .plansec { padding: 10vh 20px; }
  .museum__head, .museum__axon, .museum__strip { padding-left: 20px; padding-right: 20px; margin-left: 0; margin-right: 0; }
  .halls-scroll { padding: 5vh 20px 2vh; }
  .hall { flex-basis: 260px; }
  .heritage__block { padding: 7vh 24px; }
  .final__content { padding: 0 20px 6vh; }
  .modal__card { padding: 32px 24px 28px; }
}
