/* ================================================
   AV Food Trucks – Redesigned Stylesheet v2.0
   Warm light theme · Sora + DM Sans · Orange brand
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Brand */
  --brand:       #e8460a;
  --brand-2:     #ff6b35;
  --brand-deep:  #c03a06;
  --brand-soft:  rgba(232,70,10,.10);
  --brand-line:  rgba(232,70,10,.28);

  /* Gold accent */
  --gold:        #f59e0b;
  --gold-soft:   rgba(245,158,11,.12);
  --gold-line:   rgba(245,158,11,.30);

  /* Neutrals – light theme */
  --bg:          #faf9f7;
  --bg-2:        #f3f0ec;
  --bg-3:        #ede9e3;
  --surface:     #ffffff;
  --surface-2:   #fdf9f6;
  --line:        rgba(0,0,0,.08);
  --line-strong: rgba(0,0,0,.13);

  /* Text */
  --text:        #1a1309;
  --text-2:      #3d3020;
  --muted:       #7a6850;
  --muted-2:     #a3917a;

  /* Green trust signal */
  --green:       #16a34a;
  --green-soft:  rgba(22,163,74,.10);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 28px rgba(0,0,0,.09);
  --shadow-lg:   0 20px 56px rgba(0,0,0,.11);
  --shadow-brand:0 12px 36px rgba(232,70,10,.22);

  /* Geometry */
  --radius-xl:   28px;
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   8px;
  --max:         1240px;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  margin: 0;
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 {
  font-family: 'Sora', ui-sans-serif, sans-serif;
  margin: 0 0 12px;
  line-height: 1.12;
  color: var(--text);
}
p { margin: 0 0 16px; color: var(--muted); }
ul { margin: 0; padding: 0; }

/* ── Layout ─────────────────────────────────────── */
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* ── Header / Nav ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,249,247,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand::before {
  content: '🚚';
  font-size: 1.25rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.nav a {
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-2);
  transition: background .18s, color .18s;
}
.nav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}
.nav a.nav-cta {
  background: var(--brand);
  color: #fff;
  padding: 8px 18px;
}
.nav a.nav-cta:hover {
  background: var(--brand-deep);
  transform: none;
}

/* ── Eyebrow ────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand);
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .97rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-deep);
  box-shadow: 0 16px 44px rgba(232,70,10,.32);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--brand-line);
  color: var(--brand);
}
.btn-block { width: 100%; }
.btn-sm    { min-height: 42px; padding: 0 18px; font-size: .9rem; }

/* ── Pills ──────────────────────────────────────── */
.pill, .hero-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--text-2);
  font-weight: 600;
  font-size: .88rem;
  transition: background .15s, border-color .15s, color .15s;
  box-shadow: var(--shadow-sm);
}
.pill:hover {
  background: var(--brand-soft);
  border-color: var(--brand-line);
  color: var(--brand);
}

/* ── Sections ───────────────────────────────────── */
.section {
  padding: 56px 0 52px;
}
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  margin-bottom: 32px;
  max-width: 680px;
}
.section-head h2 { font-size: clamp(1.6rem,2.8vw,2.4rem); }

/* ── Cards ──────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--brand-line);
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card-grid.four  { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card-grid.two   { grid-template-columns: repeat(2, minmax(0,1fr)); }

/* ── Hero ───────────────────────────────────────── */
.hero-clean {
  padding-top: 52px;
  padding-bottom: 36px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(232,70,10,.07), transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(245,158,11,.06), transparent 50%),
    var(--bg);
}
.hero-clean-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 40px;
  align-items: center;
}
.hero-clean-copy { max-width: 680px; }

h1 {
  font-size: clamp(2.2rem,4.5vw,3.8rem);
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 15ch;
}
h1 em {
  font-style: normal;
  color: var(--brand);
}
h2 { font-size: clamp(1.6rem,2.8vw,2.4rem); letter-spacing: -.03em; }
h3 { font-size: 1.12rem; }

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 22px;
}
.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}
.hero-chip-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  color: var(--brand);
  font-size: .88rem;
  font-weight: 600;
}
.hero-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-clean-image img {
  width: 100%;
  min-height: 400px;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

/* ── Hero trust row ─────────────────────────────── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.hero-trust span::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  margin-right: 5px;
}

/* ── Hero launcher (search widget) ─────────────── */
.hero-launcher {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.hero-launcher-head {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
}
.hero-launcher-head strong {
  font-size: .97rem;
  color: var(--text);
}
.hero-launcher-head span {
  color: var(--muted);
  font-size: .9rem;
}
.hero-launcher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
.hero-launcher .field { margin: 0; }
.hero-launcher .field label {
  display: block;
  margin: 0 0 5px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-2);
}
.hero-launcher .field select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: .93rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6850' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
  transition: border-color .15s;
}
.hero-launcher .field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.hero-launcher-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Intent cards ───────────────────────────────── */
.intent-section { padding-top: 8px; }
.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.intent-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--surface);
  transition: box-shadow .2s, transform .2s;
}
.intent-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.intent-card-book {
  border-left: 4px solid var(--brand);
}
.intent-card-vendor {
  border-left: 4px solid var(--gold);
}
.intent-card h2 { font-size: 1.45rem; margin: 10px 0 12px; }
.intent-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.intent-list li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  font-size: .95rem;
}
.intent-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}
.intent-actions { margin-top: 22px; }

/* ── How it works ───────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.how-step {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}
.how-step h3 { font-size: 1.05rem; margin-bottom: 8px; }

/* ── Trust band ─────────────────────────────────── */
.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.trust-item {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-item-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.trust-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-family: 'Sora', sans-serif;
}
.trust-item span { color: var(--muted); font-size: .93rem; }

/* ── Social proof / Stats bar ───────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--brand);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  padding: 22px 24px;
  background: var(--brand);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

/* ── Vendor cards ───────────────────────────────── */
.vendor-card-rich {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.vendor-card-media { margin: 0; flex-shrink: 0; }
.vendor-card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.vendor-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vendor-card-body .eyebrow { margin-bottom: 6px; }
.vendor-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.vendor-card-body h3 a { color: var(--text); }
.vendor-card-body h3 a:hover { color: var(--brand); }

.vendor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.vendor-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(22,163,74,.20);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
}
.vendor-badge-orange {
  background: var(--brand-soft);
  border-color: var(--brand-line);
  color: var(--brand);
}
.vendor-badge-gold {
  background: var(--gold-soft);
  border-color: var(--gold-line);
  color: #92600a;
}

.vendor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.vendor-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .83rem;
}
.vendor-card-body p {
  font-size: .93rem;
  margin-bottom: 16px;
  flex: 1;
}
.vendor-card-body .form-actions { margin-top: auto; }

/* ── Vendor profile page ────────────────────────── */
.vendor-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.vendor-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 20px;
}
.vendor-fact {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}
.vendor-fact strong { display: block; margin-bottom: 4px; color: var(--text); }
.vendor-fact span   { color: var(--muted); font-size: .9rem; }
.vendor-profile-image-wrap { margin-bottom: 18px; }
.vendor-profile-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: block;
}
.vendor-action-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-md);
}
.profile-content-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.profile-mini-list { display: grid; gap: 0; }
.profile-mini-list > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.profile-mini-list > div strong { flex: 0 0 40%; color: var(--text); }
.profile-mini-list > div span  { color: var(--muted); text-align: right; }

/* ── CTA band ───────────────────────────────────── */
.cta-band { padding-top: 16px; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: var(--shadow-brand);
}
.cta-band-inner h2, .cta-band-inner h3 { color: #fff; margin: 0 0 8px; }
.cta-band-inner p  { color: rgba(255,255,255,.85); margin: 0; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.cta-band .btn-primary:hover { background: #fff3ef; }

/* ── Quick links / pill grid ────────────────────── */
.quick-links-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Forms ──────────────────────────────────────── */
.form-wrap {
  width: min(calc(100% - 32px), 900px);
  margin: 48px auto 80px;
}
.form-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full { grid-column: 1 / -1; }
label {
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-2);
}
input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
textarea { min-height: 130px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.form-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.form-note { color: var(--muted-2); font-size: .9rem; }

/* ── Page hero ──────────────────────────────────── */
.page-hero { padding: 60px 0 16px; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-size: .9rem;
  margin-bottom: 14px;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  margin-top: 0;
  background: var(--text);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 52px 0 28px;
}
.footer-brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand::before { content: '🚚'; }
.footer-grid p  { color: rgba(255,255,255,.55); font-size: .92rem; margin: 0; }
.footer-grid h3 { color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a  { color: rgba(255,255,255,.55); font-size: .92rem; transition: color .15s; }
.footer-grid a:hover { color: var(--brand-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0 30px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.4);
  font-size: .88rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--brand-2); }

/* ── Admin styles ───────────────────────────────── */
.admin-missing-list { color: var(--muted); line-height: 1.45; font-size: .94rem; }
.claim-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  margin: 0 0 28px;
  border-radius: var(--radius-xl);
  background: var(--brand-soft);
  border: 1.5px solid var(--brand-line);
}
.admin-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.admin-filter-grid input,
.admin-filter-grid select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}
.admin-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 14px;
  margin: 16px 0 0;
}
.admin-kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.admin-kpi strong { display: block; font-size: 1.5rem; line-height: 1.1; margin-bottom: 6px; }
.admin-muted      { opacity: .65; font-size: .92rem; }

/* ── Directory / Filter ─────────────────────────── */
.directory-filter-bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto auto;
  gap: 12px;
  align-items: center;
}
.directory-filter-bar input,
.directory-filter-bar select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  white-space: nowrap;
  font-weight: 600;
}

/* ── Check list ─────────────────────────────────── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li { color: var(--muted); padding-left: 22px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-clean-grid,
  .vendor-hero-grid,
  .profile-content-grid { grid-template-columns: 1fr; }
  .card-grid.four  { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .stats-bar       { grid-template-columns: 1fr 1fr; }
  .hero-launcher-grid { grid-template-columns: 1fr 1fr; }
  .directory-filter-bar { grid-template-columns: 1fr 1fr; }
  .admin-filter-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; min-height: auto; padding: 14px 0; gap: 10px; }
  .nav      { gap: 2px; }
  .hero-clean { padding-top: 32px; }
  h1        { max-width: none; }
  .card-grid.three,
  .card-grid.four,
  .card-grid.two,
  .form-grid,
  .how-grid,
  .trust-band,
  .intent-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .claim-banner   { flex-direction: column; align-items: flex-start; }
  .stats-bar      { grid-template-columns: 1fr 1fr; }
  .hero-launcher-grid { grid-template-columns: 1fr; }
  .vendor-facts   { grid-template-columns: 1fr; }
  .profile-mini-list > div { flex-direction: column; }
  .profile-mini-list > div span { text-align: left; }
}

@media (max-width: 540px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-main-actions { flex-direction: column; }
  .hero-main-actions .btn { width: 100%; justify-content: center; }
}
