/* ============================================================
   IARA MOREIRA NAILS — Design System
   Stack: HTML + CSS + JS puro | Mobile-first
   Paleta: areia quente + clay rose + dourado champagne
   Tipografia: Fraunces (display) + Manrope (texto/UI)
   ============================================================ */

/* ==================== TOKENS ==================== */
:root {
  /* Cores base */
  --bg:        #FBF6F1;  /* areia clara, fundo */
  --bg-alt:    #F4EAE1;  /* areia um tom mais quente */
  --surface:   #FFFDFB;  /* cards */
  --ink:       #2B2019;  /* texto principal, marrom escuro */
  --ink-2:     #6F5E53;  /* texto secundário, taupe */
  --line:      #E8D9CD;  /* bordas */

  /* Marca */
  --clay:      #C07A63;  /* primária, detalhes e ícones */
  --clay-deep: #9A5238;  /* texto/links/eyebrow sobre claro */
  --clay-soft: #ECDDD3;  /* tints */
  --gold:      #BD9A5F;  /* acento metálico */
  --gold-deep: #8F6F3E;

  /* Verde litorâneo (uso pontual) */
  --sage:      #9CAA9B;

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espaçamento (grid 8px) */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Raio */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-full: 9999px;

  /* Sombras quentes */
  --sh-sm: 0 2px 8px rgba(74, 44, 30, 0.06);
  --sh-md: 0 10px 30px rgba(74, 44, 30, 0.10);
  --sh-lg: 0 24px 60px rgba(74, 44, 30, 0.16);

  /* Transições */
  --t-fast: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-norm: 320ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
}

/* ==================== RESET ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
em { font-style: italic; }

::selection { background: var(--clay); color: #fff; }

:focus-visible {
  outline: 2px solid var(--clay-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==================== LAYOUT ==================== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink); color: #F3E7DD; }

.section__head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__sub { color: var(--ink-2); font-size: 1.0625rem; margin-top: var(--s-4); }
.section--ink .section__sub { color: #C9B8AC; }

/* ==================== TIPOGRAFIA ==================== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; }
h1 em, h2 em { color: var(--clay-deep); }
.section--ink h2 em { color: #E0A98E; }

h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: 1.3125rem; letter-spacing: -0.01em; line-height: 1.25; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--clay-deep);
  margin-bottom: var(--s-5);
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #E0A98E; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.eyebrow--light .eyebrow__dot { background: #E0A98E; }

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1rem 1.75rem; border-radius: var(--r-full);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  min-height: 48px; white-space: nowrap; border: 1.5px solid transparent;
}
.btn--sm { padding: 0.6rem 1.1rem; min-height: 40px; font-size: 0.9375rem; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.0625rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, #A85C40 0%, #8E4A31 100%);
  color: #FFF7F1;
  box-shadow: 0 8px 22px rgba(138, 70, 46, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(138, 70, 46, 0.38); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent; color: var(--clay-deep);
  border-color: var(--clay);
}
.btn--ghost:hover { background: var(--clay-soft); transform: translateY(-2px); }
.btn--ghost-light { color: #F3E7DD; border-color: rgba(243,231,221,0.4); }
.btn--ghost-light:hover { background: rgba(243,231,221,0.1); }

.ico { flex-shrink: 0; }

/* ==================== HEADER / NAV ==================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background var(--t-norm), box-shadow var(--t-norm), backdrop-filter var(--t-norm);
}
.site-header.scrolled {
  background: rgba(251, 246, 241, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--sh-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); padding-block: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { color: var(--clay); display: grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; letter-spacing: -0.01em; }
.brand__text small { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink-2); }

.nav__links { display: none; gap: var(--s-8); margin-left: auto; }
.nav__links a { font-weight: 500; font-size: 0.9375rem; position: relative; padding-block: 4px; color: var(--ink); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--clay); transition: width var(--t-fast);
}
.nav__links a:hover { color: var(--clay-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: none; }

/* Hamburger */
.nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-mobile {
  display: flex; flex-direction: column; gap: var(--s-2);
  padding: var(--s-4) var(--gutter) var(--s-8);
  background: rgba(251, 246, 241, 0.97); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.menu-mobile a { padding: 0.9rem 0; font-size: 1.125rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.menu-mobile a.btn { border: none; justify-content: center; margin-top: var(--s-4); color: #FFF7F1; }
.menu-mobile[hidden] { display: none; }  /* corrige: display:flex anulava o atributo hidden */

/* ==================== HERO ==================== */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(45% 40% at 80% 15%, rgba(192, 122, 99, 0.18), transparent 70%),
    radial-gradient(40% 45% at 10% 60%, rgba(189, 154, 95, 0.14), transparent 70%);
}
.hero__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }

.hero__title {
  font-size: clamp(2.6rem, 8vw, 4.75rem);
  font-weight: 500; letter-spacing: -0.03em; margin-bottom: var(--s-6);
}
.hero__lead { font-size: clamp(1.0625rem, 2.2vw, 1.25rem); color: var(--ink-2); max-width: 30ch; margin-bottom: var(--s-8); }
.hero__lead strong { color: var(--ink); font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-8); }

.hero__trust { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.9rem; color: var(--ink-2); font-weight: 500; }
.hero__trust span { color: var(--gold-deep); }

/* Hero media */
.hero__media { position: relative; }
.hero__photo { overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main { aspect-ratio: 4/5; }
.hero__photo--float {
  position: absolute; right: -6%; bottom: -10%; width: 42%; aspect-ratio: 3/4;
  border: 5px solid var(--bg); border-radius: var(--r-md); box-shadow: var(--sh-md);
}
.hero__badge {
  position: absolute; left: -4%; top: 8%;
  background: var(--surface); border-radius: var(--r-full);
  padding: 0.85rem 1.1rem; display: flex; flex-direction: column; align-items: center; line-height: 1;
  box-shadow: var(--sh-md); border: 1px solid var(--line);
}
.hero__badge strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--clay-deep); }
.hero__badge span { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-2); margin-top: 3px; }

/* ==================== MARQUEE ==================== */
.marquee { background: var(--ink); color: #F3E7DD; padding-block: 1.1rem; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: var(--s-6); animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; font-style: italic; }
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ==================== SOBRE ==================== */
.sobre__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.sobre__media { position: relative; max-width: 460px; margin-inline: auto; }
.sobre__photo { overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--sh-lg); aspect-ratio: 4/5; }
.sobre__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 32%; }
.sobre__sticker {
  position: absolute; right: -10px; bottom: 24px;
  background: var(--gold); color: #fff; font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  padding: 0.6rem 1.2rem; border-radius: var(--r-full); box-shadow: var(--sh-md); transform: rotate(-4deg);
}
.sobre__content p { color: var(--ink-2); margin-bottom: var(--s-4); }
.sobre__content p strong { color: var(--ink); }
.sobre__values { margin: var(--s-6) 0; display: flex; flex-direction: column; gap: var(--s-3); }
.sobre__values li { display: flex; align-items: center; gap: var(--s-3); font-weight: 500; }
.check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--clay-soft); color: var(--clay-deep);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 700;
}
.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; color: var(--clay-deep); }
.link-arrow span { transition: transform var(--t-fast); }
.link-arrow:hover span { transform: translateX(5px); }

/* ==================== SERVIÇOS ==================== */
.cards { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem); position: relative;
  transition: transform var(--t-norm), box-shadow var(--t-norm), border-color var(--t-norm);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--clay); }
.card__num {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--clay); display: inline-block; margin-bottom: var(--s-4);
  border: 1.5px solid var(--clay-soft); border-radius: var(--r-full); padding: 0.2rem 0.7rem;
  transition: background var(--t-norm), color var(--t-norm), border-color var(--t-norm);
}
.card:hover .card__num { background: var(--clay); color: #fff; border-color: var(--clay); }
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--ink-2); font-size: 0.975rem; }

.servicos__foot { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }
.servicos__foot p { color: var(--ink-2); margin-bottom: var(--s-5); }

/* ==================== GALERIA ==================== */
.grid-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); grid-auto-flow: dense; }
.shot {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 1/1; display: block; width: 100%; background: var(--clay-soft);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.shot::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,32,25,0.6), transparent 55%);
  opacity: 0; transition: opacity var(--t-norm);
}
.shot:hover img { transform: scale(1.07); }
.shot:hover::after { opacity: 1; }
.shot__cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 1; color: #fff;
  font-weight: 600; font-size: 0.9rem; opacity: 0; transform: translateY(8px);
  transition: opacity var(--t-norm), transform var(--t-norm);
}
.shot:hover .shot__cap { opacity: 1; transform: translateY(0); }
.shot--tall { grid-row: span 2; aspect-ratio: 1/2; }
.galeria__foot { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ==================== PROCESSO ==================== */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--s-8); max-width: 980px; margin-inline: auto; }
.step { position: relative; padding-top: var(--s-8); }
.step__num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; color: var(--gold);
  display: inline-grid; place-items: center; width: 64px; height: 64px;
  border: 1.5px solid rgba(189,154,95,0.4); border-radius: 50%; margin-bottom: var(--s-4);
}
.step h3 { margin-bottom: var(--s-2); color: #FBF1E8; }
.step p { color: #C9B8AC; }

/* ==================== DEPOIMENTOS ==================== */
.depo__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column; gap: var(--s-4);
}
.stars { color: var(--gold); letter-spacing: 2px; }
.quote blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; line-height: 1.45; color: var(--ink); flex-grow: 1; }
.quote figcaption { display: flex; flex-direction: column; }
.quote figcaption strong { font-weight: 600; }
.quote figcaption span { font-size: 0.85rem; color: var(--clay-deep); }

/* ==================== FAQ ==================== */
.faq__wrap { max-width: 760px; }
.accordion { display: flex; flex-direction: column; gap: var(--s-3); }
.accordion details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.accordion details[open] { border-color: var(--clay); box-shadow: var(--sh-sm); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  font-weight: 600; font-size: 1.0625rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+'; font-family: var(--font-display); font-size: 1.6rem; color: var(--clay-deep);
  transition: transform var(--t-norm); line-height: 1;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion__body { padding: 0 1.4rem 1.25rem; color: var(--ink-2); }

/* ==================== CONTATO ==================== */
.contato__wrap { text-align: center; max-width: 760px; margin-inline: auto; }
.contato__lead { color: #C9B8AC; font-size: 1.125rem; margin: var(--s-4) 0 var(--s-8); }
.contato__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-bottom: var(--s-12); }
.contato__info { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-6) var(--s-10); }
.contato__info li { display: flex; flex-direction: column; gap: 2px; font-size: 0.95rem; }
.contato__info strong { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); font-weight: 600; }

/* ==================== FOOTER ==================== */
.site-footer { background: #20160F; color: #C9B8AC; padding-block: var(--s-12) var(--s-6); }
.footer__grid { display: grid; gap: var(--s-8); padding-bottom: var(--s-8); border-bottom: 1px solid rgba(243,231,221,0.12); }
.footer__brand { display: flex; gap: var(--s-3); align-items: flex-start; }
.footer__brand .brand__mark { color: var(--clay); }
.footer__brand strong { font-family: var(--font-display); font-size: 1.3rem; color: #FBF1E8; display: block; }
.footer__brand p { font-size: 0.9rem; margin-top: 4px; max-width: 30ch; }
.footer__nav { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); }
.footer__nav a { font-weight: 500; transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--clay); }
.footer__social a { display: inline-flex; align-items: center; gap: 0.6em; transition: color var(--t-fast); }
.footer__social a:hover { color: var(--clay); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-2); padding-top: var(--s-6); font-size: 0.85rem; }

/* ==================== WHATSAPP FLOAT + CTA BAR ==================== */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
  transition: transform var(--t-fast);
}
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); animation: pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse { to { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); } }

.cta-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(251, 246, 241, 0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(28, 18, 12, 0.88); backdrop-filter: blur(6px); padding: var(--gutter);
  opacity: 0; animation: fade-in var(--t-norm) forwards;
}
.lightbox[hidden] { display: none; }
.lightbox__fig { max-width: 560px; text-align: center; }
.lightbox__fig img { max-height: 80vh; width: auto; margin-inline: auto; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lightbox__fig figcaption { color: #F3E7DD; margin-top: var(--s-4); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }
.lightbox__close { position: absolute; top: 18px; right: 24px; color: #fff; font-size: 2.4rem; line-height: 1; width: 48px; height: 48px; }
@keyframes fade-in { to { opacity: 1; } }

/* ==================== REVEAL (scroll animation) ==================== */
/* Progressive enhancement: visível por padrão; só anima quando há JS (classe .js no <html>) */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--t-slow), transform var(--t-slow); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ==================== RESPONSIVO ==================== */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .depo__grid { grid-template-columns: repeat(3, 1fr); }
  .grid-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .cta-bar { display: none !important; }
}

@media (max-width: 767px) {
  .cta-bar { display: block; }
  .wa-float { bottom: 78px; }
  .hero__photo--float { width: 38%; right: 0; bottom: -6%; }
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .menu-mobile { display: none !important; }

  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .sobre__grid { grid-template-columns: 0.85fr 1fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-12); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; align-items: start; }
}

@media (min-width: 1024px) {
  .grid-gallery { grid-template-columns: repeat(4, 1fr); }
}

/* ==================== MOTION OFF ==================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}
