/* Maren & Co. · Halo Reign Salon Demo
   Palette family: Remnant Standard, warm-feminine variant
   Cream / Ink / Deep coin gold, with a bridal-soft blush accent
   No em-dashes. No AI-slop language.
*/

:root {
  --cream: #F5EFE3;
  --cream-2: #EFE7D6;
  --ink: #1A1613;
  --ink-2: #2C2620;
  --muted: #6B6258;
  --rule: #D9D1BF;
  --gold: #B08423;
  --gold-2: #8F6817;
  --blush: #D8B4A0;
  --white: #FDFBF6;
  --shadow: 0 1px 2px rgba(26,22,19,.04), 0 8px 24px rgba(26,22,19,.06);

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --max: 1200px;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--white); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px var(--pad);
  background: rgba(245,239,227,.9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(217,209,191,.6);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { color: var(--gold); display: inline-flex; }
.brand-word {
  font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: -.01em;
  white-space: nowrap;
}
.brand-word .amp { font-style: italic; color: var(--gold); font-weight: 500; margin: 0 2px; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 14px; color: var(--ink-2); position: relative; padding: 6px 0; }
.nav a:hover { color: var(--gold-2); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.cta-pill {
  display: inline-flex; align-items: center;
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease;
}
.cta-pill:hover { background: var(--gold-2); transform: translateY(-1px); }

.menu-btn { display: none; background: transparent; border: 0; width: 40px; height: 40px; position: relative; }
.menu-btn span {
  display: block; position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--ink);
  transition: transform .3s, opacity .3s, top .3s;
}
.menu-btn span:nth-child(1) { top: 13px; }
.menu-btn span:nth-child(2) { top: 19.5px; }
.menu-btn span:nth-child(3) { top: 26px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { top: 19.5px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { top: 19.5px; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: 64px 0 auto 0; z-index: 30;
  background: var(--cream); border-bottom: 1px solid var(--rule);
  padding: 20px var(--pad) 28px; display: flex; flex-direction: column; gap: 14px;
  transform: translateY(-8px); opacity: 0; transition: transform .25s, opacity .25s;
}
.drawer[hidden] { display: none; }
.drawer:not([hidden]) { transform: translateY(0); opacity: 1; }
.drawer a { font-family: var(--serif); font-size: 22px; }
.drawer .cta-pill { align-self: flex-start; margin-top: 8px; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) var(--pad) clamp(48px, 6vw, 80px);
  max-width: var(--max); margin: 0 auto;
}
.eyebrow {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 20px;
}
.display {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 8vw, 96px); line-height: 1.02; letter-spacing: -.025em;
  margin: 0 0 24px; color: var(--ink);
}
.display em { color: var(--gold); font-style: italic; font-weight: 400; }

.lede {
  font-size: clamp(16px, 1.35vw, 18px); color: var(--ink-2);
  max-width: 46ch; margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-size: 15px; font-weight: 500;
  transition: transform .2s ease, background .2s ease;
  border: 0;
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; padding: 13px 22px;
  border-radius: 999px; border: 1px solid var(--ink);
  color: var(--ink); font-size: 15px; font-weight: 500;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.hero-facts {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid var(--rule); padding-top: 24px;
}
.hero-facts li { font-size: 13px; color: var(--muted); line-height: 1.45; }
.hero-facts li span {
  display: block; font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--ink); letter-spacing: -.01em; margin-bottom: 2px;
}

/* Hero visual: three overlapping tinted cards */
.hero-visual {
  position: relative; height: 520px;
}
.hero-card {
  position: absolute; border-radius: 12px;
  box-shadow: var(--shadow);
  background-size: cover; background-position: center;
}
.card-1 {
  width: 62%; height: 78%; right: 0; top: 0;
  background:
    linear-gradient(135deg, rgba(26,22,19,.15), rgba(26,22,19,0) 55%),
    radial-gradient(ellipse at 30% 20%, #E9C9AE 0%, #C08E67 45%, #7A4B2D 100%);
}
.card-2 {
  width: 46%; height: 46%; left: 4%; top: 18%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.15)),
    radial-gradient(circle at 60% 40%, #F5EFE3 0%, #D8B4A0 55%, #8A5A44 100%);
}
.card-3 {
  width: 40%; height: 32%; left: 12%; bottom: 4%;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25)),
    radial-gradient(circle at 40% 60%, #B08423 0%, #6B4A11 100%);
}
.hero-card::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .1  0 0 0 0 .08  0 0 0 0 .07  0 0 0 .18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; opacity: .6; border-radius: inherit; pointer-events: none;
}

/* Ticker */
.ticker {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream-2);
  overflow: hidden;
}
.ticker-track {
  display: inline-flex; gap: 32px; white-space: nowrap;
  padding: 18px 0;
  animation: ticker 30s linear infinite;
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-2);
}
.ticker-track span { color: var(--gold); }
.ticker-track span:nth-child(odd) { color: var(--ink-2); font-style: normal; letter-spacing: .01em; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Story */
.story {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--pad);
}
.col-label {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  border-top: 1px solid var(--gold); padding-top: 12px; align-self: start;
}
.col-label.light { color: var(--blush); border-top-color: var(--blush); }
.h-serif {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 24px; color: var(--ink);
}
.h-serif em { color: var(--gold); font-style: italic; font-weight: 400; }
.story p { max-width: 62ch; font-size: 17px; color: var(--ink-2); margin: 0 0 16px; }
.signature-line {
  font-family: var(--serif); font-style: italic; color: var(--gold-2);
  margin-top: 8px !important;
}

/* Section head shared */
.section-head { max-width: 720px; margin: 0 auto 48px; padding: 0 var(--pad); }
.section-head.center { text-align: center; }
.section-head .col-label { display: inline-block; margin-bottom: 16px; }
.section-lede { color: var(--muted); font-size: 16px; max-width: 60ch; }

/* Services */
.services {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--rule);
}
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  margin: 0 var(--pad);
}
.service {
  background: var(--cream); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .3s;
}
.service:hover { background: var(--cream-2); }
.service.featured { background: var(--ink); color: var(--cream); }
.service.featured:hover { background: var(--ink-2); }
.service.featured .price, .service.featured h3 { color: var(--cream); }
.service.featured p { color: rgba(245,239,227,.75); }
.s-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.service h3 {
  font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -.01em;
  margin: 0; color: var(--ink);
}
.service .price {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: 18px; white-space: nowrap;
}
.service p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
.mini-link { color: var(--gold); font-size: 14px; margin-top: 4px; }

/* Chair */
.chair {
  background: var(--cream-2);
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--rule);
}
.chair-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
}
.chair-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 28px 24px 24px;
  border-radius: 10px;
}
.chair-num {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: 30px; margin-bottom: 12px;
}
.chair-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 20px;
  margin: 0 0 10px; line-height: 1.2; letter-spacing: -.01em;
}
.chair-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Witness */
.witness {
  background: var(--ink); color: var(--cream);
  padding: clamp(72px, 9vw, 120px) 0;
}
.witness-inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad); align-items: center;
}
.witness .h-serif { color: var(--cream); }
.witness .h-serif em { color: var(--blush); }
.witness p { color: rgba(245,239,227,.78); max-width: 52ch; font-size: 17px; }
.witness-note {
  font-family: var(--serif); font-style: italic; color: var(--blush);
  margin: 20px 0 32px !important;
}
.witness .btn-primary { background: var(--cream); color: var(--ink); }
.witness .btn-primary:hover { background: var(--blush); color: var(--ink); }
.witness-card {
  background: var(--ink-2); border: 1px solid rgba(216,180,160,.25);
  border-radius: 12px; padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.wc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; }
.wc-row.footer { padding-top: 18px; }
.wc-label { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: rgba(245,239,227,.65); }
.wc-price { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--cream); }
.wc-price.gold { color: var(--gold); font-style: italic; }
.wc-rule { height: 1px; background: rgba(216,180,160,.2); }
.wc-file { margin-top: 20px; font-size: 12px; color: rgba(245,239,227,.5); font-style: italic; text-align: right; }

/* Gallery */
.gallery {
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--rule);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
}
.tile {
  margin: 0; position: relative; aspect-ratio: 4/5;
  border-radius: 10px; overflow: hidden; background: var(--rule);
  box-shadow: var(--shadow);
}
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  color: var(--cream); font-size: 13px; font-family: var(--serif); font-style: italic;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
}
.g-1 { background: linear-gradient(135deg, #B58156 0%, #F5EFE3 50%, #8A5A44 100%); }
.g-2 { background: linear-gradient(135deg, #4A2E1F 0%, #A66C4C 60%, #E9C9AE 100%); }
.g-3 { background: linear-gradient(180deg, #F5EFE3 0%, #D8B4A0 60%, #B58156 100%); }
.g-4 { background: linear-gradient(135deg, #C08E67 0%, #6B4A2C 100%); }
.g-5 { background: linear-gradient(135deg, #B08423 0%, #C7541A 60%, #4A2E1F 100%); }
.g-6 { background: linear-gradient(180deg, #1A1613 0%, #4A2E1F 100%); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .1  0 0 0 0 .08  0 0 0 0 .07  0 0 0 .22 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; opacity: .55; pointer-events: none;
}

/* Membership */
.membership {
  background: var(--ink-2);
  color: var(--cream);
  padding: clamp(72px, 9vw, 120px) 0;
}
.mem-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.mem-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.mem-head .col-label { display: inline-block; margin-bottom: 16px; }
.mem-head .h-serif { color: var(--cream); }
.mem-head p { color: rgba(245,239,227,.7); font-size: 17px; }
.mem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mem-card {
  background: var(--ink);
  border: 1px solid rgba(216,180,160,.15);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}
.mem-card.featured {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-8px);
}
.mem-card.featured h3, .mem-card.featured .mem-price, .mem-card.featured .mem-price span { color: var(--ink); }
.mem-card.featured ul li { color: var(--ink-2); }
.mem-card.featured ul li::before { background: var(--gold); }
.mem-tag {
  position: absolute; top: -12px; left: 28px;
  background: var(--gold); color: var(--cream);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.mem-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 26px;
  margin: 0 0 8px; letter-spacing: -.01em; color: var(--cream);
}
.mem-price {
  font-family: var(--serif); font-size: 42px; font-weight: 500;
  color: var(--cream); margin: 0 0 20px; letter-spacing: -.02em;
}
.mem-price span { font-size: 15px; color: rgba(245,239,227,.6); font-family: var(--sans); font-weight: 400; margin-left: 4px; }
.mem-card ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mem-card ul li {
  padding-left: 22px; position: relative; font-size: 14px;
  color: rgba(245,239,227,.8); line-height: 1.5;
}
.mem-card ul li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 1.5px; background: var(--blush);
}
.mem-fine {
  color: rgba(245,239,227,.55); font-size: 13px;
  text-align: center; margin-top: 28px; font-style: italic;
}

/* Reviews */
.reviews {
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--rule);
}
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
}
.review {
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: 10px; padding: 28px; margin: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.review p {
  font-family: var(--serif); font-size: 20px; line-height: 1.35;
  color: var(--ink); margin: 0; letter-spacing: -.01em;
}
.review p::before { content: "\201C"; color: var(--gold); font-size: 42px; line-height: 0; vertical-align: -.4em; margin-right: 2px; }
.review cite {
  font-style: normal; font-size: 13px; letter-spacing: .04em;
  color: var(--muted); text-transform: uppercase;
}

/* Book */
.book {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream-2);
  border-top: 1px solid var(--rule);
}
.book-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: start;
}
.book-copy p { color: var(--ink-2); font-size: 17px; max-width: 46ch; }
.book-notes { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.book-notes li {
  padding-left: 22px; position: relative; font-size: 15px; color: var(--ink-2);
}
.book-notes li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 12px; height: 1.5px; background: var(--gold);
}
.book-form {
  background: var(--cream); border: 1px solid var(--rule); border-radius: 12px;
  padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  box-shadow: var(--shadow);
}
.book-form .full { grid-column: 1 / -1; }
.book-form label { display: flex; flex-direction: column; gap: 6px; }
.book-form label span {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.book-form input, .book-form select, .book-form textarea {
  font: inherit; font-size: 15px;
  padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--rule);
  background: var(--white); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,132,35,.15);
}
.book-form textarea { resize: vertical; min-height: 84px; }
.book-form button { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
.form-fine {
  grid-column: 1 / -1; font-size: 12px; color: var(--muted);
  margin: 0; font-style: italic;
}

.thanks-card {
  background: var(--cream); border: 1px solid var(--gold); border-radius: 12px;
  padding: 40px 32px; text-align: center; box-shadow: var(--shadow);
}
.thanks-check {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--gold); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}
.thanks-card h3 { font-family: var(--serif); font-size: 26px; margin: 0 0 12px; font-weight: 500; }
.thanks-card p { color: var(--muted); font-size: 15px; margin: 0; max-width: 40ch; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer {
  background: var(--ink); color: var(--cream);
  padding: clamp(56px, 6vw, 80px) var(--pad) 32px;
}
.foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.brand.small .brand-word { font-size: 22px; color: var(--cream); }
.foot-tag { color: rgba(245,239,227,.6); font-family: var(--serif); font-style: italic; margin-top: 8px; }
.foot-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.site-footer p { color: rgba(245,239,227,.75); font-size: 14px; margin: 0 0 6px; }
.site-footer a:hover { color: var(--gold); }
.foot-fine {
  max-width: var(--max); margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(216,180,160,.15);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.foot-fine p { font-size: 13px; color: rgba(245,239,227,.5); margin: 0; }
.foot-badge a { color: var(--blush); }
.foot-badge a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 960px) {
  .nav, .site-header .cta-pill { display: none; }
  .menu-btn { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 340px; margin-top: 12px; }
  .card-1 { width: 68%; height: 82%; }
  .card-2 { width: 52%; height: 52%; }
  .card-3 { width: 46%; height: 36%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .chair-grid { grid-template-columns: repeat(2, 1fr); }
  .witness-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mem-grid { grid-template-columns: 1fr; }
  .mem-card.featured { transform: none; }
  .review-grid { grid-template-columns: 1fr; }
  .book-inner { grid-template-columns: 1fr; gap: 32px; }
  .book-form { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .service-grid, .chair-grid, .gallery-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .display { font-size: 44px; }
  .hero-facts { grid-template-columns: 1fr; gap: 12px; padding-top: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
