/* Coalpunch Tacos — a sample restaurant site by Lampwright. Not a real business.
   Design language: loud neo-brutalist — condensed caps, thick ink borders, hard offset shadows. */

@font-face { font-family: "Anton"; src: url(fonts/anton-latin-400-normal.woff2) format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Archivo"; src: url(fonts/archivo-latin-wght-normal.woff2) format("woff2"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Space Mono"; src: url(fonts/space-mono-latin-700-normal.woff2) format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --ink: #111;
  --paper: #fff3dc;
  --paper-2: #ffe7b8;
  --tomato: #ff3b1f;
  --chili: #b3120f;
  --lime: #b6f23a;
  --yolk: #ffd23f;
  --white: #fff;
  --display: "Anton", Impact, "Arial Narrow", sans-serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "Space Mono", ui-monospace, Menlo, monospace;
  --bw: 4px;
  --sh: 8px;
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 450 1.0625rem/1.55 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 4px solid var(--tomato); outline-offset: 3px; }
main { overflow-x: clip; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* banner — always visible */
.sample-banner { background: var(--ink); color: var(--paper); font: 500 0.875rem/1.45 var(--sans); padding: 10px var(--gutter); text-align: center; }
.sample-banner strong { color: var(--lime); }

/* type */
h2 { font: 400 clamp(3rem, 8.6vw, 7.5rem)/0.9 var(--display); text-transform: uppercase; letter-spacing: 0.005em; }
h3 { font: 400 clamp(2rem, 3.4vw, 2.75rem)/0.95 var(--display); text-transform: uppercase; }
.tag { display: inline-block; font: 700 0.8rem/1 var(--mono); text-transform: uppercase; letter-spacing: 0.06em; padding: 9px 12px; border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); margin-bottom: 22px; }
.tag-lime { background: var(--lime); color: var(--ink); } .tag-ink { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--tomato); }
.tag-tomato { background: var(--tomato); color: var(--white); } .tag-yolk { background: var(--yolk); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; font: 800 1rem/1 var(--sans); text-transform: uppercase; letter-spacing: 0.03em; padding: 14px 20px; border: var(--bw) solid var(--ink); box-shadow: 5px 5px 0 var(--ink); transition: transform .12s ease, box-shadow .12s ease; text-align: center; }
.btn:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }
.btn-lg { font-size: 1.125rem; padding: 18px 26px; }
.btn-xl { font: 400 clamp(1.5rem, 4vw, 2.6rem)/1 var(--display); padding: 20px 28px; letter-spacing: 0.02em; }
.btn-ink { background: var(--ink); color: var(--paper); box-shadow: 5px 5px 0 var(--tomato); }
.btn-ink:hover { box-shadow: 8px 8px 0 var(--tomato); }
.btn-tomato { background: var(--tomato); color: var(--white); }
.btn-paper { background: var(--paper); color: var(--ink); }

/* header */
.top { position: sticky; top: 0; z-index: 20; background: var(--paper); border-bottom: var(--bw) solid var(--ink); }
.top-row { display: flex; align-items: center; gap: 24px; min-height: 78px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; font: 400 1.9rem/1 var(--display); text-transform: uppercase; letter-spacing: 0.01em; }
.logo img { width: 44px; height: 44px; }
.logo b { font-weight: 400; color: var(--tomato); margin-left: 4px; }
.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a { text-decoration: none; font: 800 0.9rem/1 var(--sans); text-transform: uppercase; letter-spacing: 0.04em; padding: 10px 12px; border: 3px solid transparent; transition: background .12s, border-color .12s; }
.nav a:hover { background: var(--lime); border-color: var(--ink); }
.top-call { padding: 12px 16px; font-size: 0.9rem; }

/* hero */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 80px) 0 0; background:
  linear-gradient(var(--paper), var(--paper)) padding-box,
  var(--paper); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(var(--ink) 1.3px, transparent 1.4px); background-size: 22px 22px; opacity: .09; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font: 400 clamp(4.2rem, 13.5vw, 12.5rem)/0.84 var(--display); text-transform: uppercase; letter-spacing: -0.005em; margin-bottom: 30px; }
.hero h1 span { display: block; }
.hero h1 .l2 { color: var(--paper); -webkit-text-stroke: 3px var(--ink); paint-order: stroke fill; text-shadow: 6px 6px 0 var(--ink); }
.hero h1 .l3 { display: inline-block; background: var(--tomato); color: var(--white); padding: 0.06em 0.12em 0; border: var(--bw) solid var(--ink); box-shadow: var(--sh) var(--sh) 0 var(--ink); transform: rotate(-2deg); margin-top: 0.08em; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); max-width: 34em; font-weight: 500; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.frame { position: relative; border: var(--bw) solid var(--ink); box-shadow: var(--sh) var(--sh) 0 var(--ink); background: var(--ink); overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame figcaption { position: absolute; left: 0; bottom: 0; background: var(--yolk); border-top: 3px solid var(--ink); border-right: 3px solid var(--ink); font: 700 0.78rem/1.2 var(--mono); text-transform: uppercase; padding: 8px 12px; max-width: calc(100% - 20px); }

.hero-art { position: relative; min-height: 560px; }
.frame-hero { position: absolute; right: 0; top: 0; width: 82%; aspect-ratio: 4 / 5; box-shadow: 14px 14px 0 var(--tomato), 14px 14px 0 4px var(--ink); }
.frame-mini { position: absolute; left: 0; bottom: 0; width: 42%; aspect-ratio: 3 / 4; transform: rotate(-4deg); box-shadow: 8px 8px 0 var(--lime), 8px 8px 0 4px var(--ink); }
.sticker { position: absolute; right: -18px; bottom: 10px; width: clamp(130px, 13vw, 170px); aspect-ratio: 1; }
.sticker svg { width: 100%; height: 100%; animation: spin 18s linear infinite; }
.st-bg { fill: var(--lime); stroke: var(--ink); stroke-width: 5; }
.st-txt { font: 700 17px var(--mono); letter-spacing: 1.5px; fill: var(--ink); }
.st-flame { fill: var(--tomato); stroke: var(--ink); stroke-width: 3; stroke-linejoin: round; }
@keyframes spin { to { transform: rotate(360deg); } }

.quick { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(40px, 5vw, 64px); padding-inline: 0; border: var(--bw) solid var(--ink); border-bottom: 0; background: var(--white); max-width: calc(var(--wrap) - 2 * 40px); }
.quick li { padding: 18px 20px; font: 700 0.95rem/1.3 var(--mono); border-right: var(--bw) solid var(--ink); }
.quick li:last-child { border-right: 0; background: var(--ink); color: var(--paper); }
.quick b { display: block; font: 400 1.6rem/1 var(--display); text-transform: uppercase; margin-bottom: 4px; }

/* ticker */
.ticker { background: var(--tomato); color: var(--white); border-block: var(--bw) solid var(--ink); overflow: hidden; white-space: nowrap; transform: rotate(-1.2deg); margin: 0 -20px; position: relative; z-index: 2; }
.ticker-track { display: inline-flex; align-items: center; gap: 28px; padding: 16px 0; animation: tick 34s linear infinite; }
.ticker span { font: 400 clamp(1.8rem, 3.6vw, 3rem)/1 var(--display); text-transform: uppercase; }
.ticker i { font-style: normal; color: var(--yolk); font-size: clamp(1.4rem, 2.6vw, 2.2rem); }
@keyframes tick { to { transform: translateX(-50%); } }

/* what */
.what { padding: clamp(80px, 10vw, 130px) 0 clamp(60px, 8vw, 100px); }
.sec-head { margin-bottom: clamp(34px, 5vw, 56px); }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.block { border: var(--bw) solid var(--ink); box-shadow: var(--sh) var(--sh) 0 var(--ink); padding: 30px 28px 34px; transition: transform .15s ease, box-shadow .15s ease; }
.block:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 var(--ink); }
.block .num { display: inline-block; font: 700 0.85rem/1 var(--mono); background: var(--ink); color: var(--paper); padding: 6px 9px; margin-bottom: 26px; }
.block h3 { font-size: clamp(3rem, 5vw, 4.4rem); margin-bottom: 14px; }
.block p { font-weight: 500; font-size: 1.05rem; }
.b-tomato { background: var(--tomato); color: var(--white); } .b-tomato .num { background: var(--white); color: var(--ink); }
.b-lime { background: var(--lime); } .b-yolk { background: var(--yolk); }
.three .block:nth-child(2) { transform: translateY(26px); }
.three .block:nth-child(2):hover { transform: translate(-4px, 22px); }

/* slab */
.slab { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; border-block: var(--bw) solid var(--ink); background: var(--ink); }
.slab .frame { border: 0; box-shadow: none; height: clamp(300px, 38vw, 520px); }
.slab-b { border-left: var(--bw) solid var(--ink) !important; }
.slab-word { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-6deg); font: 400 clamp(5rem, 16vw, 15rem)/0.8 var(--display); color: var(--yolk); -webkit-text-stroke: 4px var(--ink); paint-order: stroke fill; text-shadow: 10px 10px 0 var(--ink); pointer-events: none; }

/* menu */
.menu { padding: clamp(80px, 10vw, 130px) 0; background: var(--white); border-bottom: var(--bw) solid var(--ink); }
.menu-note { max-width: 25em; font-weight: 600; font-size: 1.1rem; border-left: 8px solid var(--tomato); padding-left: 16px; }
.cat { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; font-size: clamp(2.6rem, 5vw, 4rem); margin: 0 0 22px; padding-bottom: 10px; border-bottom: var(--bw) solid var(--ink); }
.cat em { font: 700 0.85rem/1 var(--mono); font-style: normal; text-transform: uppercase; background: var(--lime); border: 3px solid var(--ink); padding: 6px 9px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: clamp(56px, 7vw, 80px); }
.grid-2 { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
.item { position: relative; border: var(--bw) solid var(--ink); background: var(--paper); padding: 22px 22px 70px; box-shadow: 6px 6px 0 var(--ink); transition: transform .12s ease, box-shadow .12s ease, background .12s; }
.item:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); background: var(--paper-2); }
.item h4 { font: 400 clamp(1.7rem, 2.4vw, 2.1rem)/1 var(--display); text-transform: uppercase; margin-bottom: 10px; }
.item p { font-size: 0.98rem; font-weight: 500; }
.price { position: absolute; right: -4px; bottom: -4px; background: var(--yolk); border: var(--bw) solid var(--ink); font: 700 1.35rem/1 var(--mono); padding: 10px 14px; }
.price small { font-size: 0.72rem; opacity: .75; margin-left: 4px; }
.item-hot { background: var(--tomato); color: var(--white); }
.item-hot:hover { background: var(--chili); }
.item-hot .price { color: var(--ink); background: var(--lime); }
.menu-split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: stretch; margin-bottom: clamp(56px, 7vw, 80px); }
.menu-photo img { position: absolute; inset: 0; }
.callout { margin-top: 28px; border: var(--bw) solid var(--ink); background: var(--ink); color: var(--paper); padding: 22px 24px; display: flex; align-items: center; gap: 24px; box-shadow: 6px 6px 0 var(--tomato); }
.callout-big { font: 400 clamp(2.2rem, 3.6vw, 3.2rem)/0.9 var(--display); text-transform: uppercase; color: var(--lime); flex: none; }
.callout p:last-child { font: 700 0.95rem/1.45 var(--mono); }
.menu-photo { min-height: 320px; box-shadow: 12px 12px 0 var(--lime), 12px 12px 0 4px var(--ink); transform: rotate(1.5deg); }
.twin { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.list li { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 3px dashed var(--ink); font-weight: 600; font-size: 1.08rem; }
.list li span { flex: 1; }
.list li b { font: 700 1.15rem/1 var(--mono); background: var(--ink); color: var(--paper); padding: 6px 9px; }

/* order */
.order { background: var(--ink); color: var(--paper); padding: clamp(80px, 10vw, 130px) 0; }
.order-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.order h2 { color: var(--paper); margin-bottom: 36px; }
.order h2 { text-shadow: 6px 6px 0 var(--tomato); }
.steps { counter-reset: s; display: grid; gap: 14px; }
.steps li { counter-increment: s; position: relative; padding: 16px 18px 16px 74px; border: 3px solid var(--paper); font-size: 1.05rem; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; bottom: 0; width: 56px; display: grid; place-items: center; background: var(--lime); color: var(--ink); font: 400 2rem/1 var(--display); border-right: 3px solid var(--paper); }
.steps b { color: var(--yolk); }

.ticket { background: var(--white); color: var(--ink); border: var(--bw) solid var(--paper); box-shadow: 14px 14px 0 var(--tomato); padding: 26px 26px 22px; font-family: var(--mono); transform: rotate(2deg); max-width: 440px; justify-self: center; width: 100%;
  -webkit-mask: radial-gradient(circle 9px at 50% 0, transparent 98%, #000) 0 0 / 26px 100% repeat-x; mask: radial-gradient(circle 9px at 50% 0, transparent 98%, #000) 0 0 / 26px 100% repeat-x; }
.ticket-top { display: flex; justify-content: space-between; font: 400 1.7rem/1 var(--display); text-transform: uppercase; padding: 8px 0 16px; border-bottom: 3px solid var(--ink); }
.ticket-name { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; padding: 12px 0; border-bottom: 2px dashed var(--ink); }
.ticket ul { padding: 10px 0; border-bottom: 2px dashed var(--ink); }
.ticket li { display: flex; justify-content: space-between; gap: 12px; font-weight: 700; font-size: 0.95rem; padding: 6px 0; }
.ticket-total { display: flex; justify-content: space-between; font: 400 2rem/1 var(--display); text-transform: uppercase; padding: 14px 0; }
.ticket-state { display: grid; grid-template-columns: repeat(3, 1fr); border: 3px solid var(--ink); }
.st { font-weight: 700; font-size: 0.72rem; text-transform: uppercase; text-align: center; padding: 10px 4px; border-right: 3px solid var(--ink); }
.st:last-child { border-right: 0; }
.st-done { background: var(--ink); color: var(--paper); }
.st-live { background: var(--tomato); color: var(--white); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { background: var(--yolk); color: var(--ink); } }
.ticket-foot { font-size: 0.72rem; margin-top: 14px; opacity: .7; }

/* gallery */
.gallery { padding: clamp(80px, 10vw, 130px) 0; background: var(--lime); border-bottom: var(--bw) solid var(--ink); }
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(110px, 12vw, 150px); gap: 24px; }
.m1 { grid-column: 1 / 8; grid-row: span 3; }
.m2 { grid-column: 8 / 13; grid-row: span 2; }
.m3 { grid-column: 8 / 13; grid-row: span 2; }
.m4 { grid-column: 1 / 8; grid-row: span 1; display: flex; align-items: center; gap: 22px; padding: 16px 26px; }
.m4 .big { font: 400 clamp(4rem, 7vw, 6rem)/0.8 var(--display); }
.m4 p:last-child { font-weight: 700; font-size: 1.15rem; text-transform: uppercase; }

/* visit */
.visit { padding: clamp(80px, 10vw, 130px) 0; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.hours h2 { font-size: clamp(3rem, 6vw, 5.4rem); margin-bottom: 28px; }
.hours table { width: 100%; border-collapse: collapse; border: var(--bw) solid var(--ink); background: var(--white); box-shadow: var(--sh) var(--sh) 0 var(--ink); }
.hours th, .hours td { text-align: left; padding: 13px 18px; border-bottom: 3px solid var(--ink); font-size: 1.05rem; }
.hours th { font: 400 1.4rem/1 var(--display); text-transform: uppercase; width: 45%; border-right: 3px solid var(--ink); }
.hours td { font: 700 1rem/1.2 var(--mono); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours tr.hi { background: var(--yolk); }
.hours tr:first-child { background: var(--ink); color: var(--paper); }
.addr { font: 400 clamp(2.6rem, 5vw, 4.4rem)/0.95 var(--display); text-transform: uppercase; margin-bottom: 16px; }
.addr-note { font-weight: 600; font-size: 1.1rem; margin-bottom: 26px; max-width: 28em; }
.map { border: var(--bw) solid var(--ink); box-shadow: var(--sh) var(--sh) 0 var(--tomato), var(--sh) var(--sh) 0 4px var(--ink); }
.map svg { display: block; width: 100%; height: auto; }
.mp-bg { fill: var(--paper-2); } .mp-road { fill: var(--white); stroke: var(--ink); stroke-width: 3; }
.mp-dash { stroke: var(--ink); stroke-width: 2; stroke-dasharray: 8 8; fill: none; }
.mp-blk { fill: var(--paper); stroke: var(--ink); stroke-width: 3; }
.mp-pin-blk { fill: var(--tomato); stroke: var(--ink); stroke-width: 4; }
.mp-pin { fill: var(--yolk); stroke: var(--ink); stroke-width: 4; animation: ping 1.8s ease-in-out infinite; transform-origin: 338px 49px; }
@keyframes ping { 50% { transform: scale(1.25); } }
.mp-lbl { font: 700 13px var(--mono); fill: var(--ink); letter-spacing: 1px; }

/* cta */
.cta { background: var(--tomato); color: var(--white); border-block: var(--bw) solid var(--ink); padding: clamp(80px, 10vw, 130px) 0; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent 0 28px, rgba(0,0,0,.07) 28px 56px); pointer-events: none; }
.cta .wrap { position: relative; }
.cta h2 { font-size: clamp(4rem, 13vw, 12rem); margin-bottom: 40px; text-shadow: 8px 8px 0 var(--ink); }
.cta h2 span { color: var(--yolk); }
.cta-row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 30px; }
.cta .btn-paper { font-size: clamp(1.1rem, 2.4vw, 1.7rem); overflow-wrap: anywhere; }
.cta-note { font-weight: 600; font-size: 1.1rem; max-width: 34em; margin-inline: auto; }

/* footer */
.foot { background: var(--ink); color: var(--paper); padding: 48px 0 32px; }
.foot-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px; justify-content: space-between; padding-bottom: 26px; border-bottom: 2px solid #333; margin-bottom: 20px; }
.foot-logo { font: 400 2.4rem/1 var(--display); text-transform: uppercase; }
.foot-logo b { font-weight: 400; color: var(--tomato); margin-left: 4px; }
.foot nav { display: flex; flex-wrap: wrap; gap: 10px; }
.foot nav a { text-decoration: none; font: 700 0.85rem/1 var(--mono); text-transform: uppercase; padding: 10px 12px; border: 3px solid var(--paper); }
.foot nav a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.foot nav a[href="before.html"] { background: var(--yolk); color: var(--ink); border-color: var(--yolk); }
.foot-small { font-size: 0.85rem; opacity: .7; }

/* scroll reveal, where supported */
@supports (animation-timeline: view()) {
  .reveal { animation: rise linear both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
  @keyframes rise { from { opacity: .001; translate: 0 60px; } to { opacity: 1; translate: 0 0; } }
}

/* responsive */
@media (max-width: 1080px) {
  .nav { display: none; }
  .top-call { margin-left: auto; }
  .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 0; aspect-ratio: 1 / 1; max-width: 560px; width: 100%; margin-inline: auto; }
  .quick { grid-template-columns: 1fr 1fr; margin-inline: var(--gutter); width: auto; }
  .quick li:nth-child(2) { border-right: 0; }
  .quick li:nth-child(-n+2) { border-bottom: var(--bw) solid var(--ink); }
  .three { grid-template-columns: 1fr; gap: 24px; }
  .three .block:nth-child(2) { transform: none; }
  .three .block:nth-child(2):hover { transform: translate(-4px, -4px); }
  .slab { grid-template-columns: 1fr; }
  .slab .frame { height: clamp(240px, 60vw, 400px); }
  .slab-b { border-left: 0 !important; border-top: var(--bw) solid var(--ink) !important; }
  .menu-split, .twin, .order-grid, .visit-grid { grid-template-columns: 1fr; }
  .menu-photo { min-height: 0; aspect-ratio: 4 / 3; transform: none; }
  .menu-photo img { position: static; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; gap: 18px; }
  .m1 { grid-column: 1 / -1; aspect-ratio: 16 / 10; grid-row: auto; }
  .m2, .m3 { grid-column: auto; grid-row: auto; aspect-ratio: 1 / 1; }
  .m4 { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 600px) {
  :root { --bw: 3px; --sh: 6px; }
  .top-row { min-height: 66px; gap: 12px; }
  .logo { font-size: 1.45rem; gap: 8px; }
  .logo img { width: 36px; height: 36px; }
  .top-call { font-size: 0; padding: 10px 12px; }
  .top-call::after { content: "Call"; font-size: 0.85rem; }
  .hero h1 { font-size: clamp(3.8rem, 21vw, 6rem); }
  .hero h1 .l2 { -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 var(--ink); }
  .hero-actions .btn { flex: 1 1 100%; }
  .frame-hero { width: 84%; box-shadow: 9px 9px 0 var(--tomato), 9px 9px 0 3px var(--ink); }
  .sticker { right: -6px; width: 110px; }
  .quick li { padding: 14px 14px; font-size: 0.82rem; }
  .quick b { font-size: 1.3rem; }
  .grid, .grid-2 { grid-template-columns: 1fr; }
  .item { padding-bottom: 62px; }
  .callout { flex-direction: column; align-items: flex-start; gap: 10px; }
  .tag { font-size: 0.72rem; }
  .ticket { transform: none; box-shadow: 9px 9px 0 var(--tomato); padding: 22px 18px 18px; }
  .steps li { padding-left: 66px; }
  .steps li::before { width: 48px; }
  .mosaic { grid-template-columns: 1fr; }
  .m2, .m3 { aspect-ratio: 4 / 3; }
  .m4 { flex-direction: column; align-items: flex-start; gap: 10px; padding: 22px; }
  .hours th, .hours td { padding: 11px 12px; }
  .hours th { font-size: 1.15rem; }
  .btn-xl { width: 100%; padding: 18px 16px; }
  .cta h2 { text-shadow: 5px 5px 0 var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; translate: none; }
}
