/* site.css — "Shopping Centres directory redesign"
   Aesthetic: clean, airy, trustworthy "register / index".
   Hairline rules + monospace metadata + lots of paper-white space.
   Ported from Claude designer/test-handoff.zip styles.css. */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

/* ---------- Theme tokens ---------- */
:root {
  --bg:        #f6f5f1;
  --surface:   #ffffff;
  --ink:       #1b1c1a;
  --muted:     #6c6f6a;
  --faint:     #9a9d97;
  --line:      #e3e2db;
  --line-2:    #d4d3ca;
  --accent:    oklch(0.52 0.11 158);   /* deep British green */
  --accent-soft: oklch(0.52 0.11 158 / 0.10);
  --accent-ink:#ffffff;
  --radius:    10px;
  --radius-sm: 7px;
  --maxw:      1180px;
  --pad:       clamp(18px, 5vw, 56px);
  --font:      'Geist', system-ui, sans-serif;
  --mono:      'Geist Mono', ui-monospace, monospace;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root, body { min-height: 100vh; }
body { display: flex; flex-direction: column; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent-soft); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.muted { color: var(--muted); }
.faint { color: var(--faint); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr-in { display: flex; align-items: center; gap: 22px; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 7px; flex: none;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font-family: var(--mono);
  font-weight: 500; font-size: 15px; letter-spacing: -0.04em;
}
.brand-mark span { transform: translateY(-0.5px); }
.brand-name { font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; line-height: 1; }
.brand-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 13px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted);
  transition: background .15s, color .15s;
}
.nav-link:hover { color: var(--ink); background: color-mix(in srgb, var(--ink) 5%, transparent); text-decoration: none; }
.nav-link.active { color: var(--ink); }
.hdr-search {
  display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px;
  border: 1px solid var(--line-2); border-radius: 9px; background: var(--surface);
  color: var(--muted); font-size: 13.5px; min-width: 210px; transition: border-color .15s, box-shadow .15s;
}
.hdr-search:hover { border-color: var(--faint); }
.hdr-search kbd {
  margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--faint);
  border: 1px solid var(--line-2); border-radius: 5px; padding: 1px 5px; background: var(--bg);
}
.icon { width: 16px; height: 16px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 14px; height: 14px; }

.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 84px) 0 clamp(30px, 4vw, 46px); }
.hero h1 {
  font-size: clamp(34px, 5.6vw, 62px); line-height: 1.02; letter-spacing: -0.025em;
  font-weight: 600; margin: 14px 0 0; max-width: 16ch; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: clamp(15px, 1.6vw, 18px); color: var(--muted); max-width: 52ch; margin: 18px 0 0; line-height: 1.55; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 28px; }
.hero-stats .stat { display: flex; align-items: baseline; gap: 8px; }
.hero-stats .stat b { font-family: var(--mono); font-weight: 500; font-size: 18px; }
.hero-stats .stat span { font-size: 13px; color: var(--muted); }
.hero-stats .sep { width: 1px; background: var(--line-2); align-self: stretch; }

/* ---------- Big search ---------- */
.search-xl { position: relative; margin-top: 30px; max-width: 640px; }
.search-xl-field {
  display: flex; align-items: center; gap: 12px; height: 60px; padding: 0 18px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 12px 28px -22px rgba(0,0,0,0.4);
  transition: border-color .15s, box-shadow .15s;
}
.search-xl-field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.search-xl-field input { flex: 1; border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; color: var(--ink); }
.search-xl-field input::placeholder { color: var(--faint); }
.search-xl-go {
  height: 40px; padding: 0 18px; border: 0; border-radius: var(--radius-sm);
  background: var(--ink); color: var(--bg); font-weight: 500; font-size: 14px; flex: none;
}
.search-xl-go:hover { background: var(--accent); color: var(--accent-ink); }
.search-pop {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 30;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.45); overflow: hidden;
}
.search-pop-head { padding: 9px 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); border-bottom: 1px solid var(--line); }
.search-res { display: flex; align-items: center; gap: 12px; padding: 11px 16px; cursor: pointer; border-bottom: 1px solid var(--line); }
.search-res:last-child { border-bottom: 0; }
.search-res:hover, .search-res.hl { background: var(--accent-soft); }
.search-res-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-2); border-radius: 5px; padding: 2px 6px; flex: none; }
.search-res-name { font-weight: 500; font-size: 14.5px; }
.search-res-sub { font-size: 12.5px; color: var(--muted); margin-left: auto; font-family: var(--mono); }
.search-empty { padding: 22px 16px; color: var(--muted); font-size: 14px; text-align: center; }

/* ---------- Search overlay (command palette) ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 80; display: none;
  background: rgba(20,20,18,0.4); backdrop-filter: blur(2px);
  justify-content: center; padding-top: 12vh;
}
.search-overlay-inner { width: min(620px, 92vw); height: fit-content; }
.search-overlay-panel {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.5); overflow: hidden;
}
.search-overlay-panel .search-xl-field {
  border-radius: 0; border: 0; border-bottom: 1px solid var(--line); box-shadow: none;
}
.search-overlay-pop {
  position: static !important; box-shadow: none !important; border: 0 !important; border-radius: 0 !important;
}
.search-overlay-esc {
  font-family: var(--mono); font-size: 11px; color: var(--faint);
  border: 1px solid var(--line-2); border-radius: 5px; padding: 1px 6px;
}

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(34px, 5vw, 60px) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-head h2 { font-size: clamp(20px, 2.6vw, 28px); font-weight: 600; letter-spacing: -0.02em; margin: 6px 0 0; }
.section-head .link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 500; color: var(--muted); white-space: nowrap; }
.section-head .link:hover { color: var(--accent); text-decoration: none; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Region grid ---------- */
.region-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.region-cell {
  background: var(--surface); padding: 20px 20px 18px; cursor: pointer; position: relative;
  transition: background .16s; min-height: 132px; display: flex; flex-direction: column;
}
.region-cell:hover { background: color-mix(in srgb, var(--accent) 5%, var(--surface)); text-decoration: none; }
.region-cell-top { display: flex; align-items: center; justify-content: space-between; }
.region-cell .num { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: .04em; }
.region-cell .cnt { font-family: var(--mono); font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.region-cell h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 14px 0 0; }
.region-cell .towns { font-size: 12.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.region-cell .arr { position: absolute; right: 18px; bottom: 16px; opacity: 0; transform: translateX(-4px); transition: .16s; color: var(--accent); }
.region-cell:hover .arr { opacity: 1; transform: none; }

/* ---------- Centre cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.centre-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: border-color .16s, box-shadow .16s, transform .16s; display: flex; flex-direction: column;
  position: relative;
}
.centre-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); opacity: 0; transition: opacity .16s; }
.centre-card:hover { border-color: var(--line-2); box-shadow: 0 18px 40px -30px rgba(0,0,0,0.45); transform: translateY(-2px); text-decoration: none; }
.centre-card:hover::before { opacity: 1; }
.centre-body { padding: 17px 18px 16px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.centre-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.centre-body h3 { font-size: 17.5px; font-weight: 600; letter-spacing: -0.015em; margin: 0; }
.centre-body .loc { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.centre-card-blurb { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 9px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.centre-meta { margin-top: auto; padding-top: 14px; display: flex; gap: 18px; border-top: 1px solid var(--line); align-items: flex-end; }
.centre-meta .m { display: flex; flex-direction: column; gap: 2px; }
.centre-meta .m .k { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.centre-meta .m .v { font-family: var(--mono); font-size: 13px; font-weight: 500; }
.centre-meta .arr { margin-left: auto; color: var(--faint); opacity: 0; transform: translateX(-4px); transition: .16s; }
.centre-card:hover .centre-meta .arr { opacity: 1; transform: none; color: var(--accent); }

/* ---------- Store table ---------- */
.store-table { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.store-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .14s; }
.store-row:last-child { border-bottom: 0; }
.store-row:hover { background: var(--accent-soft); text-decoration: none; }
.store-rank { font-family: var(--mono); font-size: 12px; color: var(--faint); width: 26px; flex: none; }
.store-name { font-weight: 500; font-size: 15px; }
.store-cat { font-family: var(--mono); font-size: 11px; color: var(--muted); border: 1px solid var(--line-2); border-radius: 100px; padding: 2px 9px; }
.store-count { margin-left: auto; font-family: var(--mono); font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.store-bar { width: 64px; height: 5px; border-radius: 3px; background: var(--line); overflow: hidden; flex: none; }
.store-bar i { display: block; height: 100%; background: var(--accent); border-radius: 3px; }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); padding: 22px 0 0; flex-wrap: wrap; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { color: var(--faint); }
.crumbs .cur { color: var(--ink); }

/* ---------- Page heads ---------- */
.page-head { padding: 18px 0 30px; }
.page-head h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 600; letter-spacing: -0.025em; margin: 12px 0 0; }
.page-head .sub { color: var(--muted); margin-top: 10px; font-size: 15px; max-width: 60ch; }

/* ---------- Toolbar (filters) ---------- */
.toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 13px;
  border: 1px solid var(--line-2); border-radius: 100px; background: var(--surface);
  font-size: 13px; font-weight: 500; color: var(--muted); transition: .14s; white-space: nowrap;
}
.chip:hover { border-color: var(--faint); color: var(--ink); text-decoration: none; }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.chip .c { font-family: var(--mono); font-size: 11px; opacity: .7; }
.chip.active .c { opacity: .9; }
.filter-search { display: flex; align-items: center; gap: 8px; height: 34px; padding: 0 12px; border: 1px solid var(--line-2); border-radius: 100px; background: var(--surface); margin-left: auto; min-width: 200px; }
.filter-search input { border: 0; outline: 0; background: transparent; font: inherit; font-size: 13.5px; flex: 1; color: var(--ink); }
.count-note { font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- Centre detail ---------- */
.detail-banner { display: grid; grid-template-columns: 1fr minmax(280px, 360px); gap: 28px; align-items: end; padding: 10px 0 36px; border-bottom: 1px solid var(--line); margin-bottom: 36px; }
.detail-title { font-size: clamp(30px, 5vw, 50px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; margin: 12px 0 0; text-wrap: balance; }
.detail-banner .blurb { font-size: 16px; color: var(--ink); line-height: 1.6; margin: 16px 0 0; max-width: 56ch; }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fact { background: var(--surface); padding: 14px 16px; }
.fact .k { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.fact .v { font-family: var(--mono); font-size: 16px; font-weight: 500; margin-top: 4px; }

.detail-cols { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; padding-bottom: 60px; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.panel-head { padding: 15px 18px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.panel-head h3 { font-size: 15px; font-weight: 600; margin: 0; }
.panel-head .n { font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* opening hours */
.hours li { display: flex; align-items: center; justify-content: space-between; padding: 11px 18px; border-bottom: 1px solid var(--line); list-style: none; }
.hours { margin: 0; padding: 0; }
.hours li:last-child { border-bottom: 0; }
.hours .d { font-size: 14px; font-weight: 500; }
.hours .t { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.hours li.today { background: var(--accent-soft); }
.hours li.today .d { color: var(--accent); }
.hours li.today .t { color: var(--ink); }
.open-now { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 12px; color: var(--accent); }
.open-now .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.closed-now .dot { background: var(--faint); box-shadow: 0 0 0 3px color-mix(in srgb, var(--faint) 22%, transparent); }
.closed-now { color: var(--muted); }

/* store list inside detail */
.dstore-row { display: flex; align-items: center; gap: 12px; padding: 11px 18px; border-bottom: 1px solid var(--line); }
.dstore-row:last-child { border-bottom: 0; }
.dstore-row .nm { font-size: 14.5px; font-weight: 500; }
.dstore-row .ct { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--muted); border: 1px solid var(--line-2); border-radius: 100px; padding: 2px 9px; }

.mini-map { aspect-ratio: 4/3; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.mini-map .grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 26px 26px; opacity: .8; }
.mini-map .pin { position: absolute; left: 50%; top: 52%; transform: translate(-50%, -100%); color: var(--accent); }
.mini-map .pin .dot { width: 14px; height: 14px; border-radius: 50% 50% 50% 0; background: var(--accent); transform: rotate(-45deg); box-shadow: 0 6px 14px -4px color-mix(in srgb, var(--accent) 60%, transparent); }
.addr { padding: 14px 16px; font-size: 13.5px; line-height: 1.6; }
.addr .pc { font-family: var(--mono); }

/* ---------- Store directory ---------- */
.az-bar { display: flex; flex-wrap: wrap; gap: 3px; margin: 6px 0 22px; }
.az-bar a, .az-bar button { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 7px; background: transparent; font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.az-bar a:hover, .az-bar button:hover { border-color: var(--line-2); color: var(--ink); text-decoration: none; }
.az-bar a.active, .az-bar button.active { background: var(--ink); color: var(--bg); }
.az-bar .disabled { color: var(--line-2); cursor: default; }
.dir-list { columns: 2; column-gap: 16px; }
@media (max-width: 760px) { .dir-list { columns: 1; } }
.dir-row { break-inside: avoid; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 8px; cursor: pointer; transition: .14s; }
.dir-row:hover { border-color: var(--line-2); background: var(--accent-soft); text-decoration: none; }
.dir-row .nm { font-weight: 500; font-size: 14.5px; }
.dir-row .ct { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.dir-row .cn { margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- Tag / pill ---------- */
.pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-2); border-radius: 100px; padding: 4px 11px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 18px; border-radius: var(--radius-sm); font-weight: 500; font-size: 14px; border: 1px solid transparent; transition: .15s; }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: var(--accent); color: var(--accent-ink); text-decoration: none; }
.btn-ghost { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--faint); text-decoration: none; }

/* ---------- Closure banner ---------- */
.closure-banner {
  border: 1px solid #e3b8b8; background: #fbf0f0; color: #7a2727;
  border-radius: var(--radius); padding: 18px 20px; margin: 24px 0;
}
.closure-banner h2 { margin-top: 0; }

/* ---------- Footer ---------- */
.ftr { margin-top: auto; border-top: 1px solid var(--line); background: var(--surface); }
.ftr-in { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding: 46px 0 34px; }
.ftr h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; font-weight: 500; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ftr a { font-size: 13.5px; color: var(--muted); }
.ftr a:hover { color: var(--accent); text-decoration: none; }
.ftr-brand p { font-size: 13px; color: var(--muted); max-width: 30ch; line-height: 1.55; margin: 14px 0 0; }
.ftr-bottom { border-top: 1px solid var(--line); padding: 16px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ftr-bottom span { font-family: var(--mono); font-size: 11.5px; color: var(--faint); }

/* ---------- Empty state ---------- */
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty .mono { font-size: 13px; color: var(--faint); }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { transform: translateY(8px); } to { transform: none; } }
.screen { animation: fadeUp .3s ease; }
@media (prefers-reduced-motion: reduce) { .screen { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .detail-banner { grid-template-columns: 1fr; gap: 22px; }
  .detail-cols { grid-template-columns: 1fr; }
  .ftr-in { grid-template-columns: 1fr 1fr; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav .nav-link { display: none; }
  .hdr-search { display: none; }
  .menu-btn { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 9px; background: var(--surface); margin-left: auto; color: var(--ink); }
  .hero-stats .sep { display: none; }
  .ftr-in { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .region-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ftr-in { grid-template-columns: 1fr; }
  .dir-list { columns: 1; }
  .hero-stats .stat b { font-size: 16px; }
}

/* mobile slide-down menu */
.mmenu { display: none; }
.mmenu.open { display: block; border-bottom: 1px solid var(--line); background: var(--surface); }
.mmenu a { display: block; padding: 14px var(--pad); font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mmenu a:last-child { border-bottom: 0; }
