@import url('https://fonts.googleapis.com/css2?family=Anton&family=Saira+Stencil+One&family=Saira+Condensed:wght@500;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --fg: #f5f5f5;
  --muted: #8b8b8b;
  --muted-2: #5a5a5a;
  --border: #1f1f1f;
  --border-2: #2a2a2a;
  --accent: #ff5b1f;
  --accent-soft: rgba(255,91,31,0.12);
  --accent-fg: #0a0a0a;
  --line: #2a2a2a;

  --display: "Anton", "Bebas Neue", "Arial Narrow", sans-serif;
  --tech: "Saira Condensed", "Inter", sans-serif;
  --stencil: "Saira Stencil One", "Arial Black", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max: 1240px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* Top marquee — telemetry strip */
.ticker {
  background: var(--accent);
  color: var(--accent-fg);
  font-family: var(--tech);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
  border-bottom: 1px solid #0a0a0a;
}
.ticker .track { display: inline-block; padding-left: 100%; animation: ticker 32s linear infinite; }
.ticker .track span { margin: 0 22px; }
.ticker .track span::before { content: "// "; opacity: 0.6; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Header */
header.site {
  padding: 18px 0;
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
header.site a.logo {
  font-family: var(--stencil);
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
header.site a.logo::before {
  content: "";
  display: inline-block;
  width: 4px; height: 22px;
  background: var(--accent);
  transform: skewX(-12deg);
}
header.site a.logo span {
  color: var(--muted);
  font-family: var(--tech);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 6px;
}
header.site nav { display: flex; gap: 4px; flex-wrap: wrap; }
header.site nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 0;
  border: 1px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--tech);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color .15s, border-color .15s;
}
header.site nav a:hover { color: var(--fg); }
header.site nav a.active { color: var(--fg); border-bottom: 2px solid var(--accent); }

main { padding: 0 0 64px; }

/* Typography */
h1 {
  font-family: var(--display);
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.95;
  margin: 0 0 14px;
  letter-spacing: -1px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--fg);
}
h1 .accent { color: var(--accent); }
h1 .stroke { -webkit-text-stroke: 1.5px var(--fg); color: transparent; }

h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin: 44px 0 14px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  font-weight: 400;
}
h3 { font-family: var(--tech); font-size: 18px; margin: 22px 0 8px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
p { margin: 0 0 16px; font-size: 17px; line-height: 1.7; color: #d4d4d4; }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(255,91,31,0.3); transition: border-color .15s, color .15s; }
a:hover { border-color: var(--accent); }
ul, ol { padding-left: 22px; margin: 0 0 16px; color: #d4d4d4; }
li { margin-bottom: 6px; }
li::marker { color: var(--accent); }
.lede { font-size: 19px; color: #b5b5b5; margin-bottom: 24px; max-width: 65ch; line-height: 1.55; }
.meta-sub {
  font-family: var(--tech);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meta-sub::before { content: ""; width: 24px; height: 1px; background: var(--accent); display: inline-block; }

/* Hero — cinematic full-bleed photo */
.hero-cinema {
  position: relative;
  min-height: clamp(540px, 78vh, 820px);
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.hero-cinema .photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-cinema .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.0) 30%, rgba(10,10,10,0.85) 88%, rgba(10,10,10,0.96) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 50%);
}
.hero-cinema .vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-cinema .content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: clamp(540px, 78vh, 820px);
  padding: 36px 28px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-cinema .tag-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.hero-cinema .tag {
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-cinema .tag.orange { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
.hero-cinema .tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s infinite ease-in-out; }
.hero-cinema .tag.orange .dot { background: var(--accent-fg); }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.hero-cinema h1 {
  font-size: clamp(48px, 11vw, 148px);
  line-height: 0.88;
  letter-spacing: -2px;
  margin-bottom: 0;
  max-width: 16ch;
}
.hero-cinema h1 .stroke { -webkit-text-stroke: 2px #fff; color: transparent; }
.hero-cinema .sub {
  max-width: 52ch;
  margin: 14px 0 22px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: #d6d6d6;
  line-height: 1.55;
}
.hero-cinema .actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero-cinema .price-block {
  display: inline-flex; flex-direction: column;
  border-left: 3px solid var(--accent);
  padding: 0 14px;
  margin-left: 2px;
}
.hero-cinema .price-block .l1 {
  font-family: var(--tech);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-cinema .price-block .l2 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}

/* Stats strip below hero */
.stats-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.stats-strip .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}
.stat {
  padding: 24px 24px;
  border-right: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}
.stat:last-child { border-right: 0; }
.stat .l { font-family: var(--tech); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.stat .l::before { content: ""; width: 6px; height: 6px; background: var(--accent); display: inline-block; }
.stat .v { font-family: var(--display); font-size: clamp(26px, 3.3vw, 38px); letter-spacing: -0.5px; margin-top: 8px; text-transform: uppercase; }
.stat .v small { font-family: var(--tech); font-size: 12px; color: var(--muted); margin-left: 4px; letter-spacing: 1.2px; text-transform: uppercase; }

/* CTA button */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--accent-fg);
  font-family: var(--tech);
  font-weight: 800; font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 0;
  text-decoration: none;
  border: 0;
  transition: background .15s, transform .15s;
}
.cta:hover { background: #ff7a3f; transform: translateX(2px); border-bottom: 0; }
.cta::after { content: "→"; font-family: var(--sans); font-size: 16px; }

.cta.outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.cta.outline:hover { background: rgba(255,255,255,0.06); border-color: #fff; }

/* Section heading helper */
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 64px 0 12px; }
.section-heading h2 { margin: 0; }
.section-heading .id {
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--muted);
}
.section-heading .id::before { content: "// "; }

/* Grid of cards */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  margin: 18px 0;
  border: 1px solid var(--border);
}
.grid-cards a {
  display: block;
  padding: 22px;
  background: var(--surface);
  color: var(--fg);
  text-decoration: none;
  border: 0;
  transition: background .15s;
  position: relative;
}
.grid-cards a:hover { background: var(--surface-2); border: 0; }
.grid-cards a strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 1.05;
}
.grid-cards a span {
  color: var(--muted);
  font-size: 13px;
  font-family: var(--tech);
  letter-spacing: 0.5px;
}
.grid-cards a::after {
  content: "→";
  position: absolute;
  right: 22px; top: 22px;
  color: var(--muted);
  font-size: 18px;
  transition: color .15s, transform .15s;
}
.grid-cards a:hover::after { color: var(--accent); transform: translateX(3px); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px;
  margin: 18px 0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}
th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: #d4d4d4;
}
th {
  font-family: var(--tech);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: var(--bg-2);
  color: var(--muted);
}
tr:last-child td { border-bottom: 0; }

.note { background: rgba(255,91,31,0.08); border-left: 3px solid var(--accent); padding: 14px 18px; margin: 16px 0; font-size: 15px; color: #e0e0e0; }
.warn { background: rgba(245,158,11,0.08); border-left: 3px solid #f59e0b; padding: 14px 18px; margin: 16px 0; font-size: 15px; color: #e0e0e0; }

.breadcrumb {
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0 14px;
}
.breadcrumb a { color: var(--muted); border-bottom: 0; }
.breadcrumb a:hover { color: var(--accent); }

/* Byline / E-E-A-T */
.byline {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin: 0 0 26px;
}
.byline .author {
  color: var(--fg);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.byline .author::before {
  content: ""; width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--accent), #ff7a3f);
  display: inline-block;
  border-radius: 50%;
  position: relative;
}
.byline .sep { opacity: 0.4; }
.byline .review { color: #9b9b9b; }
.byline .review::before { content: "★ "; color: var(--accent); }
.byline a { color: var(--muted); border: 0; }
.byline a:hover { color: var(--accent); }

/* Inline content figure */
.inline-fig {
  margin: 26px 0;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #111;
  position: relative;
  aspect-ratio: 16/9;
}
.inline-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inline-fig figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(10,10,10,0.85);
  color: #fff;
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-left: 2px solid var(--accent);
}

/* Shop directory — city section + shop cards */
.directory-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  margin: 18px 0 28px;
  font-family: var(--tech);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b5b5b5;
}
.city-section { margin: 48px 0 32px; }
.city-section .city-head {
  display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: 18px;
}
.city-section .city-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}
.city-section .city-head .count {
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}
.city-section .city-head .count::before { content: "// "; }
.city-intro {
  color: #b5b5b5;
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 70ch;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.shop {
  background: var(--surface);
  padding: 22px 22px 20px;
  position: relative;
  transition: background .15s;
}
.shop:hover { background: var(--surface-2); }
.shop .num {
  font-family: var(--tech);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 6px;
}
.shop h3 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.3px;
  margin: 0 0 6px;
  color: var(--fg);
  text-transform: uppercase;
  line-height: 1.05;
}
.shop .loc {
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.shop .loc .dot { color: var(--accent); margin: 0 6px; }
.shop ul.specs {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
  color: #c5c5c5;
}
.shop ul.specs li {
  margin: 0 0 4px;
  padding-left: 14px;
  position: relative;
}
.shop ul.specs li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--accent);
}
.shop .tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px;
}
.shop .tag-pill {
  font-family: var(--tech);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border-2);
  color: #a8a8a8;
}
.shop .tag-pill.cert { border-color: var(--accent); color: var(--accent); }
.shop .verified {
  font-family: var(--tech);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-2);
}
.shop .verified::before { content: "✓ "; color: #4ade80; }

/* City quick-jump */
.city-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 14px 0 22px;
}
.city-nav a {
  font-family: var(--tech);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--border-2);
  color: #d4d4d4;
  background: var(--surface);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.city-nav a:hover { border-color: var(--accent); color: var(--accent); }

/* FAQ block */
.faq { margin: 28px 0; border-top: 1px solid var(--border); }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  cursor: pointer;
}
.faq details summary {
  list-style: none;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: var(--fg);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  outline: 0;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: #c5c5c5; font-size: 16px; }
.faq details ul { color: #c5c5c5; }

/* Page hero for inner pages */
.page-hero {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 21/9;
  margin: 12px 0 32px;
  background: #000;
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05); }
.page-hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,0.85) 100%);
}
.page-hero .overlay {
  position: absolute; left: 28px; bottom: 22px; right: 28px;
  color: #fff;
}
.page-hero .overlay h1 {
  color: #fff;
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.95;
}
.page-hero .overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-family: var(--tech);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
  margin: 18px 0;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  background: #111;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(10,10,10,0.85);
  color: #fff;
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-left: 2px solid var(--accent);
}

/* Calculator (cost page) */
.calc {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  margin: 22px 0;
}
.calc .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 14px; }
.calc label {
  display: block;
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.calc select, .calc input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-2);
  background: var(--bg);
  font-size: 15px;
  font-family: var(--sans);
  color: var(--fg);
}
.calc select:focus, .calc input:focus { outline: 0; border-color: var(--accent); }
.calc .result {
  margin-top: 22px; padding: 24px;
  background: var(--bg);
  color: #fff;
  border: 1px solid var(--accent);
  position: relative;
}
.calc .result::before {
  content: "ESTIMATE";
  position: absolute; top: -10px; left: 18px;
  background: var(--bg);
  color: var(--accent);
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 0 8px;
}
.calc .result .label2 {
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.calc .result .price {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 58px);
  letter-spacing: -1px;
  margin: 6px 0;
  color: var(--fg);
  text-transform: uppercase;
}
.calc .result .sub {
  font-family: var(--tech);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 600px){ .calc .row { grid-template-columns: 1fr; } }

footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 56px;
  background: var(--bg);
}
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
footer.site .credits { font-family: var(--tech); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
footer.site nav { display: flex; gap: 4px; flex-wrap: wrap; }
footer.site nav a {
  color: var(--muted);
  text-decoration: none;
  border: 0;
  padding: 0 12px;
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
footer.site nav a:hover { color: var(--accent); }

@media (max-width: 820px){
  .stats-strip .row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 18px 22px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-cinema h1 { font-size: clamp(40px, 13vw, 88px); }
}
@media (max-width: 540px){
  header.site .wrap { gap: 8px; }
  header.site nav { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
  header.site nav a { white-space: nowrap; padding: 6px 10px; font-size: 11px; }
  .hero-cinema { min-height: 70vh; }
  .hero-cinema .content { padding: 22px 20px; }
  .grid-cards a strong { font-size: 19px; }
}
