/* ===========================================================
   Lilly Nails Lounge — v3  ·  "DARK LUXE"
   Telfar × AnOther × after-hours fashion editorial
   Near-black + jewel tones · NO PINK
   =========================================================== */

:root {
  --black:   #0E0A0C;
  --black-2: #161114;   /* card / panel */
  --black-3: #1E181B;   /* hover / elevated */
  --ivory:   #F4EFE8;
  --ivory-d: #B7B0A6;   /* dimmed ivory */
  --gold:    #C9A35E;
  --emerald: #1F4C44;
  --copper:  #B36A4A;
  --line:    rgba(244,239,232,0.14);
  --line-2:  rgba(244,239,232,0.07);

  --display: "DM Serif Display", Georgia, serif;
  --body:    "Inter", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 76px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { padding-block: clamp(76px, 11vw, 150px); position: relative; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--gold); display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

.section-head { max-width: 760px; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-top: 20px;
  text-transform: uppercase;
}
.section-head .lede {
  margin-top: 20px;
  font-size: 16.5px; line-height: 1.65;
  color: var(--ivory-d); max-width: 56ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.02em;
  padding: 13px 24px; border-radius: 2px;
  min-height: 44px;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
  white-space: nowrap;
}
.btn-ghost-gold {
  border: 1px solid var(--gold); color: var(--gold);
  background: transparent;
}
.btn-ghost-gold:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-ghost-ivory {
  border: 1px solid var(--line); color: var(--ivory); background: transparent;
}
.btn-ghost-ivory:hover { border-color: var(--ivory); transform: translateY(-2px); }
.textlink {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: 14px; color: var(--ivory);
  border-bottom: 1px solid var(--line); padding-bottom: 3px;
  transition: border-color .3s, color .3s;
}
.textlink:hover { border-color: var(--gold); color: var(--gold); }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(14,10,12,0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--pad);
  display: flex; align-items: center; gap: 30px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .eb {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.brand .nm {
  font-family: var(--display); font-size: 21px; letter-spacing: 0.01em;
  color: var(--ivory);
}
.nav-links {
  display: flex; gap: 28px; margin-left: auto;
  font-size: 13.5px; color: var(--ivory-d);
}
.nav-links a { position: relative; padding-bottom: 2px; transition: color .3s; }
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-2px;
  width:0; height:1px; background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  font-family: var(--mono); font-size: 12.5px; color: var(--ivory-d);
  letter-spacing: 0.04em; transition: color .3s; white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }
.nav-book { display: inline-flex; }

/* hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; margin-left: 4px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 2px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  flex: 0 0 auto;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--ivory);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* slide-down panel — collapsed by default at every width */
.nav-panel {
  overflow: hidden; max-height: 0;
  transition: max-height .42s cubic-bezier(0.4,0,0.2,1);
  background: rgba(14,10,12,0.98);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-2);
}
.nav-panel.open { max-height: 70vh; border-bottom: 1px solid var(--line-2); }
.nav-panel a {
  display: flex; align-items: center; min-height: 52px;
  padding: 0 var(--pad); border-bottom: 1px solid var(--line-2);
  font-size: 16px; color: var(--ivory); letter-spacing: 0.02em;
}
.nav-panel a:last-child { border-bottom: none; }
.nav-panel .panel-phone { font-family: var(--mono); font-size: 14px; color: var(--gold); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { padding: 0; min-height: 88vh; display: flex; align-items: stretch; }
.hero-grid {
  flex: 1; display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
}
.hero-copy {
  padding: clamp(48px, 7vw, 96px) var(--pad) clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
}
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ivory);
}
.hero h1 .row { display: block; white-space: nowrap; }
.hero h1 .ltr { display: inline-block; will-change: opacity; }
/* light-pass: only active once JS engages (.lit). No JS = full ivory. */
.hero h1.lit .ltr { opacity: 0.18; transition: opacity .28s ease; }

.hero-lede {
  margin-top: 30px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.62; color: var(--ivory-d);
  max-width: 42ch;
}
.hero-cta { margin-top: 34px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.hero-statbar {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; gap: clamp(20px, 3vw, 44px); flex-wrap: wrap;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.hero-statbar .s strong { color: var(--ivory); font-weight: 500; }
.hero-statbar .sep { color: var(--line); }

.hero-media { position: relative; overflow: hidden; min-height: 70vh; }
.hero-media .reveal-img { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82) saturate(1.05); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 26%, transparent 100%);
  pointer-events: none;
}

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee {
  border-block: 1px solid var(--line-2);
  background: var(--black);
  padding-block: 24px; overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee span {
  font-family: var(--display); font-style: italic;
  font-size: clamp(22px, 2.8vw, 38px);
  padding-inline: 30px; white-space: nowrap; color: var(--ivory);
}
.marquee .sep { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===========================================================
   SERVICES — THE MENU
   =========================================================== */
.menu-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 2.6vw, 40px);
}
.menu-col .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; color: var(--gold); }
.menu-col h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 28px; margin: 8px 0 18px; text-transform: uppercase; letter-spacing: 0.01em;
}
.menu-item {
  display: flex; align-items: baseline; gap: 7px;
  padding: 11px 0; border-bottom: 1px solid var(--line-2);
  font-size: 14px;
}
.menu-item .name { color: var(--ivory-d); }
.menu-item .leader { flex: 1; border-bottom: 1px dotted rgba(201,163,94,0.5); transform: translateY(-3px); }
.menu-item .price { font-family: var(--mono); font-size: 12.5px; color: var(--ivory); letter-spacing: 0.02em; }

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery-grid {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px; gap: 16px;
}
.tile { position: relative; overflow: hidden; border: 1px solid var(--line-2); }
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.92) contrast(1.05);
  transition: filter .6s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 40%, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none; transition: opacity .5s; opacity: 1;
}
.tile:hover img { filter: brightness(1) saturate(1.05); transform: scale(1.03); }
.tile:hover::after { opacity: 0.3; }
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 2; }

/* ===========================================================
   MONOGRAM CRESTS (About + Artists)
   =========================================================== */
.crest {
  position: relative; aspect-ratio: 4 / 5;
  overflow: hidden; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  isolation: isolate; background: var(--black);
}
.crest::before { content: ""; position: absolute; inset: 0; z-index: 0; }
.crest.about::before,
.crest.lilly::before {
  background:
    radial-gradient(110% 90% at 20% 14%, rgba(201,163,94,0.42) 0%, transparent 52%),
    radial-gradient(120% 110% at 84% 86%, rgba(201,163,94,0.22) 0%, transparent 56%),
    linear-gradient(150deg, #14100B, #0C0A0A);
}
.crest.zoe::before {
  background:
    radial-gradient(110% 90% at 18% 16%, rgba(31,76,68,0.66) 0%, transparent 56%),
    radial-gradient(120% 110% at 86% 88%, rgba(201,163,94,0.32) 0%, transparent 58%),
    linear-gradient(150deg, #0C1311, #0A0B0A);
}
.crest.may::before {
  background:
    radial-gradient(110% 90% at 18% 16%, rgba(179,106,74,0.55) 0%, transparent 56%),
    radial-gradient(120% 110% at 84% 86%, rgba(244,239,232,0.22) 0%, transparent 56%),
    linear-gradient(150deg, #140F0C, #0B0A0A);
}
.crest .nail-svg { position: absolute; z-index: 1; opacity: 0.7; }
.crest .nail-svg.tl { top: 20px; left: 20px; }
.crest .nail-svg.br { bottom: 20px; right: 20px; transform: rotate(180deg); }
.crest .heart { position: absolute; z-index: 2; top: 24px; right: 24px; font-size: 19px; opacity: 0.8; }
.crest .letter {
  position: relative; z-index: 2;
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(74px, 11vw, 132px);
  color: var(--ivory); letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.crest .caption {
  position: absolute; z-index: 2; bottom: 20px; left: 22px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.about-crest { max-width: 440px; }
.about-body p {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(20px, 2vw, 27px); line-height: 1.5;
  color: var(--ivory); margin-bottom: 24px;
}
.about-body p.small {
  font-family: var(--body); font-size: 16px; line-height: 1.68; color: var(--ivory-d);
}
.about-sign {
  font-family: var(--display); font-style: italic;
  font-size: 30px; color: var(--gold); text-align: right; margin-top: 14px;
}

/* ARTISTS */
.artists-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 44px);
}
.artist .crest { margin-bottom: 22px; }
.artist .role {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.artist h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 30px; margin: 8px 0 10px; text-transform: uppercase; letter-spacing: 0.01em;
}
.artist .spec { font-size: 15px; color: var(--ivory-d); line-height: 1.56; margin-bottom: 18px; }
.artist .book {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  color: var(--gold); border-bottom: 1px solid var(--line); padding-bottom: 3px;
  display: inline-flex; align-items: center; min-height: 44px; transition: border-color .3s;
}
.artist .book:hover { border-color: var(--gold); }

/* ===========================================================
   TESTIMONIALS — THE RECEIPTS
   =========================================================== */
.receipts { background: var(--black-2); border-block: 1px solid var(--line-2); }
.receipts-top { display: flex; align-items: flex-end; gap: 48px; flex-wrap: wrap; }
.bigscore {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(90px, 14vw, 190px); line-height: 0.78;
  color: var(--gold); letter-spacing: -0.02em;
}
.bigscore .stars { display: block; font-size: 22px; color: var(--gold); letter-spacing: 6px; margin-top: 16px; }
.receipts-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.receipt {
  background: var(--black); border: 1px solid var(--line);
  padding: 32px; display: flex; flex-direction: column;
}
.receipt .qmark { font-family: var(--display); font-style: italic; font-size: 52px; color: var(--gold); line-height: 0.5; }
.receipt p { font-size: 16px; line-height: 1.64; color: var(--ivory); margin: 18px 0 26px; }
.receipt .by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.receipt .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--black-3); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.receipt .src { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ===========================================================
   INSTAGRAM
   =========================================================== */
.ig-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line-2); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62) saturate(0.95); transition: filter .5s, transform .6s ease; }
.ig-tile::after {
  content: "🤍"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; background: rgba(14,10,12,0.4); opacity: 0; transition: opacity .3s;
}
.ig-tile:hover::after { opacity: 1; }
.ig-tile:hover img { filter: brightness(1) saturate(1.05); transform: scale(1.06); }
.ig-handle {
  display: block; text-align: center; margin-top: 40px;
  font-family: var(--display); font-style: italic; font-size: clamp(30px, 4vw, 54px);
  color: var(--gold); transition: opacity .3s;
}
.ig-handle:hover { opacity: 0.78; }

/* ===========================================================
   VISIT
   =========================================================== */
.visit-grid { margin-top: 52px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; }
.visit-card { background: var(--black-2); border: 1px solid var(--line); overflow: hidden; }
.visit-card.main { display: grid; grid-template-columns: 1fr 1.1fr; }
.visit-info { padding: clamp(30px, 3vw, 48px); display: flex; flex-direction: column; }
.visit-info .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.visit-info h3 { font-family: var(--display); font-weight: 400; font-size: 32px; margin-bottom: 14px; text-transform: uppercase; }
.visit-info .addr { font-size: 16px; line-height: 1.66; color: var(--ivory-d); margin-bottom: 10px; }
.visit-info .phone { font-family: var(--mono); font-size: 14px; color: var(--ivory); margin-bottom: 28px; }
.visit-info .btn { align-self: flex-start; margin-top: auto; }
.visit-map { min-height: 300px; background: var(--black-3); }
.visit-map iframe { width: 100%; height: 100%; min-height: 300px; display: block; filter: grayscale(0.4) contrast(1.05) brightness(0.92); }
.visit-card.sister { display: flex; flex-direction: column; }
.visit-card.sister .visit-info { height: 100%; }

/* ===========================================================
   FOOTER CTA + FOOTER
   =========================================================== */
.footer-cta { text-align: center; border-top: 1px solid var(--line-2); }
.footer-cta .eyebrow { justify-content: center; margin-bottom: 26px; }
.footer-cta h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(48px, 9vw, 128px); line-height: 0.92;
  letter-spacing: -0.015em; text-transform: uppercase; color: var(--ivory);
}
.footer-cta .btn { margin-top: 40px; }

.footer { background: #0A0709; border-top: 1px solid var(--line-2); padding-block: 64px 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .wordmark { font-family: var(--display); font-size: 28px; color: var(--ivory); }
.footer .wordmark + p { margin-top: 14px; font-size: 14px; line-height: 1.6; max-width: 32ch; color: var(--ivory-d); }
.footer h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--ivory-d); }
.footer ul a { transition: color .3s; }
.footer ul a:hover { color: var(--ivory); }
.footer-bottom {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; color: rgba(244,239,232,0.4);
}

/* ===========================================================
   IMAGE-MASK SCROLL REVEAL
   CSS is source of truth. No .js-reveal class (= no JS) -> images fully visible.
   =========================================================== */
.js-reveal .reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.05s cubic-bezier(0.7, 0, 0.18, 1);
}
.js-reveal .reveal.in { clip-path: inset(0 0 0 0); }

/* ===========================================================
   PEXELS SAFETY-NET PLACEHOLDER  (dark + gold stripes)
   =========================================================== */
.img-fallback {
  background-color: #14100F;
  background-image: repeating-linear-gradient(
    45deg,
    #1A1512 0 16px,
    rgba(201,163,94,0.16) 16px 18px,
    #1A1512 18px 34px);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

/* ---- <=1024px : hero becomes an editorial overlay (text over photo) ---- */
@media (max-width: 1024px) {
  .hero { min-height: 84vh; position: relative; }
  .hero-grid { display: block; position: relative; min-height: 84vh; }
  .hero-media {
    position: absolute; inset: 0; min-height: 100%; order: 0;
  }
  .hero-media img { filter: brightness(0.5) saturate(1.02); }
  .hero-media::after {
    background: linear-gradient(180deg,
      rgba(14,10,12,0.35) 0%,
      rgba(14,10,12,0.62) 55%,
      rgba(14,10,12,0.92) 100%);
  }
  .hero-copy {
    position: relative; z-index: 2; min-height: 84vh;
    justify-content: flex-end;
    padding: clamp(40px, 9vw, 90px) var(--pad) clamp(40px, 8vw, 72px);
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ---- <=860px : collapse nav to hamburger (full inline nav stops fitting here) ---- */
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-book { margin-left: auto; }
}

/* ---- <=768px : single-column site-wide ---- */
@media (max-width: 768px) {
  section { padding-block: clamp(60px, 12vw, 96px); }
  .menu-grid { grid-template-columns: 1fr; gap: 8px; }
  .menu-col { padding-bottom: 8px; }
  .artists-grid { grid-template-columns: 1fr; max-width: 460px; }
  .receipts-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-crest { max-width: 380px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-card.main { grid-template-columns: 1fr; }
  .visit-map, .visit-map iframe { min-height: 300px; height: 300px; }
  /* body floor: keep reading text >=16px */
  .artist .spec, .menu-item { font-size: 16px; }
  .menu-item .price { font-size: 14px; }
}

/* ---- <=640px : hamburger nav + tighter hero type ---- */
@media (max-width: 640px) {
  .nav-inner { gap: 12px; }
  .nav-book { padding: 11px 15px; font-size: 12.5px; min-height: 44px; }
  .brand .nm { font-size: 16px; }
  .hero h1 { font-size: clamp(40px, 13vw, 70px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { font-size: 10px; }
}

/* ===========================================================
   REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .js-reveal .reveal { clip-path: none !important; transition: none !important; }
  .hero h1.lit .ltr { opacity: 1 !important; transition: none !important; }
}
