:root {
  --paper: #f4f0e8;
  --paper-2: #ebe5da;
  --paper-3: #faf8f4;
  --ink: #1d2622;
  --ink-soft: #53605a;
  --forest: #23312c;
  --forest-2: #31433b;
  --sage: #9cad9f;
  --bronze: #b38f59;
  --bronze-light: #d5bc8e;
  --line: rgba(29, 38, 34, .14);
  --line-dark: rgba(244, 240, 232, .18);
  --shadow: 0 28px 80px rgba(29, 38, 34, .12);
  --radius: 28px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--bronze-light); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

:where(a,button,input,select,textarea):focus-visible {
  outline: 3px solid rgba(179,143,89,.72);
  outline-offset: 3px;
}

.wrap {
  width: min(1240px, calc(100% - 2 * clamp(20px, 5vw, 64px)));
  margin-inline: auto;
}

.section { padding-block: clamp(78px, 10vw, 142px); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Cinematic image rail */
.cinema {
  position: relative;
  height: clamp(340px, 47vw, 680px);
  overflow: hidden;
  background: #17201c;
  color: white;
  isolation: isolate;
}
.cinema-film,
.cinema-frame,
.cinema-shade {
  position: absolute;
  inset: 0;
}
.cinema-frame {
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1500ms ease, transform 8200ms ease;
}
.cinema-frame.is-active {
  opacity: 1;
  transform: scale(1.065);
  z-index: 1;
}
.cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--position, center);
  filter: saturate(.88) contrast(1.01) brightness(.86);
}
.cinema-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(20,29,25,.72) 0%, rgba(20,29,25,.30) 48%, rgba(20,29,25,.50) 100%),
    linear-gradient(180deg, rgba(15,22,19,.08) 20%, rgba(15,22,19,.68) 100%);
}
.cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(244,240,232,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,240,232,.22) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
}
.cinema-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(28px, 4vw, 52px);
}
.cinema-kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
}
.cinema-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.cinema-line p {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4.2vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.cinema-line > span {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.28);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  background: rgba(20,29,25,.22);
  backdrop-filter: blur(12px);
}
.progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 28px;
}
.progress span {
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.26);
}
.progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bronze-light);
  transform: scaleX(0);
  transform-origin: left;
}
.progress span.is-active i { animation: frameProgress 6.8s linear forwards; }
@keyframes frameProgress { to { transform: scaleX(1); } }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,240,232,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.04em;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.04rem; letter-spacing: -.01em; }
.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.nav a {
  padding: 9px 12px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: .84rem;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: rgba(35,49,44,.07); color: var(--ink); }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}
.menu-button,
.mobile-nav { display: none; }

/* Hero */
.hero { background: var(--paper); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
}
.hero-copy h1,
.section-head h2,
.gallery-head h2,
.location-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero-copy h1 { max-width: 790px; font-size: clamp(3rem, 6.6vw, 6.7rem); }
.hero-lead {
  max-width: 66ch;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}
.hero-lead strong { color: var(--ink); font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 750;
  font-size: .86rem;
  cursor: pointer;
  transition: transform .16s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--paper); }
.button-primary:hover { background: var(--forest-2); }
.button-secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button-secondary:hover { border-color: rgba(29,38,34,.35); background: rgba(255,255,255,.36); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.hero-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.brief-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.brief-topline {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,240,232,.72);
}
.status { display: inline-flex; align-items: center; gap: 7px; color: #d8e7da; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #9ac5a1; box-shadow: 0 0 14px rgba(154,197,161,.78); }
.brief-body { padding: clamp(28px, 4vw, 42px); }
.brief-label {
  margin: 0 0 10px;
  color: var(--bronze-light);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.brief-body h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.75rem, 2.8vw, 2.55rem); line-height: 1.02; font-weight: 400; letter-spacing: -.03em; }
.brief-list { margin: 28px 0 0; }
.brief-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line-dark);
}
.brief-list div:last-child { border-bottom: 1px solid var(--line-dark); }
.brief-list dt { color: rgba(244,240,232,.54); font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.brief-list dd { margin: 0; color: var(--paper); font-size: .9rem; }
.brief-link {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bronze-light);
  text-decoration: none;
  font-weight: 700;
}

/* Signal strip */
.signal-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.22); }
.signal-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.signal-grid div { min-height: 112px; display: flex; align-items: center; gap: 18px; padding: 18px 24px; border-left: 1px solid var(--line); }
.signal-grid div:last-child { border-right: 1px solid var(--line); }
.signal-grid b { color: var(--bronze); font-family: var(--mono); font-size: .68rem; }
.signal-grid span { font-family: var(--serif); font-size: 1.08rem; }

/* Stays */
.stays { background: var(--paper-3); }
.section-head { max-width: 860px; margin-bottom: clamp(44px, 6vw, 74px); }
.section-head h2,
.gallery-head h2,
.location-copy h2,
.contact-copy h2 { font-size: clamp(2.4rem, 5vw, 5.15rem); }
.section-head > p:last-child,
.gallery-head > p,
.location-copy > p,
.contact-copy > p {
  max-width: 64ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}
.ledger { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 0 clamp(40px,5vw,76px); }
.ledger li { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 30px 0 34px; border-top: 1px solid var(--line); }
.ledger-num { color: var(--bronze); font-family: var(--mono); font-size: .7rem; padding-top: 4px; }
.ledger h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: -.02em; }
.ledger p { margin: 0; color: var(--ink-soft); line-height: 1.66; }

/* Gallery */
.gallery-section { padding-block: clamp(78px, 10vw, 138px); background: var(--paper-2); }
.gallery-head { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; margin-bottom: 36px; }
.gallery-head > p { margin-bottom: 5px; font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(260px, 31vw); gap: 10px; }
.photo {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--forest);
}
.photo-wide { grid-column: span 8; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.2,1), filter .3s ease; }
.photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(20,29,25,.74) 100%); pointer-events: none; }
.photo:hover img { transform: scale(1.025); filter: saturate(1.03); }
.photo > span { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 16px; color: white; text-align: left; }
.photo b { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.photo small { max-width: 20ch; font-family: var(--mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.staging-note { margin: 18px 0 0; color: var(--ink-soft); font-size: .75rem; line-height: 1.55; }

/* Locations */
.locations { background: var(--forest); color: var(--paper); }
.location-grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(48px, 7vw, 106px); align-items: start; }
.location-copy .eyebrow { color: var(--bronze-light); }
.location-copy > p { color: rgba(244,240,232,.68); }
.text-link { display: inline-flex; gap: 14px; margin-top: 26px; color: var(--bronze-light); text-decoration: none; font-weight: 700; }
.location-cards { display: grid; gap: 12px; }
.location-card { padding: clamp(26px,3vw,36px); border: 1px solid var(--line-dark); border-radius: 22px; background: rgba(255,255,255,.035); }
.location-card > span { font-family: var(--mono); color: var(--bronze-light); font-size: .68rem; }
.location-card h3 { margin: 22px 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.location-card p { margin: 0; color: rgba(244,240,232,.66); line-height: 1.65; }
.location-card a { display: inline-block; margin-top: 20px; color: var(--paper); text-underline-offset: 5px; }

/* Contact */
.contact { background: var(--paper-3); }
.contact-grid { display: grid; grid-template-columns: .78fr 1fr; gap: clamp(48px,7vw,105px); align-items: start; }
.direct-contact { margin-top: 34px; display: grid; gap: 10px; }
.direct-contact a { display: grid; gap: 6px; padding: 18px 0; border-top: 1px solid var(--line); text-decoration: none; }
.direct-contact a:last-child { border-bottom: 1px solid var(--line); }
.direct-contact span { color: var(--bronze); font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; }
.direct-contact strong { font-weight: 650; overflow-wrap: anywhere; }
.inquiry-form { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.46); box-shadow: 0 26px 70px rgba(29,38,34,.08); }
.form-topline { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 20px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; }
.form-body { padding: clamp(22px,3vw,34px); display: grid; gap: 18px; }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.inquiry-form label { display: grid; gap: 8px; }
.inquiry-form label > span { color: var(--ink); font-family: var(--mono); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(29,38,34,.18);
  border-radius: 13px;
  background: rgba(250,248,244,.9);
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.inquiry-form input,
.inquiry-form select { min-height: 49px; }
.inquiry-form textarea { resize: vertical; min-height: 132px; line-height: 1.5; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { border-color: rgba(179,143,89,.75); background: white; box-shadow: 0 0 0 4px rgba(179,143,89,.10); }
.inquiry-form [aria-invalid="true"] { border-color: #a84b43; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit { width: 100%; justify-content: space-between; border: 0; }
.form-note { margin: -4px 0 0; color: var(--ink-soft); font-size: .76rem; line-height: 1.55; }
.form-status { min-height: 0; color: var(--forest); font-size: .86rem; font-weight: 650; }
.form-status.error { color: #943c35; }

/* Footer */
.footer { background: #18211d; color: var(--paper); padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr 1fr; gap: 42px; align-items: start; }
.footer-brand { display: flex; align-items: start; gap: 14px; }
.footer-brand strong { font-family: var(--serif); font-size: 1.18rem; }
.footer-brand p { max-width: 43ch; margin: 7px 0 0; color: rgba(244,240,232,.58); line-height: 1.55; font-size: .85rem; }
.footer-links,
.footer-contact { display: grid; gap: 10px; }
.footer-links a,
.footer-contact a { color: rgba(244,240,232,.7); text-decoration: none; font-size: .86rem; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--bronze-light); }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: rgba(244,240,232,.42); font-family: var(--mono); font-size: .64rem; letter-spacing: .04em; }

/* Mobile CTA */
.mobile-cta { display: none; }

/* Lightbox */
.lightbox {
  width: min(980px, calc(100% - 28px));
  max-width: none;
  border: 0;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  background: #101713;
  color: white;
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}
.lightbox::backdrop { background: rgba(12,17,15,.76); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #101713; }
.lightbox p { margin: 0; padding: 16px 20px 20px; color: rgba(255,255,255,.68); font-size: .82rem; }
.lightbox-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(16,23,19,.66); color: white; font-size: 1.65rem; line-height: 1; cursor: pointer; backdrop-filter: blur(8px); }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav { display: none; }
  .nav-call { margin-left: auto; }
  .hero-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .brief-card { max-width: 720px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid div:nth-child(2) { border-right: 1px solid var(--line); }
  .signal-grid div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .gallery-grid { grid-auto-rows: minmax(280px, 48vw); }
  .photo { grid-column: span 6; }
  .photo-wide { grid-column: span 12; }
  .location-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 68px; }
  .cinema { height: 390px; }
  .cinema-line { align-items: flex-start; flex-direction: column; }
  .cinema-line p { font-size: clamp(2rem, 10vw, 3.25rem); }
  .cinema-line > span { display: none; }
  .cinema-frame img { object-position: center 46%; }
  .site-header { position: sticky; }
  .nav-shell { min-height: 70px; gap: 14px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 11px; }
  .brand-copy small { display: none; }
  .nav-call { display: none; }
  .menu-button { margin-left: auto; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(35,49,44,.08); display: grid; align-content: center; gap: 4px; padding: 0 12px; cursor: pointer; }
  .menu-button span:not(.sr-only) { height: 1px; background: var(--ink); display: block; }
  .mobile-nav { display: none; padding: 6px clamp(20px,5vw,64px) 18px; border-top: 1px solid var(--line); background: rgba(244,240,232,.98); }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: .9rem; }
  .hero-copy h1 { font-size: clamp(3.15rem, 15vw, 5.1rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid div { min-height: 82px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .signal-grid div:first-child { border-top: 0; }
  .ledger { grid-template-columns: 1fr; }
  .gallery-head { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .photo,
  .photo-wide { grid-column: auto; min-height: 0; aspect-ratio: 4 / 5; }
  .photo-wide { aspect-ratio: 4 / 3; }
  .location-cards { grid-template-columns: 1fr; }
  .form-grid.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta {
    position: fixed;
    z-index: 60;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 52px;
    display: grid;
    grid-template-columns: .8fr 1.4fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(244,240,232,.18);
    border-radius: 18px;
    background: rgba(24,33,29,.94);
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
    backdrop-filter: blur(15px);
  }
  .mobile-cta a { display: grid; place-items: center; border-radius: 12px; text-decoration: none; color: var(--paper); font-size: .8rem; font-weight: 750; }
  .mobile-cta a:last-child { background: var(--bronze-light); color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .cinema-frame { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}
