/* ============================================================
   Glasgow Fire Support — Stylesheet
   No external CDN. No @import. System font stack only.
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #FFF8F0; color: #1C1917; line-height: 1.6; min-height: 100vh; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
ul { list-style: none; }

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

/* ── CSS Variables ── */
:root {
  --brand:         #C2400C;
  --brand-dark:    #9A3412;
  --brand-light:   #FED7AA;
  --green:         #15803D;
  --green-bg:      #F0FDF4;
  --green-border:  #BBF7D0;
  --green-text:    #14532D;
  --blue:          #1D4ED8;
  --blue-bg:       #EFF6FF;
  --blue-border:   #BFDBFE;
  --blue-text:     #1E3A8A;
  --yellow-bg:     #FEFCE8;
  --yellow-border: #FDE047;
  --yellow-text:   #854D0E;
  --purple:        #7E22CE;
  --purple-bg:     #F5F3FF;
  --purple-border: #DDD6FE;
  --purple-text:   #4C1D95;
  --bg:            #FFF8F0;
  --white:         #FFFFFF;
  --dark:          #1C1917;
  --text:          #292524;
  --muted:         #78716C;
  --border:        #E7E5E4;
  --border-dark:   #D6D3D1;
  --stone-100:     #F5F5F4;
  --stone-800:     #292524;
  --stone-900:     #1C1917;
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     14px;
  --radius-full:   9999px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:     0 10px 30px rgba(0,0,0,0.12);
  --transition:    0.2s ease;
  --max-w:         1000px;
}

/* ── Focus Ring (Accessibility) ── */
:focus-visible {
  outline: 3px solid #F97316;
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 100;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

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

/* ── Hero / Header ── */
.hero {
  background: var(--stone-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(232, 76, 30, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(249, 115, 22, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 3.5rem 1rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.hero-content { flex: 1; min-width: 0; }

.hero-image-wrap {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 860px) {
  .hero-inner { align-items: stretch; }
  .hero-image-wrap {
    display: flex;
    flex-direction: column;
    width: 300px;
  }
}
.hero-img-frame {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  outline: 3px solid #EA580C;
  outline-offset: 4px;
  aspect-ratio: 4 / 5;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
}
.hero-img-credit {
  font-size: 0.65rem;
  color: #57534E;
  margin-top: 0.5rem;
  text-align: right;
}
.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #EA580C;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.alert-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero p {
  color: #D6D3D1;
  font-size: 1rem;
  max-width: 38rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  min-height: 44px; /* touch target */
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { border-color: #fff; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: #A8A29E;
}
.hero-meta-item svg { width: 16px; height: 16px; color: #F97316; flex-shrink: 0; }

/* ── Source chips (hero + footer) ── */
.hero-sources {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-sources-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #57534E;
  padding-top: 0.35rem;
  flex-shrink: 0;
}
.hero-sources-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.source-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.625rem 0.2rem 0.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: #A8A29E;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.source-chip:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.source-chip-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background: #fff;
}
/* Footer source chips */
.footer-source-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.footer-source-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.625rem 0.2rem 0.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: #A8A29E;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-source-chip:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}

/* ── Sticky Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--stone-900);
  border-bottom: 1px solid #292524;
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  gap: 1rem;
}
.site-nav-brand {
  font-size: 0.78rem;
  font-weight: 700;
  color: #57534E;
  white-space: nowrap;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 540px) { .site-nav-brand { display: block; } }
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.site-nav-links::-webkit-scrollbar { display: none; }
.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #A8A29E;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover  { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.12); }

/* Scroll offset so anchor links land below the sticky nav */
#how-to-help,
#businesses,
#supporters { scroll-margin-top: 52px; }

/* ── How To Help ── */
.help-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.help-section-inner { padding: 3rem 1rem; }
.section-heading { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 0.375rem; }
.section-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 2rem; }
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .help-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .help-grid { grid-template-columns: repeat(4, 1fr); } }
.help-card {
  border-radius: var(--radius-lg);
  border: 1px solid;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.help-card.green  { background: var(--green-bg);  border-color: var(--green-border); }
.help-card.blue   { background: var(--blue-bg);   border-color: var(--blue-border); }
.help-card.yellow { background: var(--yellow-bg); border-color: var(--yellow-border); }
.help-card.purple { background: var(--purple-bg); border-color: var(--purple-border); }
.help-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.help-card-icon svg { width: 20px; height: 20px; }
.green  .help-card-icon { background: #DCFCE7; color: var(--green); }
.blue   .help-card-icon { background: #DBEAFE; color: var(--blue); }
.yellow .help-card-icon { background: #FEF9C3; color: #A16207; }
.purple .help-card-icon { background: #EDE9FE; color: var(--purple); }
.help-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.green  h3 { color: var(--green-text); }
.blue   h3 { color: var(--blue-text); }
.yellow h3 { color: var(--yellow-text); }
.purple h3 { color: var(--purple-text); }
.help-card p { font-size: 0.775rem; line-height: 1.6; margin-bottom: 0.625rem; }
.help-card-btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: auto;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.green  .help-card-btn { color: var(--green-text); }
.blue   .help-card-btn { color: var(--blue-text); }
.yellow .help-card-btn { color: var(--yellow-text); }
.purple .help-card-btn { color: var(--purple-text); }
.purple .help-card-btn:hover { color: var(--purple); }
.green  p { color: #166534; }
.blue   p { color: #1E40AF; }
.yellow p { color: var(--yellow-text); }
.purple p { color: var(--purple-text); }

/* Share bar */
.share-bar {
  background: var(--stone-100);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .share-bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.share-bar-text p:first-child { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.share-bar-text p:last-child  { font-size: 0.775rem; color: var(--muted); }
.share-buttons { display: flex; gap: 0.5rem; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: opacity var(--transition);
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}
.share-btn:hover { opacity: 0.85; }
.share-btn.whatsapp { background: #16A34A; color: #fff; }
.share-btn.copy     { background: var(--stone-800); color: #fff; }
.share-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Business Directory ── */
.directory-section { padding: 3rem 1rem; }
.directory-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .directory-header { flex-direction: row; align-items: center; justify-content: space-between; } }
.directory-header h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.directory-count { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }
.directory-count a { color: var(--brand); }
.directory-count a:hover { text-decoration: underline; }

/* Search */
.search-wrap { position: relative; width: 100%; }
.search-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
  pointer-events: none;
}
.search-input {
  padding: 0.6rem 1rem 0.6rem 2.25rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 0.875rem;
  width: 100%;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
@media (min-width: 640px) {
  .search-wrap { width: auto; }
  .search-input { width: 240px; }
}
.search-input:focus {
  outline: none;
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
.search-input::placeholder { color: var(--muted); }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-dark);
  background: var(--white);
  color: #57534E;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  min-height: 36px;
}
.filter-btn:hover  { border-color: var(--brand); color: var(--brand); }
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Business Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px)  { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .cards-grid { grid-template-columns: 1fr 1fr 1fr; } }

.business-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.business-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-dark); }
.business-card.is-hidden { display: none; }

/* Identity row: avatar + text block side by side */
.card-identity {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

/* Avatar — initials (default) or profile photo */
.card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  user-select: none;
  overflow: hidden;
}
.card-avatar--photo { background: var(--border) !important; }
.card-avatar--photo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Text column: name first, type second, badge last */
.card-top { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; min-width: 0; overflow: hidden; }
.card-name { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.3; overflow-wrap: break-word; min-width: 0; }
.card-type { font-size: 0.775rem; color: var(--muted); overflow-wrap: break-word; }

/* Category badge — appears below name, smaller and quieter */
.category-badge {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-top: 0.25rem;
}
.badge-nails  { background: #FCE7F3; color: #9D174D; }
.badge-hair   { background: #EDE9FE; color: #5B21B6; }
.badge-beauty { background: #FFF1F2; color: #9F1239; }
.badge-tattoo { background: #F5F5F4; color: #44403C; }
.badge-food   { background: #FEF3C7; color: #92400E; }
.badge-other  { background: #DBEAFE; color: #1E3A8A; }

/* ── Card actions — single flex-wrap row ────────────────────────────────── */
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity var(--transition), background var(--transition);
  text-decoration: none;
  min-height: 36px;
  min-width: 36px;
  justify-content: center;
}
.card-btn:hover { opacity: 0.85; }
.card-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Main action buttons — coloured, labelled */
.btn-ig      { background: linear-gradient(135deg, #7C3AED, #DB2777); color: #fff; border-color: #6D28D9; }
.btn-book    { background: var(--brand); color: #fff; border-color: var(--brand-dark); }
.btn-fb      { background: #1D4ED8; color: #fff; border-color: #1e40af; }
.btn-support { background: #05A056; color: #fff; border-color: #047857; }

/* Utility icon-only buttons — unobtrusive, sit at end of row */
.card-btn-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: var(--stone-100);
  color: var(--muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.card-btn-icon:hover { background: var(--border); border-color: var(--muted); color: var(--dark); opacity: 1; }
.card-btn-icon svg { width: 15px; height: 15px; }

/* WhatsApp — green tint on hover */
.btn-wa-card:hover { background: #F0FDF4; border-color: #16A34A; color: #16A34A; }

/* Copy link — tooltip on success */
.btn-copy-card { position: relative; }
.copy-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.btn-copy-card.copied { background: #F0FDF4; border-color: #16A34A; color: #16A34A; }
.btn-copy-card.copied .copy-tooltip { opacity: 1; }

/* No results */
.no-results {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  padding: 3rem 1rem;
  display: none;
}
.no-results.visible { display: block; }

/* ── Footer ── */
footer {
  background: var(--stone-900);
  color: #A8A29E;
}
.footer-inner {
  padding: 2.5rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand h3 { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.footer-brand p  { font-size: 0.775rem; line-height: 1.7; max-width: 24rem; }
.footer-brand a  { color: #FB923C; font-size: 0.775rem; display: inline-block; margin-top: 0.5rem; }
.footer-brand a:hover { color: #FED7AA; }
.footer-links h4 { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.footer-links li + li { margin-top: 0.375rem; }
.footer-links a  { font-size: 0.775rem; color: #A8A29E; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #292524;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #A8A29E;
  line-height: 2;
}
.privacy-note { display: block; margin-top: 0.125rem; font-size: 0.7rem; color: #57534E; }
.footer-bottom a { color: #FB923C; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: #FED7AA; }

/* ── Card: Studio tag (e.g. "@ Blanket Tattoo" for individual artists) ── */
.card-studio-tag {
  font-size: 0.68rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.1rem 0.5rem;
  display: inline-block;
  margin-top: 0.25rem;
  width: fit-content;
}

/* ── Card: No-crowdfund nudge ────────────────────────────────────────────── */
.card-no-crowdfund {
  font-size: 0.7rem;
  color: var(--muted);
  font-style: italic;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.25rem;
  min-height: 36px;
}

/* ── Card: Highlight on hash-navigation ────────────────────────────────── */
.card-highlighted {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  animation: card-pulse 2.5s ease-out forwards;
}
@keyframes card-pulse {
  0%   { outline-color: var(--brand); }
  80%  { outline-color: var(--brand); }
  100% { outline-color: transparent; }
}

/* ── Supporters Section ─────────────────────────────────────────────────── */
.supporters-section {
  background: #F0FDF4;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.supporters-inner { padding: 3rem 1rem; }

.badge-sup-hair      { background: #EDE9FE; color: #5B21B6; }
.badge-sup-nails     { background: #FCE7F3; color: #9D174D; }
.badge-sup-tattoo    { background: #F5F5F4; color: #44403C; }
.badge-sup-beauty    { background: #FFF1F2; color: #9F1239; }
.badge-sup-wellness  { background: #D1FAE5; color: #065F46; }
.badge-sup-space     { background: #DBEAFE; color: #1E3A8A; }
.badge-sup-food      { background: #FEF3C7; color: #92400E; }
.badge-sup-marketing { background: #E0F2FE; color: #0C4A6E; }
.badge-sup-legal     { background: #F1F5F9; color: #1E293B; }

.card-location {
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  margin-top: 0.5rem;
  overflow-wrap: break-word;
  min-width: 0;
}
.card-location svg { width: 12px; height: 12px; flex-shrink: 0; margin-top: 1px; }
.card-location span { min-width: 0; overflow-wrap: break-word; }
.card-offer {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
  margin-top: 0.625rem;
  padding: 0.5rem 0.75rem;
  background: var(--stone-100);
  border-radius: var(--radius-sm);
  border-left: 2px solid #15803D;
  overflow-wrap: break-word;
}
.sup-card-body { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.card-badges { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.25rem; }

.supporter-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid #F59E0B;
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  margin-bottom: 1.75rem;
}
.supporter-notice svg { width: 18px; height: 18px; flex-shrink: 0; color: #D97706; margin-top: 1px; }
.supporter-notice p { font-size: 0.825rem; color: #78350F; line-height: 1.6; }

/* ── Print styles ───────────────────────────────────────────────────────── */
@media print {
  /* Suppress interactive / decorative elements */
  .skip-link,
  .hero-actions,
  .help-section,
  .share-bar,
  .filters,
  .search-wrap,
  .card-actions-secondary,
  footer { display: none !important; }

  /* Reset hero to plain white */
  .hero {
    background: #fff !important;
    color: #000 !important;
  }
  .hero::before { display: none !important; }
  .hero p, .hero-meta-item { color: #333 !important; }
  .alert-badge { background: #C2400C !important; }

  /* Two-column card grid */
  .cards-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  .business-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    transform: none !important;
  }

  /* Keep Book button — it's the most useful offline action */
  .btn-book {
    background: #C2400C !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Expand container to full page width */
  .container { max-width: 100% !important; }
  .directory-section { padding: 1rem !important; }
}
