/* ============================================================
   SUPERVISION USA — design system
   Palette derived from the brand logo · white background
   Structure: tokens → base → typography → layout → components
   ============================================================ */

/* ---------- 1. Design tokens ---------- */

:root {
  /* brand palette (from logo) */
  --white: #FFFFFF;          /* page background */
  --surface: #F4F5F8;        /* soft gray section background */
  --ink: #2E2B35;            /* logo charcoal */
  --ink-soft: #5A5763;
  --red: #D7453A;            /* logo red */
  --red-deep: #B23328;
  --navy: #283E8B;           /* logo navy */
  --navy-deep: #1E2F6B;
  --navy-pale: #E8EBF6;      /* pale navy tint */
  --gray-pale: #EEEFF3;      /* light neutral gray */
  --periwinkle: #9DACE0;     /* accent for dark surfaces */
  --line: rgba(46, 43, 53, 0.14);
  --on-dark: rgba(255, 255, 255, 0.8);
  --on-dark-soft: rgba(255, 255, 255, 0.6);

  /* type */
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --max: 1220px;
}

/* ---------- 2. Base ---------- */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--navy-pale); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- 3. Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.display-xl { font-size: clamp(3rem, 8.5vw, 7rem); }
/* keeps each heading line on a single line at every viewport width:
   the font scales with vw so the longest line never exceeds the container */
.hero-oneline { white-space: nowrap; font-size: clamp(1.1rem, 6.2vw, 4.4rem); }
.display-lg { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
.display-md { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
.display-sm { font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.2; }

.italic { font-style: italic; }
.accent { color: var(--red); }
.navy-text { color: var(--navy); }
.muted { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before { content: ""; width: 2.2em; height: 1px; background: currentColor; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 34em;
}

.small { font-size: 0.85rem; color: var(--ink-soft); }
.note { font-size: 0.85rem; color: var(--ink-soft); font-style: italic; }

.closing-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  max-width: 22em;
  margin: 0 auto;
  line-height: 1.3;
}

.quote-serif {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
}

/* ---------- 4. Layout ---------- */

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); }

.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
.align-center { align-items: center; }
.align-start { align-items: start; }
.align-end { align-items: end; }

.c1 { grid-column-start: 1; }  .c2 { grid-column-start: 2; }
.c3 { grid-column-start: 3; }  .c4 { grid-column-start: 4; }
.c5 { grid-column-start: 5; }  .c6 { grid-column-start: 6; }
.c7 { grid-column-start: 7; }  .c8 { grid-column-start: 8; }
.c9 { grid-column-start: 9; }  .c10 { grid-column-start: 10; }
.s3 { grid-column-end: span 3; } .s4 { grid-column-end: span 4; }
.s5 { grid-column-end: span 5; } .s6 { grid-column-end: span 6; }
.s7 { grid-column-end: span 7; } .s8 { grid-column-end: span 8; }
.s9 { grid-column-end: span 9; } .s10 { grid-column-end: span 10; }
.s12 { grid-column-end: span 12; }

/* uneven vertical rhythm — the broken-grid feel (moderated for balance) */
.drop-1 { margin-top: clamp(1rem, 2.5vw, 2.5rem); }
.drop-2 { margin-top: clamp(1.8rem, 4vw, 4rem); }
.drop-3 { margin-top: clamp(2.4rem, 5vw, 5.5rem); }
.lift-1 { margin-top: clamp(-4rem, -6vw, -1.5rem); }

.tilt-l { transform: rotate(-1.6deg); }
.tilt-r { transform: rotate(1.4deg); }

.nudge-l { margin-left: clamp(0rem, 4vw, 3rem); }
.nudge-r { margin-right: clamp(0rem, 4vw, 3rem); }
.nudge-l-lg { margin-left: clamp(0rem, 6vw, 4.5rem); }

/* spacing utilities */
.mt-xs { margin-top: 0.6rem; }
.mt-sm { margin-top: 0.8rem; }
.mt-md { margin-top: 1.2rem; }
.mt-lg { margin-top: 1.8rem; }
.mt-xl { margin-top: 2.2rem; }

.center { text-align: center; }
.text-right { text-align: right; }
.self-center { justify-self: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.measure-sm { max-width: 20em; }
.measure-md { max-width: 36em; }
.stack { display: grid; gap: 1.2rem; }
.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.cta-row.center-row { justify-content: center; }
.z1 { position: relative; z-index: 1; }

section { padding: clamp(3rem, 6.5vw, 6.5rem) 0; position: relative; }
section.tight { padding: clamp(1.5rem, 4vw, 3.5rem) 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.hero { padding: clamp(8rem, 16vw, 12rem) 0 clamp(2rem, 5vw, 4rem); position: relative; }
.hero.tall { padding: clamp(8rem, 16vw, 13rem) 0 clamp(3rem, 7vw, 6rem); }

/* ---------- 5. Navigation ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.wordmark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.wordmark img { height: 34px; width: auto; display: block; }
.mark-icon { height: 46px; width: auto; flex: none; }
.mark-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--ink);
  white-space: nowrap;
}
.mark-text small {
  display: block;
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.31em;
  color: var(--periwinkle);
  margin-top: 2px;
}
footer .mark-text { color: #fff; }
footer .mark-icon { height: 44px; }
footer .wordmark { margin-bottom: 0.5rem; }

.nav-links { display: flex; align-items: center; gap: clamp(0.9rem, 1.6vw, 1.8rem); list-style: none; }
.nav-links li { flex: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); }
/* nav CTAs: button colors must not be overridden by the .nav-links a rules above */
.nav-links a.btn, .nav-links a.btn:hover { color: var(--ink); }
.nav-links a.btn-navy, .nav-links a.btn-navy:hover { color: #fff; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem clamp(1.2rem, 4vw, 3rem) 1.6rem;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
}

/* ---------- 6. Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(46,43,53,0.15); }
.btn-solid { background: var(--red); border-color: var(--red); color: #fff; }
.btn-solid:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-sm { padding: 0.6em 1.3em; font-size: 0.85rem; }
.btn-light { border-color: #fff; color: #fff; }
.btn-accent-ghost { border-color: var(--periwinkle); color: var(--periwinkle); }

/* ---------- 7. Decorative ---------- */

.tape {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 0.45em 1.1em;
  transform: rotate(-2deg);
  box-shadow: 2px 3px 0 rgba(46,43,53,0.18);
}
.tape.navy { background: var(--navy); color: #fff; }
.tape.pale { background: var(--navy-pale); color: var(--navy); }

.blob {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.blob.gray { background: var(--gray-pale); }
.blob.navy { background: var(--navy-pale); }
.blob.pos-tr { top: -80px; right: -120px; }
.blob.pos-tl { top: -60px; left: -120px; }
.blob.pos-br { bottom: -60px; right: -100px; }
.blob.pos-bl { bottom: -60px; left: -100px; }

.rule { border: none; border-top: 1px solid var(--line); }

.big-num {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 1;
  color: var(--red);
  font-style: italic;
}

/* ---------- 8. Cards ---------- */

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.4rem, 2.6vw, 2.4rem);
  box-shadow: 0 10px 30px rgba(46,43,53,0.06);
}
.card.gray { background: var(--surface); }
.card.navy-pale { background: var(--navy-pale); }
.card.pale { background: var(--gray-pale); }
.card.ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.card.ink .lede, .card.ink .small, .card.ink p { color: var(--on-dark); }
.card.ink .display-sm, .card.ink .display-md { color: #fff; }
.card h3 { margin-bottom: 0.5em; }
.card p + p { margin-top: 0.8em; }
.card.pad-lg { padding: clamp(2rem, 5vw, 4rem); border-radius: 32px; }
.card.shadow-lg { box-shadow: 0 20px 50px rgba(46,43,53,0.25); }

.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.card.ink .card-label { color: var(--periwinkle); }

.list-dash { list-style: none; display: grid; gap: 0.7rem; font-size: 0.95rem; color: var(--ink-soft); }
.card.ink .list-dash { color: var(--on-dark); }

.price-line { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; }
.price { font-family: var(--serif); }

/* ---------- 9. Stats ---------- */

.stat { border-left: 3px solid var(--red); padding-left: 1.2rem; }
.stat .num { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1; font-style: italic; }
.stat .cap {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 20em;
}

/* ---------- 10. Marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--surface);
  white-space: nowrap;
}
.marquee-track { display: inline-block; animation: marquee 36s linear infinite; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 1.25rem; margin: 0 2.2rem; color: var(--ink-soft); }
.marquee b { color: var(--red); font-weight: 500; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 11. Phone mockup ---------- */

.phone {
  width: min(290px, 78vw);
  border-radius: 42px;
  background: var(--ink);
  padding: 12px;
  box-shadow: 0 30px 70px rgba(46,43,53,0.3);
}
.phone-screen {
  border-radius: 32px;
  background: linear-gradient(170deg, #FDFDFE 0%, #E8EBF6 100%);
  overflow: hidden;
  aspect-ratio: 9 / 19;
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
}
.phone-top { padding: 1rem 1rem 0.7rem; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--ink-soft); }
.phone-body { flex: 1; padding: 0 0.9rem; display: flex; flex-direction: column; gap: 0.55rem; }
.chip { background: #fff; border-radius: 14px; padding: 0.7rem 0.85rem; box-shadow: 0 3px 10px rgba(46,43,53,0.07); }
.chip b { display: block; font-size: 0.74rem; }
.chip span { color: var(--ink-soft); font-size: 0.66rem; }
.chip.rec { border-left: 3px solid var(--red); }
.chip.geo { border-left: 3px solid var(--navy); }
.pulse {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); margin-right: 5px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- 12. Timeline ---------- */

.tl { border-left: 2px solid var(--red); padding: 0 0 1.8rem 1.5rem; }
.tl:last-child { padding-bottom: 0; }
.tl.navy { border-left-color: var(--navy); }
.tl.peri { border-left-color: var(--periwinkle); }
.tl.offset { margin-left: clamp(0rem, 3vw, 2.5rem); }
.tl b { font-family: var(--serif); font-size: 1.15rem; }
.tl p { margin-top: 0.3rem; }

/* ---------- 13. FAQ ---------- */

.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 2.5rem 1.3rem 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0.3rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--red);
  transition: transform 0.2s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-a { padding: 0 0 1.4rem; color: var(--ink-soft); max-width: 46em; }
.faq .faq-a p + p { margin-top: 0.7em; }

/* ---------- 12b. Legal page ---------- */

.legal-nav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legal-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.legal-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.legal-nav a:hover { color: var(--red); }

.legal { scroll-margin-top: 130px; }
.legal-body h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 2rem 0 0.6rem;
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { color: var(--ink-soft); margin-bottom: 0.6rem; }
.legal-body ul, .legal-body ol {
  color: var(--ink-soft);
  padding-left: 1.3rem;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}
.legal-body b { color: var(--ink); font-weight: 600; }

/* ---------- 13a. Founders letter & PBC seal ---------- */

.letter {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 24px 60px rgba(46,43,53,0.14);
  position: relative;
  transform: rotate(-0.4deg);
}
.letter::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 60%, var(--red) 100%);
}
.letter-logo { height: 34px; width: auto; margin-bottom: 2rem; }
.letter-mark { margin-bottom: 2rem; }
.letter p { margin-top: 1.1rem; color: var(--ink-soft); line-height: 1.75; }
.letter-salutation {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink) !important;
}
.letter-signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink) !important;
  margin-top: 2.2rem !important;
}
.letter-sig { font-weight: 600; display: inline-block; margin-top: 0.3rem; }
@media (max-width: 880px) { .letter { transform: none; } }

.pbc-seal {
  width: clamp(160px, 20vw, 200px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px double var(--navy);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.2rem;
  padding: 1.2rem;
  color: var(--navy);
  background: var(--navy-pale);
  transform: rotate(-6deg);
  font-family: var(--serif);
}
.pbc-seal b { font-size: 2.2rem; line-height: 1; letter-spacing: 0.06em; }
.pbc-seal small {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ---------- 13b. Contact overlay ---------- */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 43, 53, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
}
.overlay.open { display: flex; }

.modal {
  background: #fff;
  border-radius: 22px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
  box-shadow: 0 30px 70px rgba(46,43,53,0.35);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.modal-close:hover { color: var(--red); }

.contact-form { display: grid; gap: 0.9rem; }
.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7em 0.9em;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button[type="submit"] { justify-self: start; }
.form-status.ok { color: var(--navy); }
.form-status.err { color: var(--red); }

/* ---------- 14. Footer ---------- */

footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(3rem, 7vw, 6rem) 0 2.5rem;
  margin-top: clamp(3rem, 8vw, 8rem);
}
footer a { color: var(--on-dark); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--periwinkle); }
.foot-logo { height: 44px; width: auto; background: #fff; padding: 10px 16px; border-radius: 12px; box-sizing: content-box; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: clamp(1.5rem, 4vw, 3.5rem); margin: 3rem 0 3.5rem; }
.foot-grid h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 1rem; font-weight: 600; }
.foot-grid ul { list-style: none; display: grid; gap: 0.55rem; font-size: 0.92rem; }
.foot-note { font-size: 0.9rem; color: var(--on-dark); }
.newsletter { display: flex; gap: 0.5rem; margin-top: 0.8rem; }
.newsletter input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 0.7em 1.2em;
  color: #fff;
  font-family: var(--sans);
}
.newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.78rem; color: var(--on-dark-soft);
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- 15. Motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- 16. Responsive collapse ---------- */

@media (max-width: 880px) {
  .grid-12 > * { grid-column: 1 / -1 !important; }
  .drop-1, .drop-2, .drop-3 { margin-top: 2rem; }
  .lift-1 { margin-top: 0; }
  .tilt-l, .tilt-r { transform: none; }
}
