/* ============================================================
   THE SC CREATIONS — Styles
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: var(--leading-body);
  color: var(--espresso);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--sand); color: var(--charcoal); }

/* ---------- Ambient grain (passive) ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.5;
  mix-blend-mode: multiply;
  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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  animation: grainshift 8s steps(6) infinite;
}
@keyframes grainshift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -3%); }
  60%  { transform: translate(-2%, 1%); }
  80%  { transform: translate(3%, 2%); }
  100% { transform: translate(0,0); }
}

/* ---------- Typography ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 340;
  font-optical-sizing: auto;
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.h-xl { font-size: var(--step-6); line-height: 0.95; }
.h-lg { font-size: var(--step-5); }
.h-md { font-size: var(--step-4); }
.h-sm { font-size: var(--step-3); line-height: var(--leading-snug); }
.italic { font-style: italic; }
em, .em { font-style: italic; color: var(--clay); }

p { max-width: var(--measure); }
.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-90); }
.muted { color: var(--ink-60); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  font-weight: 600;
  color: var(--clay);
  display: inline-flex; align-items: center; gap: 0.9em;
}
.eyebrow::before {
  content: ""; width: 2.4em; height: 1px; background: var(--taupe);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-3xl); position: relative; }
.section--tight { padding-block: var(--space-2xl); }
.stack > * + * { margin-top: var(--space-m); }
.stack-s > * + * { margin-top: var(--space-s); }
.center { text-align: center; }
.measure { max-width: var(--maxw-text); }

.grid { display: grid; gap: var(--space-l); }
@media (min-width: 768px) {
  .cols-2 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-12 { grid-template-columns: repeat(12, 1fr); }
}

/* hairline rule that draws itself in */
.rule {
  height: 1px; background: var(--ink-12);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.is-in .rule, .rule.is-in { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  --pad: 1.05em 2em;
  position: relative; display: inline-flex; align-items: center; gap: 0.75em;
  min-height: 48px; /* tap target */
  padding: var(--pad);
  font-size: var(--step--1); letter-spacing: var(--tracking-wide);
  text-transform: uppercase; font-weight: 600;
  color: var(--paper); background: var(--espresso);
  border-radius: 100px; overflow: hidden;
  transition: color var(--dur-fast) var(--ease-out);
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--charcoal);
  transform: translateY(101%); border-radius: 100px;
  transition: transform var(--dur-med) var(--ease-out);
}
.btn:hover::after { transform: translateY(0); }
.btn__arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--espresso); box-shadow: inset 0 0 0 1px var(--ink-12); }
.btn--ghost::after { background: var(--oat); }
.btn--ghost:hover { color: var(--charcoal); }

/* text link with underline draw */
.link {
  position: relative; display: inline-flex; align-items: center; min-height: 48px;
  font-size: var(--step--1); text-transform: uppercase;
  letter-spacing: var(--tracking-wide); font-weight: 600; color: var(--espresso);
  padding-bottom: 0.25em;
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--espresso); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur-med) var(--ease-out);
}
.link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- "Raking light" — native cursor; warm light grazes imagery ----------
   JS sets --mx/--my (0–100%) on each .figure as the pointer moves across it.
   The native OS cursor is kept everywhere (precise & familiar). */
.figure::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0; transition: opacity 0.6s var(--ease-out);
  mix-blend-mode: soft-light;
  background: radial-gradient(
    clamp(180px, 26vw, 320px) circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 248, 235, 0.95), rgba(255, 248, 235, 0) 62%);
}
.figure.is-in:hover::before { opacity: 1; }

/* ---------- Reveal primitives (JS adds .is-in) ---------- */
[data-reveal] { will-change: transform, opacity; }
[data-reveal="up"]     { opacity: 0; transform: translateY(38px); }
[data-reveal="fade"]   { opacity: 0; }
[data-reveal="left"]   { opacity: 0; transform: translateX(-40px); }
[data-reveal="right"]  { opacity: 0; transform: translateX(40px); }
[data-reveal="scale"]  { opacity: 0; transform: scale(1.06); }
[data-reveal] { transition: opacity var(--dur-reveal) var(--ease-out),
                            transform var(--dur-reveal) var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* stagger children */
[data-stagger] > * { opacity: 0; transform: translateY(28px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out); }
[data-stagger].is-in > * { opacity: 1; transform: none; }

/* split-line headline reveal */
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; transform: translateY(110%);
  transition: transform var(--dur-reveal) var(--ease-soft); }
.is-in .line-mask > span, .line-mask.is-in > span { transform: translateY(0); }

/* ---------- Figure: dust-sheet unmask (signature) ---------- */
.figure { position: relative; overflow: hidden; border-radius: var(--radius-img); }
.figure img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); transition: transform 1.4s var(--ease-out);
}
.figure.is-in img { transform: scale(1); }
.figure::after { /* the dust sheet */
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: var(--sand);
  transform: scaleY(1); transform-origin: top;
  transition: transform 1.1s var(--ease-soft);
}
.figure.is-in::after { transform: scaleY(0); transform-origin: bottom; }
.figure--reverse::after { background: var(--oat); }

/* parallax inner image wrapper */
.parallax { overflow: hidden; }
.parallax img { will-change: transform; }

/* aspect helpers */
.ar-portrait { aspect-ratio: 3 / 4; }
.ar-landscape { aspect-ratio: 4 / 3; }
.ar-wide { aspect-ratio: 16 / 10; }
.ar-tall { aspect-ratio: 2 / 3; }
.ar-square { aspect-ratio: 1 / 1; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: var(--z-header);
  padding-block: var(--space-s);
  transition: background var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header.is-scrolled {
  background: var(--paper-80); backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--ink-08);
  padding-block: 0.7rem;
}
.brand { font-family: var(--font-display); font-size: var(--step-0); letter-spacing: -0.01em; line-height: 1; }
.brand small { display: block; font-family: var(--font-body); font-size: 0.5rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--clay); margin-top: 0.4em; }
.nav { display: none; gap: var(--space-l); align-items: center; }
.nav a { position: relative; font-size: var(--step--1); text-transform: uppercase;
  letter-spacing: var(--tracking-wide); font-weight: 600; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--espresso); transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-out); }
.nav a:hover::after, .nav a[aria-current="page"]::after,
.nav .current-menu-item > a::after, .nav .current_page_item > a::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"], .nav .current-menu-item > a, .nav .current_page_item > a { color: var(--clay); }
/* wp_nav_menu outputs <ul class="nav"><li><a>; keep list items inline */
.nav li { display: inline-flex; align-items: center; }
.nav .sub-menu { display: none; }
@media (min-width: 900px) { .nav { display: flex; } .menu-toggle { display: none; } }

/* 48x48 minimum tap target (bars stay visually centred) */
.menu-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; padding: 10px; margin-right: -10px; min-width: 48px; min-height: 48px; }
.menu-toggle span { width: 26px; height: 1.5px; background: var(--espresso); transition: transform .4s var(--ease-out), opacity .3s; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 49; background: var(--ivory);
  display: grid; place-content: center; gap: var(--space-m); text-align: center;
  clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--ease-soft);
  pointer-events: none;
}
.menu-open .mobile-nav { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-nav a { font-family: var(--font-display); font-size: var(--step-3); color: var(--charcoal); }
.mobile-nav a small { display:block; font-family: var(--font-body); font-size: .6rem; letter-spacing:.3em; color: var(--clay); text-transform: uppercase; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92svh; display: flex; align-items: flex-end;
  padding-top: calc(64px + var(--space-m)); /* clear the fixed header */
  padding-bottom: var(--space-xl); overflow: hidden; }
.hero__light { /* slow drifting light gradient (passive) */
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 30% 20%, rgba(255,252,245,0.9), transparent 60%),
              radial-gradient(50% 60% at 80% 70%, rgba(219,205,185,0.55), transparent 55%);
  animation: lightdrift 22s var(--ease-in-out) infinite alternate;
}
@keyframes lightdrift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(4%, 3%, 0) scale(1.12); }
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__title { font-size: var(--step-4); line-height: 0.94; }
/* Home hero eyebrow is hidden on small screens (it crowded the header). */
.hero--split .eyebrow { display: none; }
.hero__media {
  position: absolute; z-index: 1; top: 0; right: 0;
  width: min(52vw, 760px); height: 100%;
}
.hero__media .figure { height: 100%; }
.hero--split .hero__inner { display: grid; gap: var(--space-l); align-items: end; }
@media (min-width: 900px) {
  .hero--split .hero__inner { grid-template-columns: 1.1fr 0.9fr; }
}

.scroll-cue { display: inline-flex; align-items: center; gap: 0.8em; font-size: var(--step--1);
  letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--ink-60); }
.scroll-cue i { width: 1px; height: 42px; background: var(--taupe); position: relative; overflow: hidden; display:block; }
.scroll-cue i::after { content:""; position:absolute; inset:0; background: var(--espresso);
  transform: translateY(-100%); animation: cue 2.4s var(--ease-in-out) infinite; }
@keyframes cue { 0%{transform:translateY(-100%)} 50%{transform:translateY(0)} 100%{transform:translateY(100%)} }

/* ---------- Cards / projects ---------- */
.project { display: block; position: relative; }
.project .figure { margin-bottom: var(--space-s); }
.project__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.project__title { font-family: var(--font-display); font-size: var(--step-2); }
.project__cat { font-size: var(--step--1); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--clay); }
.project img { transition: transform 1.2s var(--ease-out); }
.project:hover img { transform: scale(1.04); }
.project__index { font-family: var(--font-display); font-style: italic; color: var(--taupe); font-size: var(--step-1); }

/* editorial offset rows */
.feature-row { display: grid; gap: var(--space-l); align-items: center; }
@media (min-width: 768px) {
  .feature-row { grid-template-columns: repeat(12, 1fr); }
  .feature-row .col-img { grid-column: 1 / 8; }
  .feature-row .col-txt { grid-column: 8 / 13; }
  .feature-row--flip .col-img { grid-column: 6 / 13; grid-row: 1; }
  .feature-row--flip .col-txt { grid-column: 1 / 6; grid-row: 1; }
  .feature-row .col-img.offset-down { margin-top: var(--space-xl); }
}

/* ---------- Drag gallery ---------- */
.drag-gallery { position: relative; }
.drag-track { display: flex; flex-wrap: nowrap; gap: var(--space-m); cursor: grab;
  user-select: none; -webkit-user-select: none; padding-block: var(--space-xs);
  overflow-x: auto; overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  scrollbar-width: none; }
.drag-track::-webkit-scrollbar { display: none; }
.drag-track.is-grabbing { cursor: grabbing; }
.drag-item { scroll-snap-align: start; }
.drag-item { flex: 0 0 auto; width: clamp(200px, 72vw, 300px); }
.drag-item .figure { margin-bottom: var(--space-xs); }
.drag-item__name { font-family: var(--font-display); font-size: var(--step-1); }
.drag-item__detail { font-size: var(--step--1); color: var(--ink-60); }
.drag-hint { font-size: var(--step--1); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--ink-40); }

/* ---------- Numbers / stats ---------- */
.stats { display: grid; gap: var(--space-l); }
@media (min-width: 600px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat__num { font-family: var(--font-display); font-size: var(--step-4); color: var(--charcoal); line-height: 1; }
.stat__label { font-size: var(--step--1); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--clay); margin-top: 0.6em; }

/* ---------- Quote ---------- */
.quote { font-family: var(--font-display); font-size: var(--step-3); line-height: 1.3; font-style: italic;
  color: var(--charcoal); max-width: 22ch; }
.quote-cite { font-size: var(--step--1); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--clay); margin-top: var(--space-m); }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 0; }
.step { display: grid; gap: var(--space-s); padding-block: var(--space-l);
  border-top: 1px solid var(--ink-12); align-items: start; }
@media (min-width: 768px) { .step { grid-template-columns: 0.5fr 0.5fr 1fr; gap: var(--space-l); } }
.step__num { font-family: var(--font-display); font-style: italic; font-size: var(--step-3); color: var(--taupe); }
.step__title { font-family: var(--font-display); font-size: var(--step-2); }

/* ---------- Services ---------- */
.offer { padding: var(--space-l); background: var(--ivory); border-radius: var(--radius); height: 100%;
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out); }
.offer:hover { transform: translateY(-6px); background: var(--oat); }
.offer__icon { font-family: var(--font-display); font-style: italic; font-size: var(--step-3); color: var(--taupe); }
.offer__title { font-family: var(--font-display); font-size: var(--step-2); margin-block: var(--space-xs) var(--space-s); }

/* ---------- Filters / portfolio grid ---------- */
.filters { display: flex; flex-wrap: wrap; gap: var(--space-m); }
.filter-btn { font-size: var(--step--1); text-transform: uppercase; letter-spacing: var(--tracking-wide);
  font-weight: 600; color: var(--ink-40); padding: 0.5em 0; min-height: 48px;
  display: inline-flex; align-items: center; position: relative; transition: color .4s; }
.filter-btn::after { content:""; position:absolute; left:0; bottom:0; height:1px; width:100%; background: var(--espresso);
  transform: scaleX(0); transform-origin:left; transition: transform .5s var(--ease-out); }
.filter-btn.is-active { color: var(--espresso); } .filter-btn.is-active::after { transform: scaleX(1); }

.masonry { columns: 1; column-gap: var(--space-l); }
@media (min-width: 600px) { .masonry { columns: 2; } }
@media (min-width: 1100px) { .masonry { columns: 3; } }
.masonry .project { break-inside: avoid; margin-bottom: var(--space-l); }
.project.is-filtered { display: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: var(--z-overlay); display: grid; place-items: center;
  background: rgba(28,26,23,0.86); backdrop-filter: blur(6px); padding: var(--gutter);
  opacity: 0; pointer-events: none; transition: opacity .5s var(--ease-out); }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(90vw, 1100px); max-height: 82vh; width: auto; border-radius: var(--radius-img);
  transform: scale(.94); transition: transform .6s var(--ease-out); }
.lightbox.is-open img { transform: scale(1); }
.lightbox__cap { color: var(--paper); margin-top: var(--space-s); text-align: center; }
.lightbox__close { position: absolute; top: var(--gutter); right: var(--gutter); color: var(--paper);
  font-size: var(--step--1); letter-spacing: var(--tracking-wide); text-transform: uppercase; }

/* ---------- Forms ---------- */
.field { position: relative; border-bottom: 1px solid var(--ink-12); padding-top: var(--space-m); }
.field input, .field textarea {
  width: 100%; background: none; border: none; padding: 0.4em 0 0.9em;
  font-family: var(--font-body); font-size: var(--step-1); color: var(--charcoal); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; }
.field label { position: absolute; top: var(--space-m); left: 0; color: var(--ink-40);
  font-size: var(--step-1); pointer-events: none; transition: transform .4s var(--ease-out), color .4s, font-size .4s; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.7em); font-size: var(--step--1); letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--clay); }
.field::after { content:""; position:absolute; left:0; bottom:-1px; height:1px; width:100%; background: var(--espresso);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.field:focus-within::after { transform: scaleX(1); }

/* ---------- Footer ---------- */
.footer { background: var(--ivory); padding-block: var(--space-2xl) var(--space-l); position: relative; }
.footer__top { display: grid; gap: var(--space-xl); }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__big { font-family: var(--font-display); font-size: var(--step-3); line-height: 1.05; color: var(--charcoal); }
.footer__col h4 { font-size: var(--step--1); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--clay); margin-bottom: var(--space-s); font-family: var(--font-body); font-weight: 600; }
/* flex (not inline-flex) so links still stack vertically on mobile */
.footer__col a { display: flex; align-items: center; min-height: 48px; padding: 0.35em 0; color: var(--ink-90); }
.footer__col a:hover { color: var(--clay); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-s);
  margin-top: var(--space-2xl); padding-top: var(--space-m); border-top: 1px solid var(--ink-12);
  font-size: var(--step--1); color: var(--ink-60); }

/* ---------- Section labels / utilities ---------- */
.bg-ivory { background: var(--ivory); }
.bg-oat { background: var(--oat); }
.pad-top-nav { padding-top: calc(var(--space-2xl) + 60px); }
.flow-between { display: flex; flex-wrap: wrap; gap: var(--space-m); justify-content: space-between; align-items: end; }
.maxw-text { max-width: var(--maxw-text); }
.text-right { text-align: right; }
.mt-l { margin-top: var(--space-l); } .mt-xl { margin-top: var(--space-xl); } .mt-m { margin-top: var(--space-m); }

/* Guard: never let a child force horizontal scroll (all sizes). */
.wrap > * { max-width: 100%; }

/* ---------- Progressive enhancement for larger screens ----------
   Mobile values live in the base rules above; these only scale up.
   (Pure mobile-first: min-width only, no max-width overrides.) */
@media (min-width: 381px) {
  .hero__title { font-size: var(--step-5); }
}
@media (min-width: 601px) {
  .hero { min-height: 100svh; padding-bottom: var(--space-2xl); }
  .hero--split .eyebrow { display: inline-flex; }
  .hero__title { font-size: var(--step-6); }
  .brand { font-size: var(--step-1); }
  .brand small { font-size: 0.56rem; letter-spacing: 0.34em; }
  .menu-toggle { padding: 8px; margin-right: 0; }
  .footer__big { font-size: var(--step-4); }
  .drag-item { width: clamp(220px, 30vw, 380px); }
  /* touch-sized tap targets are only needed on small screens */
  .footer__col a { display: block; min-height: 0; }
  .link { display: inline-block; min-height: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; }
  .grain, .hero__light, .scroll-cue i::after { animation: none; }
  [data-reveal], [data-stagger] > *, .line-mask > span { opacity: 1 !important; transform: none !important; }
  .figure::after, .figure::before { display: none; }
  .figure img { transform: none !important; }
}

/* ---------- No-JS fallback ---------- */
.no-js [data-reveal], .no-js [data-stagger] > *, .no-js .line-mask > span { opacity: 1 !important; transform: none !important; }
.no-js .figure::after { display: none; }
.no-js .figure img { transform: none; }
