/* Bashworks Photography: Darkroom theme
   darkroom #171114 / deeper #0f0b0d / bone #ece2d0 / safelight red #d9403c */

:root {
  --ink: #171114;
  --ink-deep: #0f0b0d;
  --bone: #ece2d0;
  --bone-dim: #c9bda6;
  --red: #d9403c;
  --red-deep: #a52c29;
  --red-soft: rgba(217, 64, 60, 0.14);
  --line: rgba(236, 226, 208, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.44rem);
  --step-2: clamp(1.44rem, 1.28rem + 0.8vw, 1.8rem);
  --step-3: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --step-4: clamp(2.2rem, 1.7rem + 2.6vw, 3.4rem);
  --step-6: clamp(3rem, 1.8rem + 6vw, 6rem);
  --step-hero: clamp(3.2rem, 1.2rem + 10vw, 9rem);

  --font-display: "Rozha One", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.no-js { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
img { max-width: 100%; }

::selection { background: var(--red); color: var(--ink-deep); }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }

/* ---------- signature section header ---------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-4);
  color: var(--bone);
  margin-bottom: 1rem;
}
.section-title em,
.hero-title em,
.final-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0;
}

.lede {
  max-width: 62ch;
  color: var(--bone-dim);
  font-size: var(--step-1);
  line-height: 1.55;
}

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(15, 11, 13, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.logo::after { content: "."; color: var(--red); }
.site-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bone-dim);
  position: relative;
  padding: 0.25rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}
.site-nav a:hover { color: var(--bone); }
.site-nav a:hover::after { transform: scaleX(1); }
.header-phone {
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  transition: border-color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
}
.header-phone:hover { border-color: var(--red); background: var(--red-soft); transform: translateY(-2px); }

/* ---------- hero ---------- */
.hero {
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 78% 30%, rgba(217, 64, 60, 0.16), transparent 70%),
    radial-gradient(45% 40% at 15% 85%, rgba(217, 64, 60, 0.08), transparent 70%),
    var(--ink);
}
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 70vmax; height: 70vmax;
  background: radial-gradient(circle, rgba(217, 64, 60, 0.22) 0%, transparent 62%);
  filter: blur(10px);
  pointer-events: none;
  animation: glow-breathe 7s ease-in-out infinite alternate;
}
@keyframes glow-breathe {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.12); opacity: 1; }
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}
.hero-eyebrow { color: var(--red); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-hero);
  line-height: 0.98;
  color: var(--bone);
  margin: 0 0 1.75rem;
  max-width: 12ch;
}
.hero-sub {
  max-width: 56ch;
  font-size: var(--step-1);
  color: var(--bone-dim);
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.trust-row {
  list-style: none;
  margin: 0; padding: 1.25rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 640px;
  font-size: 0.92rem;
  color: var(--bone-dim);
}
.trust-row li { display: flex; align-items: center; gap: 0.6rem; }
.trust-row li::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex: none;
}
.hero-frame-tag {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 226, 208, 0.4);
}

/* word-mask hero entrance */
.mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.mask > span { display: inline-block; transform: translateY(112%); animation: rise 0.75s var(--ease) forwards; }
.hero-title .mask:nth-of-type(2) > span { animation-delay: 0.12s; }
.hero-eyebrow .mask > span { animation-delay: 0s; animation-duration: 0.6s; }
@keyframes rise { to { transform: translateY(0); } }

.reveal-hero { opacity: 0; animation: hero-fade 0.6s var(--ease) forwards; animation-delay: 0.45s; }
.hero-ctas.reveal-hero { animation-delay: 0.58s; }
.trust-row.reveal-hero { animation-delay: 0.72s; }
@keyframes hero-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out, border-color 0.18s ease-out;
  min-height: 48px;
}
.btn-primary {
  background: var(--red);
  color: var(--ink-deep);
  box-shadow: 0 8px 28px rgba(217, 64, 60, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(217, 64, 60, 0.4); background: #e04a46; }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(236, 226, 208, 0.35);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--red); background: var(--red-soft); }
.btn-ghost.dark-ghost { color: var(--ink); border-color: rgba(23, 17, 20, 0.35); }
.btn-ghost.dark-ghost:hover { border-color: var(--ink); background: rgba(23, 17, 20, 0.08); }
.btn-ghost.light-ghost { color: var(--bone); }
.btn-ink { background: var(--ink-deep); color: var(--bone); }
.btn-ink:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45); background: #171114; }

/* ---------- film-strip dividers (transition 1: frames advance on scroll) ---------- */
.filmstrip {
  background: var(--ink-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  overflow: hidden;
}
.sprockets {
  height: 12px;
  background-image: repeating-linear-gradient(90deg, rgba(236, 226, 208, 0.35) 0 10px, transparent 10px 26px);
  background-size: 100% 12px;
  margin: 0 clamp(1rem, 3vw, 2rem);
}
.sprockets.top { margin-bottom: 0.7rem; }
.sprockets.bottom { margin-top: 0.7rem; }
.filmstrip-track { overflow: hidden; }
.filmstrip-inner {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  padding: 0 clamp(1rem, 3vw, 2rem);
  will-change: transform;
}
.frame {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(236, 226, 208, 0.28);
  background: #141013;
  padding: 0.65rem 1.1rem;
  border-radius: 3px;
  white-space: nowrap;
}
.frame b {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
}
.frame i {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ---------- services: numbered editorial rows ---------- */
.services { background: var(--ink); }
.service-rows { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease-out, padding-left 0.25s var(--ease);
}
.service-row:hover { background: rgba(217, 64, 60, 0.05); padding-left: 0.75rem; }
.service-row.offset .service-body { max-width: 46ch; margin-left: clamp(0px, 8vw, 7rem); }
.service-num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: transparent;
  -webkit-text-stroke: 1px var(--red);
  line-height: 1;
}
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-2);
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.service-body p { color: var(--bone-dim); max-width: 58ch; }

/* ---------- mid CTA: safelight wipe band (transition 2) ---------- */
.mid-cta {
  background: var(--bone);
  color: var(--ink);
  overflow: hidden;
}
.mid-cta .eyebrow { color: var(--red-deep); }
.mid-cta .section-title { color: var(--ink); }
.mid-cta .section-title em { color: var(--red-deep); }
.mid-cta .lede { color: #4a4038; }
.mid-cta-inner { position: relative; z-index: 1; }
.wipe-cover {
  position: absolute;
  inset: 0;
  background: var(--red);
  z-index: 2;
  transform: translateX(0);
  display: none;
}
.js .wipe-cover { display: block; }
.mid-cta.wiped .wipe-cover {
  transform: translateX(-101%);
  transition: transform 0.9s var(--ease);
}
.mid-cta .hero-ctas { margin-bottom: 0; }

/* ---------- craft proof: contact sheet ---------- */
.craft { background: var(--ink-deep); }
.contact-sheet {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
.proof { margin: 0; }
.proof.tilt { transform: rotate(-1.2deg); margin-top: 1.5rem; }
.proof:nth-child(3) { transform: rotate(0.8deg); }
.proof-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(236, 226, 208, 0.3);
  background:
    radial-gradient(80% 90% at 50% 40%, rgba(217, 64, 60, 0.12), transparent 70%),
    repeating-linear-gradient(0deg, rgba(236, 226, 208, 0.05) 0 2px, transparent 2px 6px),
    #141013;
  border-radius: 3px;
  margin-bottom: 1.1rem;
  transition: transform 0.25s ease-out, border-color 0.25s ease-out;
}
.proof:hover .proof-frame { transform: scale(1.03); border-color: var(--red); }
.proof-frame b {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--red);
  border: 1px solid rgba(217, 64, 60, 0.5);
  padding: 0.4rem 0.7rem 0.4rem 1rem;
  border-radius: 2px;
}
.proof figcaption strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.45rem;
}
.proof figcaption span { color: var(--bone-dim); font-size: 0.98rem; }

/* ---------- process: enlarger-glow swell band (transition 3) ---------- */
.process { background: var(--ink); overflow: hidden; }
.process .glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 130vmax; height: 130vmax;
  margin: -65vmax 0 0 -65vmax;
  background: radial-gradient(circle, rgba(217, 64, 60, 0.13) 0%, transparent 55%);
  pointer-events: none;
  will-change: transform;
}
.process-inner { position: relative; }
.steps {
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.step { border-top: 2px solid var(--red); padding-top: 1.25rem; }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 226, 208, 0.5);
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.step p { color: var(--bone-dim); font-size: 0.97rem; }
.step a { color: var(--bone); text-decoration-color: var(--red); text-underline-offset: 3px; }
.step a:hover { color: var(--red); }

/* ---------- service area: typographic marquee band ---------- */
.area { background: var(--ink-deep); padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.area-marquee { margin-top: 2.75rem; overflow: hidden; }
.area-marquee-inner {
  display: flex;
  width: max-content;
  animation: area-scroll 32s linear infinite;
}
.area-marquee-inner span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 226, 208, 0.35);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@keyframes area-scroll { to { transform: translateX(-50%); } }

/* ---------- FAQ ---------- */
.faq { background: var(--ink); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.faq-head { position: sticky; top: 96px; }
.faq-list { display: flex; flex-direction: column; }
.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0.25rem;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--bone);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  flex: none;
  width: 2rem; height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(236, 226, 208, 0.3);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.25s var(--ease), background 0.25s ease-out, border-color 0.25s ease-out;
}
.qa[open] summary::after { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: var(--ink-deep); }
.qa summary:hover { color: var(--bone); }
.qa p { padding: 0 0.25rem 1.6rem; color: var(--bone-dim); max-width: 60ch; }
.qa a { color: var(--bone); text-decoration-color: var(--red); text-underline-offset: 3px; }
.qa a:hover { color: var(--red); }

/* ---------- final CTA: safelight band ---------- */
.final-cta {
  background:
    radial-gradient(70% 90% at 50% 110%, rgba(15, 11, 13, 0.35), transparent 70%),
    var(--red);
  color: var(--ink-deep);
  text-align: left;
}
.final-cta .eyebrow { color: var(--ink-deep); }
.final-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  color: var(--ink-deep);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.final-title em { color: var(--bone); }
.final-sub { color: #3d1512; font-size: var(--step-1); max-width: 56ch; margin-bottom: 2rem; }
.final-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  color: var(--bone);
  text-decoration: none;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 2.25rem;
  text-shadow: 0 3px 0 rgba(15, 11, 13, 0.25);
  transition: transform 0.2s ease-out;
}
.final-phone:hover { transform: translateY(-4px) scale(1.01); }
.final-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }
.final-trust { border-top-color: rgba(15, 11, 13, 0.3); color: #3d1512; max-width: none; }
.final-trust li::before { background: var(--ink-deep); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-deep); padding: 2.5rem 0 calc(2.5rem + 0px); border-top: 1px solid var(--line); }
.footer-inner p { font-size: 0.9rem; color: var(--bone-dim); margin-bottom: 0.5rem; }
.footer-inner p strong { color: var(--bone); }
.footer-inner a { text-decoration-color: var(--red); text-underline-offset: 3px; }
.footer-inner a:hover { color: var(--red); }
.footer-note { font-size: 0.8rem; color: rgba(236, 226, 208, 0.45); }

/* ---------- mobile call bar ---------- */
.mobile-callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: rgba(15, 11, 13, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.7rem;
}
.callbar-btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 0.5rem;
  border-radius: 6px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.callbar-btn.call { background: var(--red); color: var(--ink-deep); }
.callbar-btn.mail { border: 1px solid rgba(236, 226, 208, 0.35); color: var(--bone); }

/* ---------- scroll reveals (JS-gated) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js .service-rows .reveal:nth-child(2).in { transition-delay: 0.1s; }
.js .service-rows .reveal:nth-child(3).in { transition-delay: 0.2s; }
.js .contact-sheet .reveal:nth-child(2).in { transition-delay: 0.1s; }
.js .contact-sheet .reveal:nth-child(3).in { transition-delay: 0.2s; }
.js .steps .reveal:nth-child(2).in { transition-delay: 0.09s; }
.js .steps .reveal:nth-child(3).in { transition-delay: 0.18s; }
.js .steps .reveal:nth-child(4).in { transition-delay: 0.27s; }
.js .faq-list .reveal:nth-child(2).in { transition-delay: 0.07s; }
.js .faq-list .reveal:nth-child(3).in { transition-delay: 0.14s; }
.js .faq-list .reveal:nth-child(4).in { transition-delay: 0.21s; }
.js .faq-list .reveal:nth-child(5).in { transition-delay: 0.28s; }
.js .faq-list .reveal:nth-child(6).in { transition-delay: 0.35s; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .contact-sheet { grid-template-columns: 1fr; max-width: 480px; }
  .proof.tilt, .proof:nth-child(3) { transform: none; margin-top: 0; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .header-phone { margin-left: auto; font-size: 0.95rem; }
  .mobile-callbar { display: flex; }
  body { padding-bottom: 76px; }
  .hero { min-height: auto; }
  .hero-frame-tag { display: none; }
  .steps { grid-template-columns: 1fr; gap: 1.75rem; }
  .service-row.offset .service-body { margin-left: 0; }
  .final-phone { overflow-wrap: anywhere; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .mask > span { transform: none; }
  .reveal-hero { opacity: 1; }
  .js .reveal { opacity: 1; transform: none; }
  .js .wipe-cover, .wipe-cover { display: none !important; }
  .hero-glow { animation: none; }
  .area-marquee-inner { animation: none; }
}

/* ---------- darkroom scene panel (imagery retrofit 2026-09-26) ---------- */
.darkroom-scene{margin:clamp(2rem,4vw,3.5rem) auto 0;max-width:920px}
.ds-frame{border:1px solid var(--line);border-radius:10px;overflow:hidden;background:var(--ink-deep)}
.ds-svg{display:block;width:100%;height:auto}
.ds-caption{margin-top:.8rem;font-size:.92rem;color:var(--bone-dim);font-family:var(--font-serif);font-style:italic;text-align:center}
