/* ─── Custom Properties ──────────────────────────────────────────────────── */
:root {
  --color-navy:      #0d1b2a;
  --color-navy-mid:  #1c2f45;
  --color-accent:    #e63946;
  --color-accent-dk: #c1121f;
  --color-gold:      #f4a261;
  --color-text:      #1a1a2e;
  --color-muted:     #64748b;
  --color-border:    #e2e8f0;
  --color-bg:        #f8fafc;
  --color-white:     #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', var(--font-sans);

  --radius:    0.5rem;
  --radius-lg: 1rem;
  --shadow:    0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);

  --container: 1200px;
  --gap:       1.5rem;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }

.prose { line-height: 1.8; }
.prose h2, .prose h3 { margin: 1.5rem 0 .75rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--gap);
  padding-top: 2rem;
  padding-bottom: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

.section { padding: 3.5rem 0; }
.section:nth-child(even) { background: var(--color-white); }

.text-center { text-align: center; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .1s, box-shadow .2s;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--color-accent); color: var(--color-white); }
.btn-primary:hover { background: var(--color-accent-dk); color: var(--color-white); }

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: var(--color-white); }

.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

/* ─── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 2rem;
  font-size: .75rem;
  font-weight: 600;
  background: var(--color-border);
  color: var(--color-muted);
}
.badge-province { background: #dbeafe; color: #1d4ed8; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--color-navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.site-branding { display: flex; align-items: center; gap: .75rem; }

.site-title-link {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}
.site-title-outlet {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -.03em;
}
.site-title-domain {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -.03em;
}
.site-tagline {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: none;
}
@media (min-width: 768px) { .site-tagline { display: block; } }

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem .85rem;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  background: rgba(255,255,255,.1);
  color: var(--color-white);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform .2s;
}
.hamburger { position: relative; }
.hamburger::before { position: absolute; top: -7px; }
.hamburger::after  { position: absolute; top: 7px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: var(--color-navy-mid);
    padding: 1rem;
    gap: .25rem;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { width: 100%; }
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--color-navy);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230, 57, 70, 0.15), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(244, 162, 97, 0.08), transparent 50%);
}
.hero-content { position: relative; max-width: 700px; }

.hero-headline {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-headline span { color: var(--color-accent); }

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Hero Search */
.hero-search { margin-bottom: 1.5rem; }
.search-wrap {
  display: flex;
  max-width: 580px;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: .9rem 1.2rem;
  font-size: 1rem;
  font-family: var(--font-sans);
}
.search-wrap .btn { border-radius: 0; padding: .9rem 1.5rem; }

/* Province Tags */
.hero-browse {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.province-tag {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border-radius: 2rem;
  padding: .3rem .85rem;
  font-size: .82rem;
  font-weight: 500;
  transition: background .2s;
}
.province-tag:hover { background: rgba(255,255,255,.22); text-decoration: none; color: #fff; }

/* ─── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--color-accent);
  padding: 1.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}

/* ─── Section Header ─────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-header h2 { margin: 0; }
.view-all {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: var(--gap);
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) { .cards-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  {
  .cards-grid--3, .cards-grid--2 { grid-template-columns: 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-image { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.card-image--placeholder {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .9rem; font-weight: 600;
}
.card-image-link { display: block; overflow: hidden; }
.card-image-link:hover .card-image { transform: scale(1.03); transition: transform .35s; }

.card-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.card-meta { display: flex; flex-wrap: wrap; gap: .35rem; }
.card-title { font-size: 1.1rem; line-height: 1.3; }
.card-title a { color: var(--color-text); }
.card-title a:hover { color: var(--color-accent); text-decoration: none; }
.card-location {
  display: flex; align-items: center; gap: .3rem;
  font-size: .85rem; color: var(--color-muted);
}
.card-excerpt { font-size: .875rem; color: var(--color-muted); flex: 1; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* Deal card */
.deal-card { position: relative; }
.deal-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--color-accent);
  color: white;
  font-size: .8rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 2rem;
  z-index: 1;
}
.deal-expiry { font-size: .78rem; color: var(--color-muted); }

/* ─── Province Grid ──────────────────────────────────────────────────────── */
.province-section { background: var(--color-navy); }
.province-section .section-header h2 { color: var(--color-white); }

.province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.province-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background .2s, border-color .2s;
  color: var(--color-white);
}
.province-card:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--color-accent);
  text-decoration: none;
}
.province-abbr {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.province-name { font-weight: 600; font-size: .95rem; margin-top: .4rem; }
.province-count { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .2rem; }

/* ─── Brands Grid ────────────────────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}
.brand-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: .75rem;
  text-align: center;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  transition: border-color .2s, box-shadow .2s;
}
.brand-tile:hover { border-color: var(--color-accent); box-shadow: var(--shadow); text-decoration: none; }
.brand-logo { max-height: 60px; width: auto; object-fit: contain; margin: 0 auto; }
.brand-logo-placeholder {
  font-size: .75rem; font-weight: 700;
  color: var(--color-navy); line-height: 1.2;
  text-align: center;
}
.brand-discount {
  font-size: .7rem; font-weight: 700;
  background: var(--color-accent); color: white;
  padding: .15rem .5rem; border-radius: 2rem;
}
.brand-tile--sm { min-height: 80px; }

/* Brands A–Z List */
.brand-letter-group { margin-bottom: 2rem; }
.letter-heading {
  font-size: 1.5rem; font-weight: 800;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: .5rem; margin-bottom: 1rem;
}
.brands-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .75rem;
}
.brand-list-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: .75rem;
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  transition: border-color .2s;
}
.brand-list-item:hover { border-color: var(--color-accent); text-decoration: none; }
.brand-list-logo { max-height: 50px; object-fit: contain; }
.brand-list-name { font-size: .85rem; font-weight: 600; color: var(--color-text); text-align: center; }

/* A–Z Nav */
.az-nav {
  display: flex; flex-wrap: wrap; gap: .25rem;
  margin-bottom: 1.5rem;
}
.az-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: .35rem;
  font-weight: 700; font-size: .85rem;
  color: var(--color-text);
  transition: background .15s, border-color .15s;
}
.az-link:hover { background: var(--color-accent); color: white; border-color: var(--color-accent); text-decoration: none; }

/* ─── Features Grid ──────────────────────────────────────────────────────── */
.why-section { background: var(--color-bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--gap);
  margin-top: 2rem;
}
.feature-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.feature-icon { font-size: 2.25rem; margin-bottom: .75rem; }
.feature-item h3 { margin-bottom: .5rem; }
.feature-item p { font-size: .9rem; color: var(--color-muted); }

/* ─── Filter Bar ─────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.filter-label { font-weight: 600; font-size: .9rem; color: var(--color-muted); white-space: nowrap; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter-tab {
  padding: .35rem .9rem;
  border-radius: 2rem;
  font-size: .85rem; font-weight: 500;
  color: var(--color-muted);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: background .15s, color .15s, border-color .15s;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--color-accent); color: white;
  border-color: var(--color-accent); text-decoration: none;
}

/* ─── Page Hero ──────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--color-navy);
  padding: 3rem 0;
  position: relative;
}
.page-hero h1 { color: var(--color-white); margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 600px; }
.page-hero--malls { background: linear-gradient(135deg, var(--color-navy), #1a3a5c); }
.page-hero--brands { background: linear-gradient(135deg, #1a0a2e, var(--color-navy)); }

/* ─── Mall Hero ──────────────────────────────────────────────────────────── */
.mall-hero { position: relative; min-height: 320px; overflow: hidden; }
.mall-hero-image { width: 100%; height: 400px; object-fit: cover; }
.mall-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,.9) 40%, rgba(13,27,42,.5));
  display: flex; align-items: flex-end;
  padding-bottom: 2rem;
}
.mall-title { color: white; margin-bottom: .5rem; }
.mall-location-tag, .mall-store-count { color: rgba(255,255,255,.75); font-size: 1rem; }

/* ─── Mall Details ───────────────────────────────────────────────────────── */
.mall-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin: 2rem 0;
}
@media (max-width: 700px) { .mall-details-grid { grid-template-columns: 1fr; } }

.mall-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.mall-info-card h2, .mall-info-card h3 { margin-bottom: .75rem; font-size: 1.2rem; }

.info-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.info-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; }
.info-list svg { flex-shrink: 0; margin-top: .15rem; color: var(--color-accent); }
.info-list a { color: var(--color-text); }
.info-list a:hover { color: var(--color-accent); }

.hours-list {
  font-size: .875rem; line-height: 1.9;
  color: var(--color-muted);
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: .75rem 1rem;
}

.mall-map iframe { border-radius: var(--radius-lg); }
.mall-description { margin: 2rem 0; }
.mall-brands { margin-top: 2rem; }
.mall-brands h2 { margin-bottom: 1.25rem; }

/* ─── Brand Header ───────────────────────────────────────────────────────── */
.brand-header {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.brand-header-logo { max-height: 80px; width: auto; object-fit: contain; }
.brand-header-info { display: flex; flex-direction: column; gap: .6rem; }
.brand-header-info h1 { margin: 0; font-size: 2rem; }
.brand-categories { display: flex; flex-wrap: wrap; gap: .4rem; }
.brand-savings-badge {
  display: inline-block;
  background: #dcfce7; color: #166534;
  padding: .3rem .8rem; border-radius: 2rem;
  font-size: .85rem; font-weight: 700;
}
.brand-locations { margin-top: 2rem; }
.brand-locations h2 { margin-bottom: 1.25rem; }

/* ─── Breadcrumbs ────────────────────────────────────────────────────────── */
.breadcrumbs {
  display: flex; align-items: center; flex-wrap: wrap; gap: .35rem;
  font-size: .82rem; color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: rgba(255,255,255,.75); }
.breadcrumbs a:hover { color: white; }
.breadcrumbs span { color: rgba(255,255,255,.4); }

/* ─── Pagination ─────────────────────────────────────────────────────────── */
.pagination { margin-top: 2rem; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-weight: 600; font-size: .9rem;
  color: var(--color-text);
  transition: background .15s;
}
.pagination .page-numbers:hover { background: var(--color-accent); color: white; border-color: var(--color-accent); text-decoration: none; }
.pagination .page-numbers.current { background: var(--color-accent); color: white; border-color: var(--color-accent); }
.pagination .prev, .pagination .next { width: auto; padding: 0 .75rem; }

/* ─── Ad Units ───────────────────────────────────────────────────────────── */
.ad-zone { padding: 1.5rem 0; background: var(--color-bg); }
.ad-label {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--color-muted); text-align: center; margin-bottom: .35rem;
}
.ad-unit {
  display: flex; flex-direction: column; align-items: center;
}
.ad-unit--728x90 > div { min-height: 90px; width: min(728px, 100%); background: #f1f5f9; border-radius: var(--radius); }
.ad-unit--300x250 > div { min-height: 250px; width: 300px; background: #f1f5f9; border-radius: var(--radius); }
.ad-unit--sticky { position: sticky; top: 90px; }

/* ─── Sidebar ────────────────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.widget {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.widget-title { font-size: 1rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--color-border); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer-ad-bar { background: var(--color-bg); padding: 1.5rem 0; border-top: 1px solid var(--color-border); }
.footer-main { background: var(--color-navy); padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logo { display: inline-flex; align-items: baseline; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.7; }
.footer-col h4 { color: var(--color-white); font-size: .875rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--color-white); text-decoration: none; }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 1rem 0;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
}
.copyright { font-size: .8rem; color: rgba(255,255,255,.4); }
.copyright a { color: rgba(255,255,255,.55); }
.footer-nav { display: flex; gap: 1rem; }
.footer-nav a { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-nav a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* ─── Accessibility ──────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ─── No Results ─────────────────────────────────────────────────────────── */
.no-results {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--color-muted);
  box-shadow: var(--shadow);
}
