/* ===========================================================================
   localkw — public stylesheet (v5 · light, professional, blue)
   Flat and simple: no blur, no fixed backgrounds, no glow shadows.
   Display: Plus Jakarta Sans · Body: Inter
   =========================================================================== */

:root {
  --bg:        #ffffff;
  --bg-2:      #f6f8fc;
  --surface:   #ffffff;
  --surface-2: #f2f5fb;
  --ink:       #0f1b2e;
  --ink-soft:  #45556b;
  --muted:     #6b7890;

  --brand:     #2563eb;
  --brand-600: #2563eb;
  --brand-700: #1d4ed8;
  --brand-800: #1e40af;
  --brand-50:  #eef4ff;
  --brand-100: #dbe7ff;
  --star:      #f5a524;

  --line:      #e6eaf1;
  --line-2:    #d7deeb;

  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 46, .06);
  --shadow:    0 6px 20px -10px rgba(15, 27, 46, .16);
  --shadow-md: 0 12px 30px -14px rgba(15, 27, 46, .2);
  --wrap:      1180px;
  --header-h:  70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .brand-name {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700; line-height: 1.13; color: var(--ink); margin: 0; letter-spacing: -0.02em;
}

a { color: var(--brand-700); text-decoration: none; }
a:hover { color: var(--brand); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 5px; }

/* ------------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 15px/1 "Inter", sans-serif; padding: 11px 19px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-700); color: #fff; }
.btn-accent { background: var(--brand); color: #fff; }
.btn-accent:hover { background: var(--brand-700); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-700); }
.btn-lg { padding: 14px 24px; font-size: 16px; border-radius: 11px; }
.btn-sm { padding: 9px 15px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

/* ------------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line-2); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 18px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-pin { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--brand); color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.brand-accent { color: var(--brand); }
.brand-light .brand-name { color: #fff; }
.brand-light .brand-accent { color: #8fb4ff; }
.brand-tag { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.brand-light, .brand-light:hover { color: #fff; }

.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }
.main-nav { margin-left: auto; }
.main-nav > ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.main-nav a, .menu-trigger {
  display: inline-flex; align-items: center; gap: 6px; font: 600 14.5px/1 "Inter", sans-serif;
  color: var(--ink-soft); padding: 10px 13px; border-radius: 9px; background: none; border: 0; cursor: pointer;
}
.main-nav a:hover, .menu-trigger:hover { background: var(--brand-50); color: var(--brand-700); }
.caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .5; }
.nav-divider-li { display: inline-flex; align-items: center; }
.nav-divider { width: 1px; align-self: center; height: 22px; background: var(--line-2); margin: 0 6px; }
.nav-signin { color: var(--ink-soft); }
.nav-signin:hover { color: var(--brand-700); }

.has-menu { position: relative; }
.mega {
  position: absolute; top: calc(100% + 9px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 9px; min-width: 264px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.mega-2col { grid-template-columns: 1fr 1fr; min-width: 384px; }
.has-menu:hover .mega, .has-menu.open .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega a { color: var(--ink-soft); padding: 9px 12px; border-radius: 8px; font-weight: 500; }
.mega a:hover { background: var(--brand-50); color: var(--brand-700); }
.mega-ic { display: inline-flex; color: var(--brand); }
.nav-cta-li { margin-left: 6px; }
.nav-cta, .nav-cta:hover { color: #fff; }

/* --------------------------------------------------------------------- Flash */
.flash-wrap { padding-top: 16px; display: grid; gap: 10px; }
.flash { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-radius: 11px; font-weight: 500; font-size: 15px; border: 1px solid; }
.flash-success { background: #e9f7ef; color: #157347; border-color: #c3e9d3; }
.flash-error   { background: #fdeceb; color: #c0392b; border-color: #f5cbc6; }
.flash-info    { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-100); }

/* ---------------------------------------------------------------------- Hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 55%, #3b82f6 110%);
  padding: 92px 0 84px;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; will-change: opacity; }
.hero-slide.is-active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; }            /* colour set inline from settings */
.hero::after {                                                          /* gradient scrim so text pops */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 15, 30, .58) 0%, rgba(8, 15, 30, .28) 42%, rgba(8, 15, 30, 0) 78%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; margin-right: auto; text-align: left; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px; margin: 0 0 18px;
  font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: 12.5px; color: #fff;
  background: rgba(255, 255, 255, .15); padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .25);
}
.hero-title { color: #fff; font-size: clamp(36px, 5.4vw, 60px); font-weight: 800; max-width: 16ch; letter-spacing: -0.03em; }
.hero-sub { color: rgba(255, 255, 255, .9); font-size: clamp(16px, 2vw, 19px); margin: 18px 0 30px; max-width: 56ch; }

.hero-search {
  display: flex; align-items: center; gap: 8px; max-width: 720px; position: relative; padding: 8px;
  border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.hero-search-ic { position: absolute; left: 22px; color: var(--muted); pointer-events: none; }
.hero-search input[type=text] { flex: 1 1 auto; border: 0; background: none; padding: 13px 12px 13px 44px; font: 500 16px/1 "Inter", sans-serif; color: var(--ink); min-width: 0; }
.hero-search input::placeholder { color: var(--muted); }
.hero-search input:focus { outline: none; }
.hero-search select { border: 0; border-left: 1px solid var(--line); background: none; font: 500 15px/1 "Inter", sans-serif; color: var(--ink-soft); padding: 13px 10px; cursor: pointer; }
.hero-search select:focus { outline: none; }
.hero-search .btn { border-radius: 10px; }
.hero-popular { margin: 20px 0 0; color: rgba(255, 255, 255, .85); font-size: 14px; }
.hero-popular a { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255, 255, 255, .45); }
.hero-popular a:hover { text-decoration-color: #fff; }

/* ------------------------------------------------------------------ Sections */
.section { padding: 70px 0; }
.section-top { padding-top: 42px; }
.section-tint { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(25px, 3vw, 32px); letter-spacing: -0.025em; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--brand-700); }
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ------------------------------------------------------------- Card surfaces */
.card, .cat-tile, .filters, .info-card, .review-form-card, .form-card, .review, .empty {
  background: var(--surface); border: 1px solid var(--line);
}

/* -------------------------------------------------------------- Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-tile {
  position: relative; border-radius: var(--radius); padding: 20px 18px 18px; min-height: 132px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px; color: var(--ink);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.cat-tile:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--ink); box-shadow: var(--shadow); }
.cat-tile-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--brand); color: #fff; margin-bottom: auto; }
.cat-tile-name { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 16px; margin-top: 13px; letter-spacing: -0.01em; }
.cat-tile-count { font-size: 13px; color: var(--muted); }

/* ------------------------------------------------------------------ Card grid */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16 / 10; background-size: cover; background-position: center; display: grid; place-items: center; color: rgba(255, 255, 255, .95); }
.card-media-ic { opacity: .92; }
.badge-featured { position: absolute; top: 12px; left: 12px; color: var(--brand-700); background: #fff; font: 700 11px/1 "Inter"; letter-spacing: .05em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.chip { display: inline-flex; align-items: center; gap: 5px; align-self: flex-start; background: var(--brand-50); color: var(--brand-700); font: 600 12px/1 "Inter"; padding: 6px 11px; border-radius: 7px; }
.chip-light { background: rgba(255, 255, 255, .18); color: #fff; }
.card-title { font-size: 18.5px; letter-spacing: -0.01em; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--brand-700); }
.card-desc { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.card-meta { color: var(--muted); font-size: 13.5px; margin: auto 0 0; display: inline-flex; align-items: center; gap: 6px; }

/* --------------------------------------------------------------------- Stars */
.stars { display: inline-flex; gap: 1px; vertical-align: middle; }
.star { color: #cdd5e2; display: inline-flex; }
.star.is-on { color: var(--star); }
.card-rating { display: flex; align-items: center; gap: 7px; font-size: 13.5px; }
.rating-num { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--muted); }
.rating-none { color: var(--muted); font-size: 13.5px; }

/* ----------------------------------------------------------- Neighbourhoods */
.hood-strip { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 44px; color: #fff; background: linear-gradient(135deg, #1e40af, #2563eb 70%); }
.hood-strip h2 { color: #fff; margin-bottom: 20px; font-size: clamp(22px, 3vw, 29px); }
.hood-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hood-chip { display: inline-flex; align-items: center; gap: 7px; color: #fff; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .24); padding: 9px 15px; border-radius: 999px; font-weight: 500; font-size: 14.5px; transition: background .15s ease, border-color .15s ease; }
.hood-chip:hover { background: rgba(255, 255, 255, .24); border-color: rgba(255, 255, 255, .4); color: #fff; }

/* ------------------------------------------------------------------ CTA band */
.cta-band { background: linear-gradient(135deg, #1d4ed8, #2563eb 60%, #3b82f6); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 52px 0; }
.cta-inner h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); }
.cta-inner p { color: rgba(255, 255, 255, .9); margin: 8px 0 0; }
.cta-inner .btn-primary { background: #fff; color: var(--brand-700); }
.cta-inner .btn-primary:hover { background: var(--brand-50); color: var(--brand-800); }

/* -------------------------------------------------------------- Page header */
.page-head { background: var(--bg-2); padding: 44px 0 32px; border-bottom: 1px solid var(--line); }
.page-head-center { text-align: center; }
.page-head h1 { font-size: clamp(29px, 4vw, 42px); margin-bottom: 8px; letter-spacing: -0.03em; }
.page-head-sub { color: var(--muted); margin: 0; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--brand-700); }
.crumbs-light, .crumbs-light a { color: rgba(255, 255, 255, .85); }

/* ---------------------------------------------------------------- Browse */
.browse-layout { display: grid; grid-template-columns: 264px 1fr; gap: 34px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 16px); border-radius: var(--radius); padding: 20px; }
.filter-search { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 10px; padding: 10px 12px; color: var(--muted); margin-bottom: 20px; background: var(--bg-2); }
.filter-search input { border: 0; outline: none; width: 100%; font: 500 14px "Inter"; color: var(--ink); background: none; }
.filter-search input::placeholder { color: var(--muted); }
.filter-group { margin-bottom: 20px; }
.filter-group h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 9px; font-family: "Inter"; font-weight: 700; }
.filter-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; }
.filter-group a { display: block; padding: 8px 11px; border-radius: 8px; color: var(--ink-soft); font-size: 14.5px; font-weight: 500; }
.filter-group a:hover { background: var(--brand-50); color: var(--brand-700); }
.filter-group a.is-active { background: var(--brand); color: #fff; }

.browse-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.result-count { color: var(--ink-soft); font-weight: 600; }
.sort-control { font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.sort-control select { border: 1px solid var(--line-2); border-radius: 10px; padding: 9px 12px; font: 500 14px "Inter"; background: #fff; color: var(--ink); cursor: pointer; }
.browse-main .card-grid { grid-template-columns: repeat(3, 1fr); }

.pager { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 40px; }
.pager a { padding: 10px 18px; border: 1px solid var(--line-2); border-radius: 10px; background: #fff; font-weight: 600; }
.pager a:hover { border-color: var(--brand); color: var(--brand-700); }
.pager-info { color: var(--muted); font-size: 14px; }

.empty { text-align: center; padding: 64px 20px; border-radius: var(--radius); border-style: dashed; }
.empty-ic { color: var(--brand); margin-bottom: 12px; }
.empty h3 { margin-bottom: 6px; }
.empty p { color: var(--muted); margin: 0 0 18px; }

/* ------------------------------------------------------------------- Maps */
.map-toolbar { display: inline-flex; padding: 3px; border-radius: 10px; background: #fff; border: 1px solid var(--line-2); }
.map-toolbar button { font: 600 13.5px "Inter"; color: var(--muted); background: none; border: 0; padding: 7px 14px; border-radius: 7px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.map-toolbar button.is-active { background: var(--brand); color: #fff; }
.browse-map { height: 460px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 24px; }
.biz-map-wrap { margin: 8px 0 36px; }
.biz-map { height: 320px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.is-hidden { display: none !important; }
.map-popup { font-family: "Inter", sans-serif; min-width: 170px; }
.map-popup strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.map-popup .mp-cat { color: var(--muted); font-size: 12px; }
.map-popup a { display: inline-block; margin-top: 6px; font-weight: 600; font-size: 13px; color: var(--brand-700); }
.leaflet-container { font: inherit; }
.leaflet-popup-content-wrapper { border-radius: 12px; }

/* -------------------------------------------------------------- Business page */
.biz-hero { position: relative; color: #fff; background-size: cover; background-position: center; padding: 60px 0 44px; background-color: #1d4ed8; }
.biz-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 27, 46, .28), rgba(15, 27, 46, .58)); }
.biz-hero-inner { position: relative; }
.biz-hero-inner h1 { color: #fff; font-size: clamp(31px, 4.5vw, 46px); margin: 12px 0 16px; letter-spacing: -0.03em; }
.biz-hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.biz-hero-loc, .biz-hero-rating { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .96); font-size: 15px; }
.biz-hero-rating strong { color: #fff; }

.biz-layout { display: grid; grid-template-columns: 1fr 330px; gap: 40px; align-items: start; }
.biz-h2 { font-size: 23px; margin-bottom: 14px; letter-spacing: -0.02em; }
.biz-desc { color: var(--ink-soft); font-size: 16.5px; margin: 0 0 36px; }

.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.review-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; }
.review { border-radius: var(--radius); padding: 18px 20px; }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.review-author { font-weight: 700; }
.review-title { font-size: 16px; margin: 4px 0 6px; }
.review-body { color: var(--ink-soft); margin: 0 0 8px; }
.review-date { color: var(--muted); font-size: 13px; }
.muted { color: var(--muted); }

.review-form-card, .info-card, .form-card { border-radius: var(--radius); padding: 24px; }
.review-form-card { margin-top: 24px; }
.review-form-card h3 { margin-bottom: 16px; font-size: 19px; }

.biz-side { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: 18px; }
.info-card h3 { font-size: 17px; margin-bottom: 14px; }
.info-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 12px; }
.info-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-soft); font-size: 14.5px; }
.info-list svg { color: var(--brand); flex-shrink: 0; margin-top: 1px; }

/* --------------------------------------------------------------------- Forms */
.stack { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font: 400 15px/1.5 "Inter", sans-serif; color: var(--ink); padding: 12px 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); width: 100%; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-errors { background: #fdeceb; border: 1px solid #f5cbc6; color: #c0392b; border-radius: 11px; padding: 14px 18px; margin-bottom: 20px; }
.form-errors p { margin: 4px 0; font-size: 14.5px; }

.star-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-input label { color: #cdd5e2; cursor: pointer; line-height: 0; transition: color .1s ease; }
.star-input label:hover, .star-input label:hover ~ label, .star-input input:checked ~ label { color: var(--star); }
.star-input input:focus-visible + label { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* --------------------------------------------------------------------- Footer */
.site-footer { background: #0f1b2e; color: rgba(255, 255, 255, .7); padding: 58px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin: 16px 0 18px; font-size: 14.5px; max-width: 42ch; line-height: 1.7; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: #fff; font-weight: 600; font-size: 14px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, .7); font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-base { display: flex; justify-content: space-between; gap: 16px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 13.5px; color: rgba(255, 255, 255, .5); }

/* ----------------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid, .browse-main .card-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-layout { grid-template-columns: 1fr; }
  .biz-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; padding: 12px 16px 20px; display: none;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a, .menu-trigger { width: 100%; justify-content: flex-start; }
  .nav-divider-li { display: none; }
  .mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: none; padding: 4px 0 8px 16px; min-width: auto; }
  .mega-2col { grid-template-columns: 1fr; min-width: auto; }
  .nav-cta-li { margin: 8px 0 0; }
  .nav-cta { width: 100%; }
  .browse-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .section { padding: 46px 0; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .card-grid, .browse-main .card-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-search { flex-wrap: wrap; }
  .hero-search input[type=text] { flex-basis: 100%; padding-left: 44px; }
  .hero-search select, .hero-search .btn { flex: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-base { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero-slide { transition: none; }
}
