/* ═══════════════════════════════════════════════════════════
   Ontario Well Water — Modern Design System (2026)
   Clean · Trustworthy · High-Conversion · Responsive
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand Palette: Deep Slate, Crisp Cyan, Emerald Accent */
  --c-brand-900:     #0b1e28;
  --c-brand-800:     #0f2e3d;
  --c-brand-700:     #13455b;
  --c-brand-600:     #17607f;
  --c-brand-500:     #0284c7;
  --c-brand-400:     #38bdf8;
  --c-brand-100:     #e0f2fe;
  --c-brand-50:      #f0f9ff;

  --c-primary:       var(--c-brand-700);
  --c-primary-dark:  var(--c-brand-900);
  --c-primary-light: var(--c-brand-50);
  
  --c-accent:        #059669;
  --c-accent-hover:  #047857;
  --c-accent-light:  #ecfdf5;

  --c-text-main:     #0f172a;
  --c-text-body:     #334155;
  --c-text-muted:    #64748b;
  --c-text-light:    #94a3b8;

  --c-bg:            #ffffff;
  --c-bg-alt:        #f8fafc;
  --c-bg-subtle:     #f1f5f9;
  --c-border:        #e2e8f0;
  --c-border-hover:  #cbd5e1;

  --c-warning-bg:    #fffbeb;
  --c-warning-border:#fef08a;
  --c-warning-text:  #854d0e;

  --c-danger-bg:     #fef2f2;
  --c-danger-border: #fecaca;
  --c-danger-text:   #991b1b;

  --c-success-bg:    #f0fdf4;
  --c-success-border:#bbf7d0;
  --c-success-text:  #166534;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-w:           1140px;
  --max-w-content:   800px;
  
  --radius-sm:       6px;
  --radius:          10px;
  --radius-lg:       16px;
  --radius-xl:       24px;
  --radius-full:     9999px;

  --shadow-sm:       0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:          0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
  --shadow-md:       0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-lg:       0 20px 25px -5px rgb(0 0 0 / 0.09), 0 8px 10px -6px rgb(0 0 0 / 0.04);
  --shadow-float:    0 25px 50px -12px rgba(11, 30, 40, 0.25);

  --transition-fast: 0.15s ease;
  --transition:      0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text-body);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c-brand-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--c-brand-700);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--c-text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p + p { margin-top: 1rem; }

/* ── Layout & Container ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-muted  { color: var(--c-text-muted); }
.text-light  { color: var(--c-text-light); }

/* ── Badges & Chips ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: nowrap;
}

.badge-primary {
  background: var(--c-brand-50);
  color: var(--c-brand-700);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.badge-emerald {
  background: var(--c-accent-light);
  color: var(--c-accent);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.badge-amber {
  background: var(--c-warning-bg);
  color: var(--c-warning-text);
  border: 1px solid var(--c-warning-border);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.25;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(180deg, #059669 0%, #047857 100%);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(4, 120, 87, 0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #047857 0%, #065f46 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: #ffffff;
  color: var(--c-brand-800);
  border-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--c-bg-alt);
  border-color: var(--c-border-hover);
  color: var(--c-brand-900);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-brand-700);
  border: 1.5px solid var(--c-brand-600);
}

.btn-outline:hover {
  background: var(--c-brand-50);
  color: var(--c-brand-900);
  border-color: var(--c-brand-700);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ── Modern Header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-brand-900);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-logo:hover {
  color: var(--c-brand-600);
}

.site-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0284c7 0%, #0f2e3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
  flex-shrink: 0;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-brand {
  line-height: 1.1;
  font-size: 1.1rem;
}

.site-logo-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav > ul > li > a {
  color: var(--c-text-body);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li > a[aria-current="page"] {
  color: var(--c-brand-500);
}

.site-nav > ul > li > a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-brand-500);
  border-radius: 2px;
}

/* Nav Dropdown for Regions */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--c-text-body);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--c-brand-500);
}

.nav-dropdown-toggle svg {
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -0.75rem;
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0 !important;
  min-width: 210px;
  display: none !important;
  flex-direction: column !important;
  gap: 0 !important;
  z-index: 120;
  list-style: none;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.6rem;
  left: 0;
  right: 0;
  height: 0.6rem;
}

@media (min-width: 861px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: flex !important;
  }
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex !important;
}

.nav-dropdown-menu li {
  width: 100%;
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 0.6rem 1.25rem !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--c-brand-900) !important;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--c-brand-50) !important;
  color: var(--c-brand-600) !important;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-actions .btn {
  padding: 0.75rem 1.4rem;
  font-size: 0.925rem;
  border-radius: var(--radius);
}

.site-nav .phone-link,
.phone-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  color: var(--c-brand-800) !important;
  font-weight: 600 !important;
  font-size: 0.925rem !important;
  line-height: 1.25 !important;
  letter-spacing: 0.01em !important;
  font-variant-numeric: tabular-nums !important;
  padding: 0.75rem 2.25rem !important;
  border-radius: var(--radius) !important;
  background: var(--c-bg-subtle) !important;
  border: 1.5px solid var(--c-border) !important;
  transition: all var(--transition-fast) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.site-nav .phone-link:hover,
.phone-link:hover {
  background: #ffffff !important;
  border-color: var(--c-brand-400) !important;
  color: var(--c-brand-700) !important;
  box-shadow: var(--shadow-sm) !important;
}

.site-nav .phone-link::after {
  display: none !important;
}

.site-nav .phone-link .icon,
.phone-link .icon {
  color: var(--c-brand-500) !important;
  flex-shrink: 0 !important;
  width: 16px !important;
  height: 16px !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--c-border);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: flex; }
  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .site-nav > ul > li > a {
    font-size: 1.05rem;
    padding: 0.5rem 0;
  }
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    color: var(--c-text-body);
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.25rem 0 0.5rem 1rem !important;
    min-width: auto;
    width: 100%;
    display: none !important;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none !important;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: flex !important;
  }
  .nav-dropdown-menu a {
    padding: 0.4rem 0 !important;
    font-size: 0.95rem !important;
  }
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--c-border);
  }
  .header-actions .btn,
  .header-actions .phone-link { justify-content: center; }
}

/* ── Modern Hero Section ────────────────────────────────── */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  background: 
    radial-gradient(ellipse at 50% 0%, #e0f2fe 0%, transparent 65%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(2, 132, 199, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-brand-700);
  margin-bottom: 1.5rem;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: var(--c-brand-900);
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #0f2e3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--c-text-body);
  max-width: 660px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-proof-item svg {
  color: var(--c-accent);
  flex-shrink: 0;
}

/* ── Section Styling ────────────────────────────────────── */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header .section-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-brand-500);
  margin-bottom: 0.5rem;
  display: block;
}

.section-header h2 {
  color: var(--c-brand-900);
}

.section-header p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* ── Symptom Cards (Replacing Emojis with Modern SVGs) ──── */
.card-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid-2x2 {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .card-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-link-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}

.card:hover .card-icon-box {
  transform: scale(1.05);
}

.card-icon-box--sulfur {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}

.card-icon-box--iron {
  background: #ffedd5;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.card-icon-box--hard {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.card-icon-box--cloudy {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.card h3 {
  color: var(--c-brand-900);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--c-text-body);
  font-size: 0.925rem;
  line-height: 1.55;
  flex-grow: 1;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-brand-500);
  margin-top: 1.25rem;
  transition: gap var(--transition-fast);
}

.card:hover .card-cta {
  gap: 0.55rem;
  color: var(--c-brand-700);
}

/* ── Modern Steps (How it Works) ────────────────────────── */
.steps-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  position: relative;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--c-brand-100);
}

.step-badge {
  position: absolute;
  top: -16px;
  left: 1.75rem;
  height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-full);
  background: var(--c-brand-700);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 6px rgba(19, 69, 91, 0.3);
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--c-brand-50);
  color: var(--c-brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  color: var(--c-brand-900);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--c-text-body);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ── Trust Banner (Government & Screening Transparency) ── */
.trust-banner {
  background: linear-gradient(135deg, #0b1e28 0%, #13455b 100%);
  color: #ffffff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.trust-banner::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -40%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.trust-banner-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.trust-shield-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.trust-banner-text h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.trust-banner-text p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

.trust-banner-text a {
  color: #38bdf8;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.trust-banner-text a:hover {
  color: #ffffff;
}

@media (max-width: 700px) {
  .trust-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
}

/* ── Township Cards ─────────────────────────────────────── */
.township-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.township-card:hover {
  border-color: var(--c-brand-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.township-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.township-card h3 {
  font-size: 1.2rem;
  color: var(--c-brand-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.township-card h3 svg {
  color: var(--c-brand-500);
  flex-shrink: 0;
}

.township-card p {
  font-size: 0.9rem;
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.township-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.township-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--c-bg-subtle);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

/* ── Article & Content Pages (Fixing Broken Layouts) ────── */
.page-header {
  background: linear-gradient(180deg, var(--c-brand-50) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--c-border);
  padding: 3rem 0 2.5rem;
}

.page-header h1 {
  color: var(--c-brand-900);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--c-text-muted);
  font-size: 1.15rem;
  max-width: 720px;
}

.article-container {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--c-text-body);
}

.breadcrumbs a:hover {
  color: var(--c-brand-500);
}

.breadcrumbs span {
  color: var(--c-text-light);
}

/* Prose Typography */
.prose {
  color: var(--c-text-body);
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose h2 {
  color: var(--c-brand-900);
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}

.prose h3 {
  color: var(--c-brand-800);
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.prose strong {
  color: var(--c-text-main);
  font-weight: 700;
}

/* Callout Boxes */
.callout {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
}

.callout-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-warning {
  background: var(--c-warning-bg);
  border: 1px solid var(--c-warning-border);
  color: var(--c-warning-text);
}

.callout-info {
  background: var(--c-brand-50);
  border: 1px solid var(--c-brand-100);
  color: var(--c-brand-800);
}

.callout-success {
  background: var(--c-success-bg);
  border: 1px solid var(--c-success-border);
  color: var(--c-success-text);
}

/* Comparison Table */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  text-align: left;
}

.data-table th, .data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--c-border);
}

.data-table th {
  background: var(--c-bg-subtle);
  color: var(--c-text-main);
  font-weight: 700;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: var(--c-bg-alt);
}

/* In-Content CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--c-brand-50) 0%, #f0fdf4 100%);
  border: 2px solid var(--c-brand-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3.5rem 0 2rem;
  box-shadow: var(--shadow);
}

.cta-banner h3 {
  font-size: 1.45rem;
  color: var(--c-brand-900);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: var(--c-text-body);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

.cta-banner-phone {
  margin-top: 1rem;
  font-size: 0.925rem;
  color: var(--c-text-muted);
}

.cta-banner-phone a {
  font-weight: 700;
  color: var(--c-brand-700);
}

/* ── Modern Quiz Overlay ────────────────────────────────── */
.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 30, 40, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.quiz-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.quiz-panel {
  background: #ffffff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(24px) scale(0.98);
  transition: transform var(--transition-slow);
}

.quiz-overlay[aria-hidden="false"] .quiz-panel {
  transform: translateY(0) scale(1);
}

.quiz-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border);
  font-size: 1.25rem;
  color: var(--c-text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.quiz-close:hover {
  background: var(--c-border);
  color: var(--c-text-main);
}

/* ── Quiz Internals ─────────────────────────────────────── */
.quiz-inner {
  padding: 2.25rem 2.25rem 1.75rem;
}

@media (max-width: 520px) {
  .quiz-inner { padding: 1.5rem 1.25rem 1.25rem; }
}

.quiz-progress-wrap {
  margin-bottom: 2rem;
}

.quiz-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--c-text-muted);
}

.quiz-progress-bar {
  height: 6px;
  background: var(--c-border);
  border-radius: 3px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284c7 0%, #059669 100%);
  border-radius: 3px;
  transition: width 0.35s ease;
}

.quiz-question {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-brand-900);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.quiz-hint {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--c-text-body);
  user-select: none;
  background: #ffffff;
}

.quiz-option:hover {
  border-color: var(--c-brand-400);
  background: var(--c-brand-50);
  color: var(--c-brand-900);
}

.quiz-option.selected {
  border-color: var(--c-brand-500);
  background: var(--c-brand-50);
  color: var(--c-brand-900);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--c-brand-500);
}

.quiz-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--c-brand-500);
  flex-shrink: 0;
}

.quiz-select {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 500;
  background-color: #ffffff;
  color: var(--c-text-main);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.quiz-select:focus {
  border-color: var(--c-brand-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.quiz-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-field > label:not(.symptom-card):not(.quiz-consent) {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-main);
  margin-bottom: 0.35rem;
}

.quiz-field input:not([type="checkbox"]):not([type="radio"]),
.quiz-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--c-text-main);
  background: #ffffff;
  transition: border-color var(--transition-fast);
}

.quiz-field input:not([type="checkbox"]):not([type="radio"]):focus,
.quiz-field select:focus {
  border-color: var(--c-brand-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.quiz-option input[type="checkbox"],
.quiz-option input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  accent-color: var(--c-brand-500);
  flex-shrink: 0;
  cursor: pointer;
}

/* ── Modern Symptom Selection Cards (Contact Page) ───────── */
.symptom-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

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

.quiz-field .symptom-card,
.symptom-card {
  position: relative !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.85rem 1.15rem !important;
  min-height: 50px !important;
  border: 1.5px solid var(--c-border) !important;
  border-radius: var(--radius) !important;
  background: #ffffff !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  user-select: none !important;
  margin-bottom: 0 !important;
  font-weight: 500 !important;
}

/* Hide native checkbox cleanly */
.symptom-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
}

/* Custom Checkbox Indicator */
.custom-check {
  width: 20px !important;
  height: 20px !important;
  border-radius: 5px !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  color: #ffffff !important;
  transition: all var(--transition-fast) !important;
  margin: 0 !important;
}

.custom-check svg {
  width: 12px !important;
  height: 10px !important;
  opacity: 0 !important;
  transform: scale(0.5) !important;
  transition: all var(--transition-fast) !important;
}

.symptom-label {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--c-text-body) !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  transition: color var(--transition-fast) !important;
}

/* Hover state */
.symptom-card:hover {
  border-color: var(--c-brand-300);
  background: var(--c-brand-50);
}

.symptom-card:hover .custom-check {
  border-color: var(--c-brand-400);
}

/* Checked state */
.symptom-card:has(input:checked),
.symptom-card.is-checked {
  border-color: var(--c-brand-500);
  background: #f0f9ff;
  box-shadow: 0 0 0 1px var(--c-brand-500);
}

.symptom-card:has(input:checked) .symptom-label,
.symptom-card.is-checked .symptom-label {
  color: var(--c-brand-900);
  font-weight: 600;
}

.symptom-card:has(input:checked) .custom-check,
.symptom-card.is-checked .custom-check {
  background: var(--c-brand-500);
  border-color: var(--c-brand-500);
}

.symptom-card:has(input:checked) .custom-check svg,
.symptom-card.is-checked .custom-check svg {
  opacity: 1;
  transform: scale(1);
}

/* Focus outline for accessibility */
.symptom-card:has(input:focus-visible) {
  outline: 2px solid var(--c-brand-500);
  outline-offset: 2px;
}

.quiz-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.45;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.quiz-consent input[type="checkbox"],
.quiz-consent input {
  width: 17px !important;
  height: 17px !important;
  margin-top: 2px !important;
  flex-shrink: 0;
  accent-color: var(--c-brand-500);
  cursor: pointer;
}

/* ── Modern Toast Notification System ───────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  pointer-events: none;
}

@media (max-width: 600px) {
  .toast-container {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #0f172a;
  color: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-warning .toast-icon { color: #fbbf24; }
.toast-error   .toast-icon { color: #f87171; }
.toast-success .toast-icon { color: #34d399; }
.toast-info    .toast-icon { color: #38bdf8; }

@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.shake-field {
  animation: fieldShake 0.4s ease;
  border-color: #ef4444 !important;
  color: #dc2626 !important;
}

.quiz-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.quiz-back {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.quiz-back:hover {
  color: var(--c-brand-700);
}

.quiz-next {
  margin-left: auto;
}

/* Results & Booking */
.quiz-results {
  padding: 2.25rem;
}

@media (max-width: 520px) {
  .quiz-results { padding: 1.5rem 1.25rem; }
}

.quiz-results h2 {
  color: var(--c-brand-900);
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}

.result-card {
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.85rem;
}

.result-card h4 {
  color: var(--c-brand-800);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.result-card p {
  font-size: 0.9rem;
  color: var(--c-text-body);
  line-height: 1.55;
}

.result-disclaimer {
  background: var(--c-warning-bg);
  border: 1px solid var(--c-warning-border);
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
  font-size: 0.825rem;
  color: var(--c-warning-text);
  margin: 1.25rem 0;
  line-height: 1.5;
}

.result-pho {
  background: var(--c-brand-50);
  border: 1px solid var(--c-brand-100);
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
  font-size: 0.85rem;
  color: var(--c-brand-800);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.result-pho a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-form {
  border-top: 1px solid var(--c-border);
  padding-top: 1.5rem;
}

.booking-form h3 {
  font-size: 1.2rem;
  color: var(--c-brand-900);
  margin-bottom: 1rem;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

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

/* Variant & Confirmation States */
.quiz-variant, .quiz-confirm {
  text-align: center;
  padding: 3rem 2rem;
}

.confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border: 2px solid rgba(5, 150, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.25rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.quiz-confirm h2 {
  color: var(--c-brand-900);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.quiz-confirm p {
  color: var(--c-text-body);
  max-width: 440px;
  margin: 0 auto;
}

/* ── Modern Footer ──────────────────────────────────────── */
.site-footer {
  background: #0b1e28;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  margin-bottom: 3.5rem;
}

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

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.15rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: #38bdf8;
}

.footer-disclosure {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.825rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-disclosure strong {
  color: #e2e8f0;
}

.footer-regions-band {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  font-size: 0.85rem;
}

.footer-regions-band h5 {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-regions-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  line-height: 1.6;
}

.footer-region-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: baseline;
}

.footer-region-row a.region-main {
  color: #38bdf8;
  font-weight: 600;
  margin-right: 0.25rem;
}

.footer-region-row a.township-sub {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-region-row a.township-sub:hover,
.footer-region-row a.region-main:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.825rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ── Contact Page Styles ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  font-size: 1.45rem;
  color: var(--c-brand-900);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  font-size: 1.15rem;
  color: var(--c-brand-900);
  margin-bottom: 1rem;
}

.sidebar-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--c-brand-50);
  color: var(--c-brand-700);
  border: 1px solid var(--c-brand-100);
  margin-bottom: 0.75rem;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-text-body);
}

.sidebar-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.sidebar-list-item svg {
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Utility & Micro-interactions ───────────────────────── */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
