:root {
  --bg: #0e0e10;
  --bg-soft: #16161a;
  --bg-card: #1c1c21;
  --line: #2b2b32;
  --text: #f2f2f0;
  --muted: #a3a3a8;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, .12);
  --radius: 4px;
  --maxw: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", "Iowan Old Style", serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}

::selection { background: var(--accent); color: #16161a; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 104px 0; }

.section-label {
  display: block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4.4vw, 44px);
  margin-bottom: 20px;
}

.section-head { max-width: 640px; margin-bottom: 56px; }

.section-head p {
  color: var(--muted);
  margin: 0;
}

/* ---------- Шапка / навигация ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 16, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(14, 14, 16, .92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.nav__brand {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: .04em;
}

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 15px;
}

.nav__links a {
  color: var(--muted);
  position: relative;
  transition: color .2s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after,
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  padding: 8px 14px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 78% 20%, rgba(201, 162, 39, .10), transparent 70%),
    radial-gradient(50% 60% at 10% 90%, rgba(255, 255, 255, .05), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 86px);
  margin-bottom: 18px;
}

.hero__sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text);
  margin: 0 0 20px;
  letter-spacing: .02em;
}

.hero__text {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero__meta div strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.hero__meta div span {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__frame {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #26262c 0%, #1a1a1e 55%, #232329 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 24px;
}

.hero__frame:has(img) {
  overflow: hidden;
  padding: 0;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #14140f;
  font: inherit;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}

.btn:hover {
  background: #dcb333;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .05);
  border-color: var(--muted);
}

/* ---------- О фотографе ---------- */
.about { background: var(--bg-soft); }

.about__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.about__photo {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #26262c, #1a1a1e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__text p {
  color: var(--muted);
  margin: 0 0 20px;
}

.about__text p:first-of-type {
  color: var(--text);
  font-size: 19px;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
}

.about__list li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  font-size: 16px;
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* ---------- Портфолио ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 10px 22px;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.filter:hover { color: var(--text); border-color: var(--muted); }

.filter.is-active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.subfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -20px 0 36px;
  padding-left: 14px;
}

.subfilters[hidden] { display: none; }

.subfilter {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 7px 16px;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.subfilter:hover { color: var(--text); border-color: var(--muted); }

.subfilter.is-active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ---------- Проводник портфолио ---------- */
.portfolio--page {
  min-height: calc(100svh - 72px);
  padding-top: 72px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin: -20px 0 36px;
}

.crumbs__back {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 7px 16px;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.crumbs__back:hover {
  color: var(--text);
  border-color: var(--muted);
}

.crumbs__back[hidden] { display: none; }

.crumbs__path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.crumbs__path button {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.crumbs__path button:hover { color: var(--accent); }

.crumbs__path [aria-current="page"] {
  color: var(--text);
  cursor: default;
}

.folders {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.folders[hidden] { display: none; }

.folder {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 320px;
  max-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(140deg, #262630, #191920);
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.folder:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.folder[hidden] { display: none; }

.folder[data-stub] { cursor: default; }

.folder[data-stub]:hover {
  border-color: var(--line);
  transform: none;
}

.folders:has(.folder[data-go="conference"]:not([hidden])) .folder {
  aspect-ratio: 16 / 10;
}

.folder__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.folder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 16, .85) 0%, transparent 60%);
}

.folder__caption {
  position: relative;
  z-index: 1;
}

.folder__caption strong {
  display: block;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 22px;
}

.folder__caption span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery[hidden] { display: none; }

.folders:not([hidden]) + .gallery:not([hidden]) { margin-top: 20px; }

#explorer:has(.folder[data-go="moskino"]:not([hidden])) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}

#explorer:has(.folder[data-go="moskino"]:not([hidden])) .folders,
#explorer:has(.folder[data-go="moskino"]:not([hidden])) .gallery {
  display: contents;
}

#explorer:has(.folder[data-go="moskino"]:not([hidden])) .folders:not([hidden]) + .gallery:not([hidden]) {
  margin-top: 0;
}

#explorer:has(.folder[data-go="moskino"]:not([hidden])) .folder,
#explorer:has(.folder[data-go="moskino"]:not([hidden])) .shot:not([hidden]) {
  aspect-ratio: 4 / 3;
  margin: 0;
  min-width: 0;
}

#explorer:has(.folder[data-go="moskino"]:not([hidden])) .folder__caption strong,
#explorer:has(.folder[data-go="moskino"]:not([hidden])) .shot__caption strong {
  font-size: 19px;
}

.shot {
  position: relative;
  margin: 0;
  max-width: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(140deg, #262630, #191920);
  aspect-ratio: 4 / 3;
  max-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.shot:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.shot__caption {
  position: relative;
  z-index: 1;
}

.shot__caption strong {
  display: block;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 19px;
}

.shot__caption span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 16, .85) 0%, transparent 60%);
}

.shot[hidden] { display: none; }

/* ---------- Видео-карточки в галерее ---------- */
.shot__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
  background: #101014;
}

.shot__open {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.shot__play {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(14, 14, 16, .55);
  display: grid;
  place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

/* Треугольник «play» */
.shot__play::before {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.shot--video:hover .shot__play,
.shot__open:focus-visible .shot__play {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

.shot--video:hover .shot__play::before,
.shot__open:focus-visible .shot__play::before { border-left-color: #16161a; }

/* ---------- Просмотр видео ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 72px 20px 20px;
  background: rgba(8, 8, 10, .9);
}

.lightbox[hidden] { display: none; }

.lightbox__dialog {
  position: relative;
  width: min(1040px, 100%);
}

.lightbox__video {
  width: 100%;
  max-height: 76vh;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #000;
}

.lightbox__caption {
  margin: 14px 0 0;
  font-family: Georgia, serif;
  font-size: 18px;
}

.lightbox__close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.lightbox__close:hover {
  color: var(--accent);
  border-color: var(--accent);
}

body.is-locked { overflow: hidden; }

/* ---------- Услуги ---------- */
.services { background: var(--bg-soft); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px;
}

/* Пять карточек: 3 сверху и 2 снизу, без пустых мест в ряду */
@media (min-width: 1000px) {
  .services__grid { grid-template-columns: repeat(6, 1fr); }
  .service:nth-child(-n+3) { grid-column: span 2; }
  .service:nth-child(n+4) { grid-column: span 3; }
}

.service {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.service:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service__num {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 20px;
}

.service h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.service p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 24px;
}

.service ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--muted);
}

.service ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.service ul li:last-child { border-bottom: none; }

.service__price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 19px;
  color: var(--text);
}

/* ---------- Контакты ---------- */
.contacts__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.contact-list li { border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }

.contact-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}

.contact-list a:hover {
  color: var(--accent);
  padding-left: 12px;
}

.contact-list span {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.contact-list strong {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 19px;
}

.contacts__note {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form__hint {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 28px;
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 13px 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field input::placeholder,
.field textarea::placeholder { color: #6c6c73; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #121215;
}

.form .btn { width: 100%; }

.form__status + .btn { margin-top: 20px; }

.form__status {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--accent);
  min-height: 20px;
}

/* ---------- Подвал ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: var(--bg-soft);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.footer__links { display: flex; gap: 24px; }
.footer__links a:hover { color: var(--accent); }

/* ---------- Видео-фоны разделов ---------- */
section { position: relative; overflow: hidden; }

/* Контент поднимаем над видео */
section > .wrap { position: relative; z-index: 1; }

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg);
}

.section-bg__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(14, 14, 16, .88), rgba(14, 14, 16, .78));
}

/* Вертикальный кадр — только для узких экранов */
.section-bg__media.video-mobile { display: none; }

@media (max-width: 768px) {
  .section-bg__media.video-desktop { display: none; }
  .section-bg__media.video-mobile { display: block; }
}

/* ---------- Появление при скролле ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Адаптив ---------- */
@media (max-width: 900px) {
  section { padding: 80px 0; }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
  }

  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 0; font-size: 17px; }
  .nav__links a::after { display: none; }
  .nav__toggle { display: block; }

  .hero__inner,
  .about__grid,
  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__frame { max-width: 340px; }
  .about__photo { max-width: 400px; }
  .hero { min-height: 0; padding: 64px 0 72px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .about__list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .folders { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .form { padding: 28px 20px; }
  .hero__meta { gap: 20px 32px; }
  .btn { width: 100%; }
  .hero__actions { gap: 12px; }
}

@media (max-width: 767px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-portfolio .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-portfolio .folders,
  .page-portfolio .gallery,
  .page-portfolio #explorer {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: stretch;
    justify-items: stretch;
  }

  .page-portfolio .folder,
  .page-portfolio .shot {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
    justify-self: stretch;
  }

  .hero__inner {
    gap: 0;
  }

  .hero__inner > div:not(.hero__frame) {
    display: contents;
  }

  .hero__eyebrow { order: 1; }
  .hero h1 { order: 2; }
  .hero__frame {
    order: 3;
    max-width: 220px;
    width: 100%;
    margin: 8px auto 28px;
  }
  .hero__sub { order: 4; }
  .hero__text { order: 5; }
  .hero__actions { order: 6; }
  .hero__meta { order: 7; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
