/* =========================================================
   Rodnel Tha Grooming Specialist: shared stylesheet
   Design: modern-classic. Charcoal + warm gold + bone white.
   ========================================================= */

:root {
  --bg:        #14110f;   /* near-black charcoal */
  --bg-2:      #1c1916;   /* card / section alt  */
  --bg-3:      #262019;   /* hover / borders     */
  --ink:       #f4efe7;   /* bone white text     */
  --ink-soft:  #b3a99c;   /* muted text          */
  --gold:      #c79a4b;   /* brass / gold accent */
  --gold-2:    #e3bd72;   /* lighter gold        */
  --green:     #a6e22e;   /* neon brand green    */
  --green-2:   #c4f25a;   /* lighter green       */
  --line:      #312a22;   /* hairline border     */
  --maxw:      1140px;
  --radius:    14px;
  --shadow:    0 18px 50px rgba(0,0,0,.45);
  --font-head: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.02;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 8vw, 5.6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: 1.35rem; letter-spacing: .5px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.gold { color: var(--gold); }
.lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #1a140a; }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20,17,15,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: #1a140a;
  font-family: var(--font-head); font-size: 1.3rem; line-height: 1;
}
.brand .name { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 1px; }
.brand .name small { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .25em; color: var(--ink-soft); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .08em;
  position: relative; padding: 4px 0; transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--gold);
}
.nav-cta { margin-left: 6px; }
.nav-links a.btn { color: #1a140a; padding: 11px 22px; text-transform: none; letter-spacing: 0; font-weight: 600; }
.nav-links a.btn:hover { color: #1a140a; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: var(--ink); transition: .25s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before, .nav-toggle span::after { left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.bg-2 { background: var(--bg-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  padding: 0; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,15,.55) 0%, rgba(20,17,15,.78) 55%, var(--bg) 100%),
    radial-gradient(1200px 600px at 70% -10%, rgba(199,154,75,.22), transparent 60%),
    repeating-linear-gradient(45deg, #1b1714 0 22px, #181410 22px 44px);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 1.5px var(--gold); }
.hero .lead { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; width: 100%; }
.hero-grid h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
.hero-portrait { position: relative; }
.hero-portrait img {
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: 52% center;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hero-portrait::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(199,154,75,.4); border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.hero-meta { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 32px; margin-top: 48px; }
.hero-meta .stat .n { font-family: var(--font-head); font-size: 2.4rem; color: var(--gold); }
.hero-meta .stat .l { font-size: .72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .12em; }

/* ---------- Feature row / cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card .ico {
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 18px;
  display: grid; place-items: center;
  border: 1px solid rgba(199,154,75,.4);
  background: radial-gradient(circle at 30% 25%, rgba(199,154,75,.16), transparent 70%);
}
.card .ico svg {
  width: 24px; height: 24px; fill: none; stroke: var(--gold-2);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Services / price list ---------- */
.price-list { display: grid; gap: 0; }
.price-row {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 18px;
  padding: 22px 0; border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .svc-name { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: .5px; }
.price-row .svc-desc { color: var(--ink-soft); font-size: .92rem; margin-top: 2px; }
.price-row .svc-price { font-family: var(--font-head); font-size: 1.7rem; color: var(--gold); white-space: nowrap; }
.duration {
  display: inline-block; vertical-align: middle; margin-left: 10px;
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); border: 1px solid rgba(166,226,46,.4);
  border-radius: 999px; padding: 3px 10px;
}

/* Four-up grid (brand pillars) */
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* "Every experience includes" list */
.includes { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 28px; margin-top: 8px; }
.includes li { display: flex; gap: 10px; color: var(--ink-soft); font-size: .96rem; }
.includes li::before { content: "✓"; color: var(--green); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid .tile {
  aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
  background: var(--bg-3); border: 1px solid var(--line);
  display: grid; place-items: center; position: relative;
  font-family: var(--font-head); color: var(--ink-soft); font-size: 1.1rem;
  letter-spacing: 1px; text-align: center; padding: 10px;
}
.gallery-grid img.tile { object-fit: cover; width: 100%; height: 100%; padding: 0; transition: transform .4s ease, border-color .2s ease; }
.gallery-grid img.tile:hover { transform: scale(1.015); border-color: var(--gold); }
.gallery-grid .tile-cta {
  aspect-ratio: 4/5; border-radius: 12px; border: 1px dashed rgba(199,154,75,.45);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px;
  padding: 28px; background: radial-gradient(420px 300px at 80% 0%, rgba(199,154,75,.16), transparent 65%), var(--bg-2);
  transition: border-color .2s ease;
}
.gallery-grid .tile-cta:hover { border-color: var(--gold); }
.gallery-grid .tile-cta .big { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.02; letter-spacing: 1px; text-transform: uppercase; }
.gallery-grid .tile-cta .handle { color: var(--gold); font-weight: 600; font-size: .92rem; word-break: break-word; }
img.portrait { object-fit: cover; width: 100%; height: auto; }

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.portrait {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(400px 300px at 30% 20%, rgba(199,154,75,.25), transparent 60%),
    var(--bg-3);
  border: 1px solid var(--line); display: grid; place-items: center;
  font-family: var(--font-head); color: var(--ink-soft); letter-spacing: 1px;
}
.about-split ul { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.about-split li { display: flex; gap: 12px; color: var(--ink-soft); }
.about-split li::before { content: "✂"; color: var(--gold); }

/* ---------- Hours / info strip ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table tr.today td { color: var(--gold); font-weight: 600; }

/* ---------- Contact / form ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  background: var(--bg); border: 1px solid var(--line); color: var(--ink);
  padding: 13px 14px; border-radius: 10px; font: inherit; font-size: .95rem;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
}
.form-note { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Menu section headings ---------- */
.menu-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.menu-head p { color: var(--ink-soft); font-size: .92rem; }
.menu-note { color: var(--ink-soft); font-size: .88rem; margin-top: 22px; }
.menu-note a { color: var(--gold); font-weight: 600; }

/* ---------- Rating band ---------- */
.rating-band {
  display: grid; grid-template-columns: auto 1fr 1.1fr; gap: 48px; align-items: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px;
}
.bg-2 .rating-band { background: var(--bg); }
.rating-score { text-align: center; min-width: 170px; }
.rating-score .n { font-family: var(--font-head); font-size: 5rem; line-height: .9; color: var(--gold); }
.rating-score .stars { color: var(--gold-2); letter-spacing: .2em; font-size: 1.1rem; margin: 8px 0 6px; }
.rating-score .l { font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .12em; }
.rating-bars { display: grid; gap: 9px; }
.rating-bars .row { display: grid; grid-template-columns: 28px 1fr 40px; gap: 12px; align-items: center; font-size: .82rem; color: var(--ink-soft); }
.rating-bars .bar { height: 6px; border-radius: 999px; background: var(--bg-3); overflow: hidden; }
.rating-bars .bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.rating-bars .row span:last-child { text-align: right; }
.rating-quote { border-left: 2px solid var(--gold); padding-left: 24px; }
.rating-quote blockquote { font-size: 1.06rem; line-height: 1.6; color: var(--ink); }
.rating-quote figcaption { color: var(--ink-soft); font-size: .84rem; margin-top: 14px; }

/* ---------- Reviews section ---------- */
.reviews-section {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(199,154,75,.16), transparent 60%),
    radial-gradient(700px 300px at 90% 100%, rgba(199,154,75,.10), transparent 60%),
    var(--bg-2);
  border-top: 1px solid rgba(199,154,75,.35); border-bottom: 1px solid rgba(199,154,75,.35);
}
.reviews-section .rating-band { background: var(--bg); border-color: rgba(199,154,75,.35); }
.reviews-section .section-head { max-width: 720px; }
.kpi-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.kpi { border: 1px solid rgba(199,154,75,.35); border-radius: var(--radius); padding: 22px 24px; background: var(--bg); }
.kpi .n { font-family: var(--font-head); font-size: 2.6rem; line-height: 1; color: var(--gold); }
.kpi .l { font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; margin-top: 8px; }
.quote-card { display: flex; flex-direction: column; }
.quote-card .stars { color: var(--gold-2); letter-spacing: .15em; font-size: .95rem; margin-bottom: 12px; }
.quote-card blockquote { color: var(--ink); font-size: 1rem; line-height: 1.55; flex: 1; }
.quote-card figcaption { color: var(--ink-soft); font-size: .82rem; margin-top: 16px; }

/* Hero rating stat doubles as a link to the reviews */
.stat-link { display: block; transition: color .2s ease; }
.stat-link .n .stars { font-size: 1.05rem; color: var(--gold-2); letter-spacing: .1em; vertical-align: middle; position: relative; top: -6px; }
.stat-link:hover .l { color: var(--gold); }


/* ---------- Mission (Cuts From The Heart) ---------- */
.mission { display: grid; grid-template-columns: 1fr 1.35fr; gap: 56px; align-items: center; }
.mission .ico { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid rgba(199,154,75,.4); background: radial-gradient(circle at 30% 25%, rgba(199,154,75,.16), transparent 70%); }
.mission .ico svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-2); stroke-width: 1.6; stroke-linejoin: round; }
.mission h2 { margin-top: 4px; }
.mission-text { font-size: 1.12rem; line-height: 1.7; color: var(--ink); }
.mission-text + .mission-text { margin-top: 18px; }
.mission-note { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; margin-top: 18px; }
.mission-note strong { color: var(--gold-2); font-weight: 600; }
.mission .stack { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.mission-tag { margin-top: 18px; color: var(--gold); font-weight: 600; letter-spacing: .06em; font-size: .85rem; }

/* ---------- VIP band ---------- */
.vip {
  position: relative; overflow: hidden;
  border: 1px solid rgba(199,154,75,.45); border-radius: var(--radius);
  padding: 48px; display: grid; grid-template-columns: 1.3fr auto; gap: 40px; align-items: center;
  background:
    radial-gradient(600px 320px at 100% 0%, rgba(199,154,75,.2), transparent 60%),
    repeating-linear-gradient(45deg, #1b1714 0 22px, #181410 22px 44px);
}
.vip h2 { margin-bottom: 12px; }
.vip .lead { max-width: 52ch; }
.vip-price { text-align: center; }
.vip-price .n { font-family: var(--font-head); font-size: 4.6rem; line-height: .9; color: var(--gold); }
.vip-price .l { font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .14em; margin: 8px 0 20px; }

/* ---------- Visit strip ---------- */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.visit address { font-style: normal; color: var(--ink-soft); margin-bottom: 18px; }
.policy-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.policy-chips span { font-size: .76rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; }
.map-frame { width: 100%; aspect-ratio: 16/10; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 20px; background: var(--bg-3); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.88) brightness(.95); }

/* ---------- Book steps (contact page) ---------- */
.book-card { border-color: rgba(199,154,75,.45); }
.book-card .btn { margin-top: 6px; }
.card .stack { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ---------- Mobile sticky book bar ---------- */
.mobile-book { display: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(199,154,75,.18), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band .btn { margin-top: 22px; }

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-grid h4 { font-family: var(--font-head); letter-spacing: 1px; margin-bottom: 14px; font-size: 1.1rem; }
.footer-grid a, .footer-grid p { color: var(--ink-soft); font-size: .92rem; display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--ink-soft); font-size: .82rem; border-top: 1px solid var(--line); padding-top: 22px; }
.socials { display: flex; gap: 14px; }
.socials { flex-wrap: wrap; }
.socials a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: .82rem; margin: 0; transition: .2s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Reveal animation ---------- */
/* Only hide content when JS is confirmed running (class set inline in <head>) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px; transform: translateY(-120%);
    transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: none; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { padding-top: 16px; border: 0; margin-left: 0; }
  .nav-links a.btn { display: block; text-align: center; border-bottom: 0; padding: 14px 22px; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .info-grid, .gallery-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .includes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-split, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .rating-band { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .rating-score { text-align: left; }
  .vip { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .vip-price { text-align: left; }
  .visit { grid-template-columns: 1fr; gap: 36px; }
  .mission { grid-template-columns: 1fr; gap: 28px; }
  .kpi-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kpi { padding: 18px; }
  .kpi .n { font-size: 2.2rem; }
  .mobile-book {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--gold); color: #1a140a; text-align: center;
    font-weight: 700; font-size: 1rem; letter-spacing: .02em;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 30px rgba(0,0,0,.45);
  }
  body { padding-bottom: 58px; }
  .hero-portrait { max-width: 420px; order: -1; }
  .hero-portrait img { aspect-ratio: 6/5; }
  section { padding: 72px 0; }
  .hero { min-height: auto; padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero-meta { gap: 18px; }
  .hero-meta .stat .n { font-size: 1.9rem; }
  .hero-meta .stat .l { font-size: .62rem; letter-spacing: .08em; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}
