/* ============================================================
   Hanson Plumbing Solutions — Landing Page Design System
   ============================================================ */

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  min-height: 100dvh; line-height: 1.6;
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-text); background-color: var(--color-bg);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
svg { width: 1em; height: 1em; flex-shrink: 0; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
::selection { background: color-mix(in oklab, var(--color-primary) 25%, transparent); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: var(--radius-sm); }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }
a, button, [role="button"], input, textarea, select {
  transition: color .18s cubic-bezier(.16,1,.3,1), background .18s cubic-bezier(.16,1,.3,1),
    border-color .18s cubic-bezier(.16,1,.3,1), box-shadow .18s cubic-bezier(.16,1,.3,1), transform .18s cubic-bezier(.16,1,.3,1);
}
.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; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; scroll-behavior:auto!important; }
}

/* ---------- Design tokens ---------- */
:root, [data-theme="light"] {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.25rem, 1rem + 3.5vw, 4rem);

  /* Spacing */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  /* Surfaces — cool, clean, "clean water" neutrals */
  --color-bg: #f5f7f8;
  --color-surface: #ffffff;
  --color-surface-2: #fbfcfd;
  --color-surface-offset: #eef2f3;
  --color-surface-offset-2: #e4e9eb;
  --color-divider: #dbe2e4;
  --color-border: #cbd5d8;

  /* Text */
  --color-text: #142027;
  --color-text-muted: #56666d;
  --color-text-faint: #94a3a8;
  --color-text-inverse: #f5f9fa;

  /* Primary — deep plumber-blue/teal */
  --color-primary: #0f5c73;
  --color-primary-hover: #0b4759;
  --color-primary-active: #093947;
  --color-primary-highlight: #d3e4e8;

  /* Brand band — fixed dark teal used for hero/trust-bar/CTA bands in both themes */
  --band-bg-1: #093947;
  --band-bg-2: #0f5c73;
  --band-bg-3: #0b4759;
  --band-text: #f5f9fa;

  /* Accent (CTA) — warm Colorado amber/orange */
  --color-accent: #de7b1f;
  --color-accent-hover: #b9640f;
  --color-accent-active: #954f0c;
  --color-accent-highlight: #f6ddc0;

  /* Success / warning */
  --color-success: #3f7a3d;
  --color-success-highlight: #d8e8d5;
  --color-warning: #9a4a1a;
  --color-warning-highlight: #f0dccb;

  --radius-sm: .375rem; --radius-md: .5rem; --radius-lg: .875rem; --radius-xl: 1.25rem; --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(15,30,36,.06);
  --shadow-md: 0 6px 20px rgba(15,30,36,.09);
  --shadow-lg: 0 20px 48px rgba(15,30,36,.16);

  --content-narrow: 640px; --content-default: 980px; --content-wide: 1200px;

  --font-display: 'General Sans', 'Segoe UI', sans-serif;
  --font-body: 'Satoshi', 'Segoe UI', sans-serif;
}

[data-theme="dark"] {
  --color-bg: #0d1417;
  --color-surface: #121b1f;
  --color-surface-2: #162126;
  --color-surface-offset: #182327;
  --color-surface-offset-2: #1e2b30;
  --color-divider: #223035;
  --color-border: #2b3b41;
  --color-text: #e3ecee;
  --color-text-muted: #93a4a9;
  --color-text-faint: #5d6f75;
  --color-text-inverse: #10181b;
  --color-primary: #4fa3ba;
  --color-primary-hover: #6fb8cc;
  --color-primary-active: #85c5d6;
  --color-primary-highlight: #1c343c;
  --color-accent: #f0993f;
  --color-accent-hover: #f5ac60;
  --color-accent-active: #f8bd80;
  --color-accent-highlight: #3a2a17;
  --color-success: #74b56f;
  --color-success-highlight: #1e2e1c;
  --color-warning: #d3894f;
  --color-warning-highlight: #362316;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 6px 20px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.5);
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--space-6); }
.wrap-narrow { max-width: var(--content-default); margin-inline: auto; padding-inline: var(--space-6); }
section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.section-head { max-width: 46rem; margin-bottom: var(--space-10); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: var(--space-3);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }
h1 { font-size: var(--text-3xl); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: var(--text-2xl); font-weight: 650; letter-spacing: -.01em; }
h3 { font-size: var(--text-lg); font-weight: 650; }
.lede { font-size: var(--text-lg); color: var(--color-text-muted); font-weight: 400; max-width: 42rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: var(--space-8); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  padding: .85rem 1.5rem; border-radius: var(--radius-full); white-space: nowrap;
}
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--color-accent-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--band-text); border: 1.5px solid color-mix(in oklab, var(--band-text) 40%, transparent); }
.btn-outline:hover { background: color-mix(in oklab, var(--band-text) 12%, transparent); }
.btn-ghost { background: var(--color-surface-offset); color: var(--color-text); border: 1px solid var(--color-border); }
.btn-ghost:hover { background: var(--color-surface-offset-2); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); padding-block: var(--space-4); }
.brand { display: flex; align-items: center; gap: var(--space-3); min-width: 0; }
.brand-name { min-width: 0; }
.brand-name span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand svg { width: 34px; height: 34px; color: var(--color-primary); }
.brand-logo { height: 68px; width: auto; display: block; }
.brand-logo-footer { height: 76px; }
@media (max-width: 640px) { .brand-logo { height: 52px; } }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); line-height: 1.1; }
.brand-name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: var(--space-4); flex-shrink: 0; }
.main-nav a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); white-space: nowrap; }
.main-nav a:hover { color: var(--color-primary); }
.header-cta { display: flex; align-items: center; gap: var(--space-4); flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: var(--space-2); font-weight: 700; font-size: var(--text-sm); color: var(--color-primary); }
.header-phone svg { width: 18px; height: 18px; }
.theme-toggle { display: grid; place-items: center; width: 36px; height: 36px; border-radius: var(--radius-full); background: var(--color-surface-offset); color: var(--color-text-muted); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle:hover { background: var(--color-surface-offset-2); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--color-surface-offset); align-items: center; justify-content: center; }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-cta-btn { background: var(--color-accent); color: #fff !important; padding: .55rem 1.15rem; border-radius: var(--radius-full); font-weight: 600; font-size: var(--text-xs); white-space: nowrap; margin-left: var(--space-2); }
.main-nav .nav-cta-btn:hover { background: var(--color-accent-hover); color: #fff !important; }
@media (max-width: 1320px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta-btn { margin-left: 0; margin-top: var(--space-3); }
}
@media (max-width: 860px) {
  .header-phone span.phone-label { display: none; }
}

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--band-bg-2); color: var(--band-text); }
.trust-bar .wrap { display: flex; flex-wrap: wrap; gap: var(--space-6); align-items: center; justify-content: center; padding-block: var(--space-3); font-size: var(--text-xs); font-weight: 600; letter-spacing: .02em; }
.trust-bar .wrap span { display: flex; align-items: center; gap: var(--space-2); opacity: .95; }
.trust-bar svg { width: 15px; height: 15px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(var(--space-16), 10vw, var(--space-32)) clamp(var(--space-12), 8vw, var(--space-20)); overflow: hidden; background: linear-gradient(160deg, var(--band-bg-1), var(--band-bg-2) 55%, var(--band-bg-3)); color: var(--band-text); }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 55% at 85% 15%, color-mix(in oklab, var(--color-accent) 30%, transparent), transparent 70%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-16); align-items: center; }
.hero h1 { font-size: var(--text-3xl); }
.hero .lede { color: color-mix(in oklab, var(--band-text) 85%, transparent); font-size: var(--text-lg); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-10); }
.hero-badge { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); font-weight: 600; color: color-mix(in oklab, var(--band-text) 90%, transparent); }
.hero-badge svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; }
.hero-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-caption { position: absolute; left: var(--space-5); bottom: var(--space-5); right: var(--space-5); background: color-mix(in oklab, var(--color-surface) 92%, transparent); color: var(--color-text); padding: var(--space-4); border-radius: var(--radius-md); font-size: var(--text-xs); font-weight: 600; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: var(--space-2); }
.hero-media-caption svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: var(--text-xs); color: color-mix(in oklab, var(--band-text) 75%, transparent); margin-bottom: var(--space-6); display: flex; gap: var(--space-2); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--band-text); }
.breadcrumb span { opacity: .6; }

/* ---------- Card ---------- */
.card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: var(--space-3); }
.card p { color: var(--color-text-muted); font-size: var(--text-sm); }
.icon-tile { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--color-primary-highlight); color: var(--color-primary); display: grid; place-items: center; margin-bottom: var(--space-5); }
.icon-tile svg { width: 22px; height: 22px; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--color-divider); }
table.compare { min-width: 560px; background: var(--color-surface); }
table.compare th, table.compare td { text-align: left; padding: var(--space-4) var(--space-5); font-size: var(--text-sm); border-bottom: 1px solid var(--color-divider); }
table.compare thead th { background: var(--color-surface-offset); font-weight: 700; color: var(--color-text); }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td.yes { color: var(--color-success); font-weight: 700; }
table.compare td.no { color: var(--color-text-faint); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.price-card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-8); position: relative; }
.price-card.featured { border-color: var(--color-accent); box-shadow: var(--shadow-md); }
.price-tag { position: absolute; top: -13px; left: var(--space-6); background: var(--color-accent); color: #fff; font-size: var(--text-xs); font-weight: 700; padding: .3rem .8rem; border-radius: var(--radius-full); }
.price-tier-name { font-size: var(--text-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--color-text-muted); }
.price-amount { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin-block: var(--space-2) var(--space-1); color: var(--color-primary); }
.price-amount span { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); }
.price-list { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-5); font-size: var(--text-sm); }
.price-list li { display: flex; gap: var(--space-2); align-items: flex-start; }
.price-list svg { width: 16px; height: 16px; color: var(--color-success); flex-shrink: 0; margin-top: 3px; }
.price-note { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-8); text-align: center; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-4); }
.review-stars { display: flex; gap: 2px; color: var(--color-accent); }
.review-stars svg { width: 15px; height: 15px; }
.review-quote { font-size: var(--text-sm); color: var(--color-text); flex: 1; line-height: 1.6; }
.review-meta { display: flex; justify-content: space-between; align-items: baseline; font-size: var(--text-xs); color: var(--color-text-muted); border-top: 1px solid var(--color-divider); padding-top: var(--space-3); }
.review-name { font-weight: 650; color: var(--color-text); }
.rating-summary { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.rating-big { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; color: var(--color-primary); line-height: 1; }
.rating-sub { font-size: var(--text-sm); color: var(--color-text-muted); }
.review-owner-reply { font-size: var(--text-xs); color: var(--color-text-muted); background: var(--color-surface-offset); border-radius: var(--radius-md); padding: var(--space-3); }
.review-owner-reply strong { color: var(--color-text); }

/* ---------- Local city sections ---------- */
.city-tabs { display: flex; gap: var(--space-3); margin-bottom: var(--space-8); flex-wrap: wrap; }
.city-tab { padding: .6rem 1.2rem; border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: 600; background: var(--color-surface-offset); color: var(--color-text-muted); border: 1px solid transparent; }
.city-tab[aria-selected="true"] { background: var(--color-primary-highlight); color: var(--color-primary); border-color: var(--color-primary); }
.city-panel { display: none; }
.city-panel.active { display: block; }
.city-panel .grid-2 { align-items: flex-start; }
.city-list { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-5); }
.city-list li { display: flex; gap: var(--space-3); font-size: var(--text-sm); color: var(--color-text-muted); }
.city-list svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--color-divider); }
.faq-item:first-child { border-top: 1px solid var(--color-divider); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-6) 0; text-align: left; font-family: var(--font-body); font-weight: 650; font-size: var(--text-base); color: var(--color-text); }
.faq-q svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; transition: transform .25s ease; }
.faq-item[data-open="true"] .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: var(--space-6); color: var(--color-text-muted); font-size: var(--text-sm); max-width: 68ch; }

/* ---------- Testimonial / trust strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); text-align: center; }
.stat-num { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); }
.stat-label { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 600; margin-top: var(--space-1); }
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); position: relative; }
.step { position: relative; padding-top: var(--space-4); }
.step-num { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-primary-highlight); -webkit-text-stroke: 1.5px var(--color-primary); position: relative; margin-bottom: var(--space-3); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Final CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--band-bg-1), var(--band-bg-2)); color: var(--band-text); border-radius: var(--radius-xl); padding: clamp(var(--space-10), 6vw, var(--space-16)); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 15% 100%, color-mix(in oklab, var(--color-accent) 25%, transparent), transparent 70%); }
.cta-band h2 { position: relative; z-index: 1; }
.cta-band p { position: relative; z-index: 1; color: color-mix(in oklab, var(--band-text) 85%, transparent); margin-block: var(--space-4) var(--space-8); }
.cta-band .hero-actions { position: relative; z-index: 1; justify-content: center; }

/* ---------- Footer ---------- */
footer { background: var(--color-surface-offset); border-top: 1px solid var(--color-divider); padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-10); }
.footer-grid h4 { font-size: var(--text-sm); margin-bottom: var(--space-4); }
.footer-grid ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-grid a, .footer-grid li { font-size: var(--text-sm); color: var(--color-text-muted); }
.footer-grid a:hover { color: var(--color-primary); }
.footer-bottom { margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid var(--color-divider); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); font-size: var(--text-xs); color: var(--color-text-faint); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: var(--color-accent); }
.mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: var(--space-2); padding: var(--space-4); color: #fff; font-weight: 700; font-size: var(--text-sm); }
.mobile-call-bar svg { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
}

/* ---------- Utility ---------- */
.tag-list { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tag { font-size: var(--text-xs); font-weight: 600; padding: .35rem .75rem; border-radius: var(--radius-full); background: var(--color-surface-offset); color: var(--color-text-muted); border: 1px solid var(--color-border); display: inline-flex; align-items: center; gap: var(--space-2); }
.tag svg { width: 14px; height: 14px; flex-shrink: 0; }
.divider-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.divider-img img { width: 100%; }
.bg-surface { background: var(--color-surface); }
.bg-offset { background: var(--color-surface-offset); }
