/* ==========================================================================
   Shayo's Artisan Desserts — translated from Figma (file Rih8pzILUysVbHUSzAiNB4)
   Tokens, one motion system, seven sections. See MOTION.md for the motion spec.
   ========================================================================== */

:root {
  /* palette — sampled from the Figma layers */
  --bg: #080506;
  --bg-2: #0d0708;
  --ink: #f6f1ec;
  --muted: #cfc5c2;
  --gold: #d3a45f;
  --gold-bright: #ffc46e;
  --gold-deep: #a07c48;
  --crimson: #6d1022;
  --line: rgba(244, 240, 238, 0.2);

  /* type */
  --font-display: "Marcellus", serif;
  --font-accent: "Cormorant Garamond", serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* motion system — every animated thing uses these */
  --ease-luxe: cubic-bezier(0.45, 0.05, 0.15, 1); /* slow ease-in-out */
  --dur-title: 1.4s;
  --dur-fade: 1s;
  --dur-ui: 0.45s;

  --gutter: clamp(20px, 4vw, 58px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 100;
  background: var(--gold-bright); color: var(--bg);
  padding: 10px 18px; font-weight: 700;
  transition: top var(--dur-ui) var(--ease-luxe);
}
.skip-link:focus-visible { top: 16px; }

/* film grain over the whole stage */
body::after {
  content: "";
  position: fixed; inset: -50%;
  z-index: 90;
  pointer-events: none;
  filter: url(#grain-filter);
  opacity: 0.05;
}

/* ==========================================================================
   Motion system
   - .fx-title  : shared title reveal (rise + unblur + tracking settle)
   - .fx-fade   : supporting copy / actions (fade + small rise, delay via --d)
   - .fx-rise   : cards & framed media (fade + rise, stagger via --i)
   - .fx-breathe: gentle everlasting breathe (hero title, glass plaques)
   ========================================================================== */

.fx-title {
  opacity: 0;
  transform: translateY(0.55em);
  filter: blur(10px);
  letter-spacing: 0.05em;
  transition:
    opacity var(--dur-title) var(--ease-luxe),
    transform var(--dur-title) var(--ease-luxe),
    filter var(--dur-title) var(--ease-luxe),
    letter-spacing calc(var(--dur-title) * 1.35) var(--ease-luxe);
  transition-delay: var(--d, 0.1s);
  will-change: opacity, transform, filter;
}
.fx-title.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  letter-spacing: normal;
}

.fx-fade {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity var(--dur-fade) var(--ease-luxe),
    transform var(--dur-fade) var(--ease-luxe);
  transition-delay: var(--d, 0s);
}
.fx-fade.in-view { opacity: 1; transform: translateY(0); }

.fx-rise {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity var(--dur-fade) var(--ease-luxe),
    transform var(--dur-fade) var(--ease-luxe);
  transition-delay: calc(var(--i, 0) * 0.14s + var(--d, 0s));
}
.fx-rise.in-view { opacity: 1; transform: translateY(0); }

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.012); }
}
.fx-breathe.in-view { animation: breathe 7s var(--ease-luxe) 2s infinite; }

@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ==========================================================================
   Buttons — one system: .btn + .btn-glass | .btn-solid
   Same type, same padding, same hover sheen + lift everywhere.
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform var(--dur-ui) var(--ease-luxe),
    box-shadow var(--dur-ui) var(--ease-luxe),
    border-color var(--dur-ui) var(--ease-luxe),
    background-color var(--dur-ui) var(--ease-luxe);
}
.btn::after { /* sheen sweep */
  content: "";
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 244, 224, 0.35), transparent);
  transform: skewX(-18deg) translateX(0);
  transition: transform 0.9s var(--ease-luxe);
  pointer-events: none;
}
.btn:hover::after, .btn:focus-visible::after { transform: skewX(-18deg) translateX(420%); }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.btn-glass {
  color: var(--gold-bright);
  background-image: linear-gradient(107deg, rgba(211, 164, 95, 0.33) 0%, rgba(167, 136, 90, 0.33) 52%, rgba(160, 124, 72, 0.33) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-color: rgba(211, 164, 95, 0.28);
}
.btn-glass:hover, .btn-glass:focus-visible {
  border-color: rgba(255, 196, 110, 0.6);
  box-shadow: 0 8px 30px -12px rgba(211, 164, 95, 0.55);
}

.btn-solid {
  color: var(--bg);
  background: var(--gold-bright);
  box-shadow: 0 -1px 14.3px rgba(211, 164, 95, 0.25), 0 4px 15.3px rgba(0, 0, 0, 0.1);
}
.btn-solid:hover, .btn-solid:focus-visible {
  box-shadow: 0 -1px 20px rgba(211, 164, 95, 0.45), 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.btn-icon { width: 20px; height: 20px; flex: none; }
.btn-glass .btn-icon { width: 24px; height: 24px; }

.btn-nav { padding: 12px 21px 12px 24px; text-transform: none; letter-spacing: 0.1em; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 56px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { width: 53px; height: 53px; }
.brand-mark { display: flex; flex-direction: column; }
.brand-mark img { width: 113px; height: auto; }

.site-header nav { display: flex; align-items: center; gap: 40px; }
.site-header nav > a:not(.btn) {
  position: relative;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
}
.site-header nav > a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-ui) var(--ease-luxe);
}
.site-header nav > a:not(.btn):hover::after,
.site-header nav > a:not(.btn):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==========================================================================
   Hero — video stage
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  animation: slow-zoom 22s var(--ease-luxe) alternate infinite;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 5, 6, 0.78) 0%, rgba(8, 5, 6, 0.15) 34%, rgba(8, 5, 6, 0.15) 62%, rgba(8, 5, 6, 0.82) 100%),
    linear-gradient(100deg, rgba(8, 5, 6, 0.55) 0%, rgba(8, 5, 6, 0) 55%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 463px;
  margin-left: clamp(24px, 4.5vw, 65px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 4.1vw, 58.4px);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-sub {
  margin-top: 13px;
  max-width: 340px;
  color: var(--muted);
  font-size: 15px;
}
.hero-copy > div.fx-fade { margin-top: 35px; }

/* ==========================================================================
   Opening — the house view (glass ticket over burgundy bloom)
   ========================================================================== */

.opening {
  position: relative;
  min-height: 937px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px var(--gutter);
}

.opening-backdrop { position: absolute; inset: 0; pointer-events: none; }
.opening-bg { /* the exportable background composed in Figma (blur + grain baked) */
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.opening-backdrop::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 5, 6, 0) 0%, rgba(8, 5, 6, 0) 58%, var(--bg) 97%);
}

/* ornate ticket plaque — shared by Opening (tall) and Finale (wide).
   --ticket-mask / --ticket-stroke swap to the narrower Figma-drawn shapes
   (Frames 33/34/35) at each breakpoint. */
.ticket {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket-tall {
  --ticket-mask: url("assets/figma/ticket-mask-tall.svg");
  --ticket-stroke: url("assets/figma/ticket-stroke-tall.svg");
  width: min(953px, 100%);
  aspect-ratio: 953.276 / 488.878;
}
.ticket-wide {
  --ticket-mask: url("assets/figma/ticket-mask-wide.svg");
  --ticket-stroke: url("assets/figma/ticket-stroke-wide.svg");
  width: min(953px, 100%);
  min-height: 288px;
}

.ticket-glass {
  position: absolute; inset: 0;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  background: linear-gradient(120deg, rgba(246, 241, 236, 0.07), rgba(211, 164, 95, 0.08) 55%, rgba(246, 241, 236, 0.05));
  -webkit-mask-image: var(--ticket-mask);
  mask-image: var(--ticket-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.ticket-glass-dark { background: rgba(8, 5, 6, 0.55); }
.ticket-stroke {
  position: absolute; inset: 0;
  background: var(--ticket-stroke) center / 100% 100% no-repeat;
  pointer-events: none;
}
.ticket-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  padding: clamp(36px, 6vw, 70px);
  max-width: 860px;
}
.ticket-inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: 1.08;
  color: var(--ink);
}
.ticket-inner h2 em {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 500;
  font-size: 1.06em;
  color: var(--gold);
}
.opening-note {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
}

/* ==========================================================================
   Signatures
   ========================================================================== */

.signatures {
  position: relative;
  padding: 88px var(--gutter) 122px;
  background: var(--bg);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.1;
  color: var(--ink);
}
.signatures .section-title { margin-bottom: 54px; }

/* Full-bleed scenes; the hovered card grows to the wide (No. I) size. */
.signature-scenes {
  display: flex;
  gap: 23px;
}
.scene {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: min(65.7vw, 946px);
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: 0 30px 70px -38px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  transition:
    flex-grow 0.9s var(--ease-luxe),
    border-color var(--dur-ui) var(--ease-luxe),
    box-shadow var(--dur-ui) var(--ease-luxe);
}
.scene-wide { flex-grow: 2.11; }
.signature-scenes:has(.scene:hover) .scene:not(:hover) { flex-grow: 1; }
.signature-scenes .scene:hover { flex-grow: 2.11; }
.scene:hover {
  border-color: rgba(211, 164, 95, 0.45);
  box-shadow: 0 40px 90px -38px rgba(109, 16, 34, 0.7);
}
.scene-no {
  position: absolute;
  top: 37px; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.scene-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.scene-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxe);
}
.scene:hover .scene-image img { transform: scale(1.045); }
.scene figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 44px 12px 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 5, 6, 0) 0%, rgba(8, 5, 6, 0.72) 100%);
}
.scene-name {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink);
}
.scene-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   Atelier
   ========================================================================== */

.atelier {
  position: relative;
  display: grid;
  grid-template-columns: minmax(auto, 640px) minmax(0, 574px);
  justify-content: center;
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
  background: var(--bg-2);
  padding: clamp(72px, 8vw, 128px) clamp(24px, 4vw, 60px);
  overflow: hidden;
}
.atelier-glow { /* crimson sweep from the Figma (Group 5, blur baked into the SVG) */
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 197vw;
  aspect-ratio: 2832.94 / 1362.85;
  background: url("assets/figma/atelier-glow.svg") center / 100% 100% no-repeat;
  pointer-events: none;
}
.atelier-copy { position: relative; max-width: 640px; }
.atelier-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  color: var(--ink);
}
.atelier-copy .gold { color: var(--gold); }
.atelier-copy > div.fx-fade { margin-top: 54px; }

/* ornate medallion — Figma Union ring with circular portrait */
.atelier-medallion {
  position: relative;
  width: min(574px, 100%);
  aspect-ratio: 574.011 / 523.126;
}
.medallion-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.medallion-photo {
  position: absolute;
  left: 19.24%; top: 17.14%;
  width: 61.61%;
  aspect-ratio: 353.621 / 344.459;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.medallion-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

/* ==========================================================================
   Archive / collection reel
   ========================================================================== */

.archive {
  background: var(--bg);
  padding: 130px 0 133px;
}
.archive-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 0 var(--gutter);
  margin-bottom: 48px;
}
.archive-heading h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.3vw, 62px);
  line-height: 1.08;
  max-width: 560px;
  color: var(--ink);
}
.archive-sub { margin-top: 18px; color: var(--muted); font-size: 15px; }

.reel-controls { display: flex; align-items: center; gap: 16px; }
.reel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: opacity var(--dur-ui) var(--ease-luxe), border-color var(--dur-ui) var(--ease-luxe), transform var(--dur-ui) var(--ease-luxe);
}
.reel-button:hover:not(:disabled), .reel-button:focus-visible { border-color: var(--gold); transform: translateY(-2px); }
.reel-button:active:not(:disabled) { transform: scale(0.94); }
.reel-button:disabled { opacity: 0.35; cursor: default; }
.reel-button:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.reel-status {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--gold);
  min-width: 96px;
  text-align: center;
}

.reel {
  display: flex;
  gap: 28px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding: 10px var(--gutter) 30px;
  scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }
.reel li { flex: none; scroll-snap-align: start; }
.reel figure {
  width: min(384px, 78vw);
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px -32px rgba(0, 0, 0, 0.7);
  padding: 16px 16px 6px;
  transition: border-color var(--dur-ui) var(--ease-luxe), transform var(--dur-ui) var(--ease-luxe);
}
.reel figure:hover { border-color: rgba(211, 164, 95, 0.45); transform: translateY(-4px); }
.reel img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.reel figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 4px 8px;
}
.frame-no {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--gold);
}
.frame-name { font-family: var(--font-display); font-size: 19px; color: var(--ink); }

/* ==========================================================================
   Finale
   ========================================================================== */

.finale {
  position: relative;
  min-height: 922px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 44px var(--gutter);
}
.finale-media { position: absolute; inset: 0; }
.finale-media picture, .finale-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.finale-media picture { display: block; }
.finale-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 5, 6, 0.45) 0%, rgba(8, 5, 6, 0) 28%, rgba(109, 16, 34, 0) 58%, var(--crimson) 100%);
}
.finale .ticket-inner h2 { font-size: clamp(32px, 4vw, 58px); white-space: nowrap; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 197px;
  padding: 239px 0 48px;
  background: linear-gradient(180deg, var(--crimson) 0%, var(--bg) 100%);
  overflow: hidden;
}
.footer-wordmark {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(1518px, 105vw);
  max-width: none;
  pointer-events: none;
}
.footer-crest { width: min(357px, 60vw); height: auto; }
.footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 0 100px;
  font-size: 12.5px;
  color: var(--gold);
}
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact a, .footer-place {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  transition: color var(--dur-ui) var(--ease-luxe);
}
.footer-contact a:hover, .footer-contact a:focus-visible { color: var(--gold-bright); }
.footer-top {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-ui) var(--ease-luxe);
}
.footer-top:hover, .footer-top:focus-visible { color: var(--gold-bright); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .site-header { padding: 0 28px; }
  .signature-scenes { flex-wrap: wrap; }
  .scene, .signature-scenes .scene:hover,
  .signature-scenes:has(.scene:hover) .scene:not(:hover) { flex: 1 1 42%; }
  .scene-wide { flex-basis: 100%; }
  .scene { height: min(88vw, 620px); }
  .atelier { grid-template-columns: 1fr; gap: 56px; }
  .atelier-medallion { justify-self: center; width: min(574px, 92vw); }
  .finale .ticket-inner h2 { white-space: normal; }
  .ticket-wide {
    --ticket-mask: url("assets/figma/ticket-mask-644.svg");
    --ticket-stroke: url("assets/figma/ticket-stroke-644.svg");
    width: min(644px, 100%);
  }
}

@media (max-width: 760px) {
  .site-header { height: 72px; }
  .site-header nav { gap: 0; }
  .site-header nav > a:not(.btn) { display: none; }
  .brand-mark img { width: 92px; }

  .hero-copy { margin: 0 24px; }
  .hero-copy h1 { font-size: clamp(40px, 12vw, 52px); }

  .opening { min-height: 0; padding: 96px 16px; }
  .ticket-tall, .ticket-wide {
    --ticket-mask: url("assets/figma/ticket-mask-464.svg");
    --ticket-stroke: url("assets/figma/ticket-stroke-464.svg");
    width: min(464px, 100%);
    aspect-ratio: auto;
  }
  .ticket-inner { padding: 40px 26px; gap: 22px; }
  .ticket-inner h2 { font-size: clamp(24px, 7.4vw, 32px); }
  .opening-note { font-size: 14px; }
  .finale .ticket-inner h2 { font-size: clamp(24px, 7.4vw, 32px); }

  .signatures { padding: 72px var(--gutter) 88px; }
  .signature-scenes { flex-direction: column; }
  .scene, .signature-scenes .scene:hover,
  .signature-scenes:has(.scene:hover) .scene:not(:hover) { flex: none; }
  .scene { height: min(118vw, 560px); }

  .archive { padding: 88px 0; }
  .archive-heading { flex-direction: column; align-items: flex-start; }

  .finale { min-height: 78svh; padding: 24px 16px 44px; }

  .site-footer { gap: 110px; padding: 150px 0 40px; }
  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 24px;
    text-align: center;
  }
  .footer-contact { align-items: center; }
}

/* ==========================================================================
   Reduced motion — everything lands instantly, nothing loops
   ========================================================================== */

/* ?nofx — headless audit mode: everything settled, nothing animates */
.nofx { scroll-behavior: auto; }
.nofx .fx-title, .nofx .fx-fade, .nofx .fx-rise {
  opacity: 1; transform: none; filter: none; letter-spacing: normal;
  transition: none;
}
.nofx .fx-breathe.in-view, .nofx .hero-video { animation: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx-title, .fx-fade, .fx-rise {
    opacity: 1; transform: none; filter: none; letter-spacing: normal;
    transition: none;
  }
  .fx-breathe.in-view, .hero-video { animation: none; }
  .btn::after { display: none; }
  .btn, .scene, .scene-image img, .reel figure, .reel-button { transition: none; }
}
