/* ============================================================
   WINECELLARINSTALL.COM — COMPLETE CSS REDESIGN
   Drop this into your <style> tag or link as style.css
   Palette: Deep burgundy + aged gold + cream
   Fonts: Lora (headings) + Source Sans 3 (body) from Google Fonts
   Add to <head>:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Source+Sans+3:wght@400;600;700&display=swap" rel="stylesheet">
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Palette */
  --wine-dark:     #4a0e1a;   /* deep burgundy */
  --wine-mid:      #6b1a28;   /* mid burgundy */
  --wine-light:    #8b2535;   /* lighter burgundy */
  --wine-pale:     #f5eaed;   /* blush tint */
  --wine-bg:       #f9f0f2;   /* very light pink bg */

  --gold:          #b5893a;   /* aged gold CTA */
  --gold-hover:    #9a7230;
  --gold-light:    #fdf6e8;   /* cream */
  --gold-pale:     #f0e0b8;   /* warm beige border */

  --off-white:     #faf7f2;   /* warm off-white body bg */
  --border:        #e8d9c8;   /* warm parchment border */
  --text:          #1e1208;   /* near-black warm */
  --text-muted:    #5c4a38;   /* warm brown muted */
  --text-light:    #8a7060;   /* lighter muted */

  /* Shadows */
  --shadow-sm:     0 2px 8px  rgba(74,14,26,0.07);
  --shadow-md:     0 8px 28px rgba(74,14,26,0.10);
  --shadow-lg:     0 18px 50px rgba(74,14,26,0.13);

  /* Radii */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  28px;

  /* Typography */
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Source Sans 3', Arial, sans-serif;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin-top: 0;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.3rem, 2vw, 1.75rem); margin-bottom: 14px; }
h3 { font-size: 1.08rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.container { width: min(1180px, 93%); margin: 0 auto; }
.muted { color: var(--text-muted); }
.small { font-size: 0.92rem; }

/* ── UTILITY BAR ────────────────────────────────────────────── */
.utility-bar {
  background: var(--wine-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  padding: 8px 0;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.utility-right { color: rgba(255,255,255,0.60); white-space: nowrap; }

/* ── STICKY HEADER ──────────────────────────────────────────── */
.topbar {
  background: #fff;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

/* Brand mark */
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--wine-dark);
  display: grid; place-items: center;
  font-size: 18px; color: #fff;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.brand-dot { color: var(--gold); }

/* Nav links */
.top-nav { display: flex; align-items: center; gap: 22px; }
.top-nav a {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
  transition: color 0.15s;
}
.top-nav a:hover, .top-nav a.active { color: var(--wine-mid); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  transition: all 0.18s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(181,137,58,0.30);
}
.btn-gold:hover { background: var(--gold-hover); }

.btn-white {
  background: #fff;
  color: var(--wine-dark);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-white:hover { background: rgba(255,255,255,0.90); }

.btn-outline {
  background: transparent;
  color: var(--wine-mid);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--wine-mid); background: var(--wine-pale); }

.btn-sm  { padding: 9px 20px; font-size: 0.88rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.08rem; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ── HOMEPAGE HERO ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--wine-dark) 0%, #5e1220 50%, var(--wine-mid) 100%);
  color: #fff;
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 75% at 80% 35%, rgba(181,137,58,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(181,137,58,0.18);
  border: 1px solid rgba(181,137,58,0.40);
  color: #f5d890;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: #fff; margin-bottom: 18px; max-width: 600px; }
.hero-lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem; max-width: 540px;
  margin-bottom: 28px; line-height: 1.7;
}
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.72); font-size: 0.85rem;
}
.hero-trust-item::before {
  content: "✓";
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(181,137,58,0.30);
  display: grid; place-items: center;
  font-size: 0.65rem; color: #f5d890; font-weight: 800; flex-shrink: 0;
}

/* Quote card inside hero */
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
}
.hero-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.hero-card p  { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 22px; }
.quote-form { display: flex; flex-direction: column; gap: 12px; }
.quote-form select, .quote-form input {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.95rem;
  color: #fff; width: 100%; outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.quote-form select option { color: var(--text); background: #fff; }
.quote-form input::placeholder { color: rgba(255,255,255,0.50); }
.quote-form select:focus, .quote-form input:focus { border-color: var(--gold); }
.hero-card-note {
  font-size: 0.77rem; color: rgba(255,255,255,0.48);
  text-align: center; margin-top: 10px;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 2px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--text-muted);
}
.trust-item-icon { font-size: 1.2rem; }

/* ── SECTION CHROME ─────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: var(--wine-bg); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid var(--gold-pale);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── TILE GRID (4 up) ───────────────────────────────────────── */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tile {
  display: block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
  position: relative; overflow: hidden;
}
.tile::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
}
.tile:hover {
  border-color: var(--wine-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tile-icon { font-size: 2rem; margin-bottom: 14px; }
.tile h3 { font-size: 1rem; margin-bottom: 8px; color: var(--wine-dark); }
.tile p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.tile-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.88rem; color: var(--gold); }

/* ── HOW IT WORKS (3 steps) ─────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: #fff;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(181,137,58,0.30);
}
.step h3 { color: var(--wine-dark); font-size: 1rem; margin-bottom: 10px; }
.step p  { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ── COST SNAPSHOT GRID ─────────────────────────────────────── */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.cost-cell {
  padding: 24px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.cost-cell:nth-child(2n)    { border-right: none; }
.cost-cell:nth-last-child(-n+2) { border-bottom: none; }
.cost-cell-label { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 6px; }
.cost-cell-price {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--wine-dark);
}
.cost-cell-note { font-size: 0.80rem; color: var(--text-light); margin-top: 4px; }
.cost-cta {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-mid) 100%);
  padding: 28px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  grid-column: 1 / -1;
}
.cost-cta p { color: rgba(255,255,255,0.88); margin: 0; font-weight: 600; }

/* ── ARTICLE / GUIDE CARDS ──────────────────────────────────── */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card {
  display: block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
}
.article-card:hover {
  border-color: var(--wine-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.article-thumb {
  background: linear-gradient(140deg, var(--wine-dark), var(--wine-mid));
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.article-body { padding: 22px; }
.article-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-light);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 10px;
}
.article-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--wine-dark); }
.article-body p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.article-link { font-weight: 700; font-size: 0.88rem; color: var(--wine-mid); }

/* ── TRUST CARDS (4 up) ─────────────────────────────────────── */
.trust-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}
.trust-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.trust-card h3 { font-size: 0.97rem; margin-bottom: 8px; color: var(--wine-dark); }
.trust-card p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ── LOCATION CARDS ─────────────────────────────────────────── */
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.location-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
}
.location-card:hover {
  border-color: var(--wine-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.location-icon { font-size: 1.6rem; flex-shrink: 0; }
.location-name { font-weight: 700; font-size: 0.97rem; color: var(--wine-dark); }
.location-sub  { font-size: 0.82rem; color: var(--text-muted); }
.location-arrow { margin-left: auto; color: var(--gold); font-size: 1rem; }

/* ── INNER PAGE HERO ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--wine-dark) 0%, #5e1220 55%, var(--wine-mid) 100%);
  color: #fff; padding: 52px 0 44px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 85% 40%, rgba(181,137,58,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: rgba(255,255,255,0.60);
  margin-bottom: 18px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.60); transition: color 0.15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.38); }
.page-tag {
  display: inline-block;
  background: rgba(181,137,58,0.22); border: 1px solid rgba(181,137,58,0.45);
  color: #f5d890;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px; margin-bottom: 16px;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; max-width: 760px; }
.hero-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 0.88rem; color: rgba(255,255,255,0.68); margin-top: 16px;
}

/* ── INNER PAGE LAYOUT ──────────────────────────────────────── */
.page-body { padding: 48px 0 64px; }
.content-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px; align-items: start;
}

/* ── PROSE (inner page content) ─────────────────────────────── */
.prose h2 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  margin-top: 40px; margin-bottom: 14px;
  padding-top: 32px; border-top: 2px solid var(--border);
  color: var(--wine-dark);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 8px; font-weight: 700; }
.prose p  { margin-bottom: 16px; line-height: 1.75; }
.prose strong { color: var(--wine-dark); }
.prose ul { color: var(--text-muted); padding-left: 20px; line-height: 2; margin-bottom: 20px; }

/* ── SUMMARY BOX ────────────────────────────────────────────── */
.summary-box {
  background: var(--gold-light);
  border: 1.5px solid var(--gold-pale);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 22px 26px; margin-bottom: 32px;
}
.summary-box-label {
  font-weight: 700; font-size: 0.80rem; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.summary-box ul { margin: 0; padding: 0 0 0 18px; }
.summary-box ul li { margin-bottom: 6px; font-size: 0.97rem; }

/* ── INFO & WARN BOXES ──────────────────────────────────────── */
.info-box {
  background: var(--wine-pale);
  border: 1.5px solid #d9b0ba;
  border-left: 5px solid var(--wine-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px; margin: 20px 0 28px;
}
.info-box-label {
  font-weight: 700; font-size: 0.80rem; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--wine-mid); margin-bottom: 8px;
}
.info-box p { margin: 0; font-size: 0.95rem; }

.warn-box {
  background: #fffbeb; border: 1.5px solid #fde68a;
  border-left: 5px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: 20px 24px; margin: 20px 0 28px;
}
.warn-box-label {
  font-weight: 700; font-size: 0.80rem; letter-spacing: 0.10em; text-transform: uppercase;
  color: #b45309; margin-bottom: 8px;
}
.warn-box p { margin: 0; font-size: 0.95rem; }

/* ── CHECKLIST ──────────────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 16px 0 28px; }
.check-list li {
  padding: 10px 0 10px 38px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem; line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 800;
}

/* ── COST TABLE ─────────────────────────────────────────────── */
.cost-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0 32px;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cost-table th {
  background: var(--wine-dark); color: #fff;
  padding: 14px 18px; text-align: left;
  font-size: 0.88rem; font-weight: 700;
}
.cost-table td { padding: 13px 18px; font-size: 0.93rem; border-bottom: 1px solid var(--border); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--wine-bg); }
.cost-table tr:nth-child(odd)  td { background: #fff; }
.price-tag { font-weight: 700; color: var(--wine-dark); white-space: nowrap; }

/* ── FACTOR / STEP CARDS ────────────────────────────────────── */
.factor-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 32px; }
.factor-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px 22px 76px;
  position: relative; box-shadow: var(--shadow-sm);
}
.factor-num {
  position: absolute; left: 22px; top: 22px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(181,137,58,0.30);
}
.factor-card h3 { margin-bottom: 6px; color: var(--wine-dark); }
.factor-card p  { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.step-cards { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 32px; }
.step-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px 22px 72px;
  position: relative; box-shadow: var(--shadow-sm);
}
.step-card-num {
  position: absolute; left: 20px; top: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(181,137,58,0.28);
}
.step-card h3 { margin-bottom: 6px; color: var(--wine-dark); }
.step-card p  { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* ── COMPARE GRID ───────────────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 32px; }
.compare-card {
  border-radius: var(--radius-md); padding: 24px 22px;
  border: 1.5px solid var(--border);
}
.compare-card.a {
  background: var(--gold-light); border-color: var(--gold-pale);
  border-top: 4px solid var(--gold);
}
.compare-card.b {
  background: var(--wine-pale); border-color: #d9b0ba;
  border-top: 4px solid var(--wine-mid);
}
.compare-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 10px; }
.compare-card ul { padding-left: 18px; margin: 0; }
.compare-card ul li { font-size: 0.90rem; margin-bottom: 5px; }

/* ── FAQ ITEMS ──────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 16px 0 32px; }
.faq-item {
  background: #fff; border: 1.5px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md); padding: 20px 24px;
}
.faq-q { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--wine-dark); }
.faq-a { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* ── GUIDE CARDS ────────────────────────────────────────────── */
.guide-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0 32px; }
.guide-card {
  display: block; background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
}
.guide-card:hover { border-color: var(--wine-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.guide-card-icon { font-size: 1.4rem; margin-bottom: 10px; }
.guide-card h3   { font-size: 0.95rem; margin-bottom: 6px; color: var(--wine-dark); }
.guide-card p    { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.guide-card-link { display: inline-block; margin-top: 10px; font-weight: 700; font-size: 0.88rem; color: var(--wine-mid); }

/* ── SIDEBAR ────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }

.sidebar-cta {
  background: linear-gradient(140deg, var(--wine-dark) 0%, var(--wine-mid) 100%);
  border-radius: var(--radius-lg); padding: 28px 24px;
  color: #fff; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.sidebar-cta::before {
  content: "";
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(181,137,58,0.15);
}
.sidebar-cta h3 { color: #fff; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; position: relative; z-index: 1; }
.sidebar-cta p  { color: rgba(255,255,255,0.80); font-size: 0.9rem; margin-bottom: 18px; position: relative; z-index: 1; }
.sidebar-cta .btn { position: relative; z-index: 1; }
.sidebar-cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.50); margin-top: 10px; text-align: center; position: relative; z-index: 1; }

.sidebar-box {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm);
}
.sidebar-box h4 {
  font-family: var(--font-body); font-size: 0.80rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.sidebar-box a {
  display: block; padding: 9px 0; font-size: 0.92rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 1px solid var(--border); transition: color 0.15s;
}
.sidebar-box a:last-child { border-bottom: none; }
.sidebar-box a:hover { color: var(--wine-mid); }

.sidebar-gold {
  background: var(--gold-light); border: 1.5px solid var(--gold-pale);
  border-radius: var(--radius-lg); padding: 22px;
}
.sidebar-gold h4 {
  font-family: var(--font-body); font-size: 0.80rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-pale); display: inline-block;
}
.sidebar-gold a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 0.91rem; font-weight: 600;
  color: var(--text); border-bottom: 1px solid var(--gold-pale); transition: color 0.15s;
}
.sidebar-gold a:last-child { border-bottom: none; }
.sidebar-gold a:hover { color: var(--wine-dark); }

.snapshot-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-radius: 8px;
  border: 1px solid var(--border); font-size: 0.88rem; margin-bottom: 8px;
}
.snapshot-row:last-child { margin-bottom: 0; }
.snapshot-row strong { color: var(--wine-dark); }

/* ── BOTTOM CTA BAND ────────────────────────────────────────── */
.cta-band-wrap { padding: 16px 0 56px; }
.cta-band {
  background: linear-gradient(140deg, var(--wine-dark) 0%, #5e1220 100%);
  border-radius: var(--radius-xl); padding: 48px;
  color: #fff; display: flex; align-items: center; gap: 36px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 90% 50%, rgba(181,137,58,0.20) 0%, transparent 65%);
}
.cta-band-copy { position: relative; z-index: 1; flex: 2; }
.cta-band-copy h2 {
  color: #fff; margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  border: none !important; padding: 0 !important; margin-top: 0 !important;
}
.cta-band-copy p  { color: rgba(255,255,255,0.85); margin-bottom: 22px; font-size: 1.05rem; }
.cta-band-side { position: relative; z-index: 1; font-size: 5rem; line-height: 1; opacity: 0.18; }

/* ── FINAL CTA (full-width) ─────────────────────────────────── */
.final-cta {
  background: linear-gradient(140deg, var(--wine-dark) 0%, #5e1220 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(181,137,58,0.18) 0%, transparent 60%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2   { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.final-cta p    { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
.final-cta-badges { display: flex; justify-content: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.final-cta-badge { color: rgba(255,255,255,0.65); font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: #1c0810; color: #d4c4b8; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.1fr 1fr 0.9fr;
  gap: 32px; padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: #fff; margin-bottom: 14px;
}
.footer-brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
  font-size: 16px; flex-shrink: 0;
}
.footer-col h4 {
  color: #fff; font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.footer-col a {
  display: block; margin-bottom: 10px;
  color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px; padding-top: 20px; padding-bottom: 24px;
  font-size: 0.87rem; color: rgba(255,255,255,0.40);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ── STATE GRID (location pages) ───────────────────────────── */
.state-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 20px 0 32px; }
.state-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.state-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--wine-dark); }
.state-card p  { font-size: 0.90rem; color: var(--text-muted); margin: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { max-width: 480px; }
  .tile-grid  { grid-template-columns: repeat(2, 1fr); }
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 960px) {
  .content-sidebar-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .compare-grid { grid-template-columns: 1fr; }
  .guide-cards  { grid-template-columns: 1fr; }
  .state-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .steps-row    { grid-template-columns: 1fr; }
  .trust-cards  { grid-template-columns: 1fr; }
  .cost-grid    { grid-template-columns: 1fr; }
  .cost-cell:nth-child(2n) { border-right: none; }
  .article-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
}
@media (max-width: 560px) {
  .tile-grid      { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .hero-cta-row   { flex-direction: column; align-items: stretch; text-align: center; }
  .top-nav        { display: none; }
  .cta-band       { padding: 32px 24px; flex-direction: column; }
  .cta-band-side  { display: none; }
  .cost-table     { font-size: 0.84rem; }
  .cost-table th, .cost-table td { padding: 10px 12px; }
}
