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

:root {
  --page: #08090c;
  --page-deep: #040406;
  --surface: #11131a;
  --surface-strong: #171922;
  --surface-tint: #1e212d;
  --ink: #f7f5f0;
  --ink-soft: #c8c2b5;
  --muted: #8d877c;
  --line: rgba(212, 175, 55, 0.22);
  --gold: #d4af37;
  --gold-dark: #aa771c;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --gold-bright: #ffdf00;
  --trust: #00d2ff;
  --trust-dark: #0088b3;
  --trust-soft: rgba(0, 210, 255, 0.12);
  --danger: #e54d42;
  --radius-small: 14px;
  --radius: 22px;
  --radius-large: 32px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.75), 0 0 25px rgba(212, 175, 55, 0.08);
  --content: 1180px;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Cinzel", Georgia, serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.chat-keyboard-open { scroll-behavior: auto; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(212, 175, 55, 0.15), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(0, 210, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 50% 65%, rgba(212, 175, 55, 0.06), transparent 45rem),
    var(--page);
  font: 400 16px/1.65 var(--font-body);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a, button, input, select, textarea { -webkit-tap-highlight-color: rgba(0, 210, 255, 0.14); }
.button, .menu-toggle, .filter-button, .choice-button, .store-option, .privacy-button { touch-action: manipulation; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #000;
  background: linear-gradient(135deg, #fce8a6, var(--gold));
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(0, 210, 255, 0.6);
  outline-offset: 3px;
}

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

.container { width: min(var(--content), calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: clamp(68px, 8vw, 106px) 0; }
.section-compact { padding: clamp(48px, 6vw, 76px) 0; }
.surface-section { border-block: 1px solid rgba(212, 175, 55, 0.22); background: rgba(17, 19, 26, 0.75); backdrop-filter: blur(12px); }
.trust-section { color: #fff; background: linear-gradient(155deg, rgba(14, 16, 23, 0.98), rgba(6, 7, 10, 0.99)); border-block: 1px solid rgba(212, 175, 55, 0.25); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--trust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--trust)); }
.trust-section .eyebrow { color: var(--trust); }

h1, h2, h3, h4 {
  margin-top: 0;
  font-family: var(--font-heading);
  text-wrap: balance;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.8rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); line-height: 1.12; letter-spacing: -0.015em; }
h3 { line-height: 1.25; letter-spacing: -0.01em; }
.lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.24rem); line-height: 1.7; }
.muted { color: var(--muted); }
.gold-text {
  background: linear-gradient(135deg, #ffffff 0%, #fce8a6 40%, #d4af37 80%, #aa771c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.trust-text { color: var(--trust); text-shadow: 0 0 12px rgba(0, 210, 255, 0.4); }

.button {
  min-height: 50px;
  padding: 13px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  color: #0b0c10;
  background: linear-gradient(135deg, #fce8a6 0%, #d4af37 50%, #aa771c 100%);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3), 0 2px 4px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 220ms ease;
}
.button:hover {
  transform: translateY(-2px);
  border-color: #ffdf00;
  background: linear-gradient(135deg, #ffffff 0%, #fce8a6 40%, #d4af37 100%);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
  color: #000;
}
.button-secondary {
  color: var(--ink);
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(23, 25, 34, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.button-secondary:hover {
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.button-gold {
  color: #0b0c10;
  border-color: var(--gold-bright);
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #d4af37 100%);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}
.button-gold:hover {
  color: #000;
  background: linear-gradient(135deg, #fff 0%, #ffe600 100%);
  box-shadow: 0 14px 34px rgba(255, 223, 0, 0.5);
}
.button-ghost {
  color: var(--trust);
  border-color: rgba(0, 210, 255, 0.35);
  background: transparent;
  box-shadow: none;
}
.button-ghost:hover {
  color: #fff;
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--trust);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}
.button-small { min-height: 43px; padding: 10px 18px; font-size: 12px; }
.button-full { width: 100%; }
.button[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }
.button-disabled { opacity: 0.72; cursor: not-allowed; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.section-actions { justify-content: center; margin-top: 28px; }

.site-header { position: relative; z-index: 20; padding: 18px 0 0; }
.header-inner {
  min-height: 78px;
  padding: 10px 16px 10px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  background: rgba(17, 19, 26, 0.85);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.brand {
  min-width: 190px;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { width: 94px; height: 54px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.brand-copy { padding-left: 14px; border-left: 1px solid rgba(212, 175, 55, 0.25); }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { color: var(--gold); font: 800 13px/1.2 var(--font-heading); letter-spacing: 0.05em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { color: var(--ink-soft); text-decoration: none; font-size: 13px; font-weight: 750; transition: color 180ms ease; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  background: rgba(23, 25, 34, 0.8);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 19px; height: 2px; display: block; background: var(--gold); transition: transform 180ms ease; }
.menu-toggle span { margin: 4px 0; }

.hero { padding: 20px 0 0; }
.hero-panel {
  min-height: 630px;
  padding: clamp(36px, 5.6vw, 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 5.5vw, 78px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.15), transparent 25rem),
    radial-gradient(circle at 0% 100%, rgba(0, 210, 255, 0.08), transparent 25rem),
    linear-gradient(135deg, rgba(23, 25, 34, 0.95) 0%, rgba(14, 15, 21, 0.98) 100%),
    image-set(url("images/gold-texture-768.webp") 1x, url("images/gold-texture-1024.webp") 2x) right center / 48% auto no-repeat;
  box-shadow: var(--shadow);
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { max-width: 820px; margin-bottom: 24px; }
.hero-copy .lead { max-width: 700px; margin: 0; }
.hero-actions { margin-top: 31px; }
.assurance-list { margin: 29px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 20px; list-style: none; color: var(--ink-soft); font-size: 13px; font-weight: 750; }
.assurance-list li::before { content: "✓"; margin-right: 7px; color: var(--trust); font-weight: 900; text-shadow: 0 0 8px rgba(0, 210, 255, 0.5); }

.feature-card {
  position: relative;
  padding: clamp(28px, 4vw, 43px);
  overflow: hidden;
  border-radius: 29px;
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(155deg, rgba(23, 25, 35, 0.95), rgba(12, 14, 20, 0.98));
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(212, 175, 55, 0.3);
}
.feature-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -75px; bottom: -90px; border-radius: 50%; border: 2px solid rgba(212, 175, 55, 0.15); box-shadow: 0 0 40px rgba(0, 210, 255, 0.08); }
.feature-card > * { position: relative; z-index: 1; }
.feature-card .status { margin: 0 0 20px; color: var(--trust); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.feature-card .status::before { content: ""; width: 9px; height: 9px; margin-right: 9px; display: inline-block; border-radius: 50%; background: var(--trust); box-shadow: 0 0 10px var(--trust); }
.feature-card h2 { margin-bottom: 23px; font-size: clamp(1.85rem, 3vw, 2.65rem); color: var(--gold); }
.feature-details { margin: 0 0 26px; }
.feature-details div { padding: 13px 0; border-top: 1px solid rgba(212, 175, 55, 0.15); }
.feature-details dt { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.feature-details dd { margin: 4px 0 0; color: var(--ink-soft); font-weight: 700; white-space: pre-line; }
.feature-card .button { color: #000; border-color: var(--gold); background: linear-gradient(135deg, #fce8a6, var(--gold)); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); }
.feature-card .button:hover { color: #000; background: linear-gradient(135deg, #fff, #fce8a6); border-color: #fff; }
.feature-note { margin: 17px 0 0; color: var(--muted); font-size: 12px; }

.trust-band {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(23, 25, 34, 0.9), rgba(15, 17, 23, 0.85));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}
.trust-band::before { content: ""; position: absolute; z-index: 1; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), #fff 50%, var(--trust)); }
.trust-band article { min-width: 0; min-height: 128px; padding: 25px clamp(21px, 2.3vw, 30px); display: grid; grid-template-columns: 64px minmax(0, 1fr); align-items: center; gap: 18px; }
.trust-band article + article { border-left: 1px solid rgba(212, 175, 55, 0.15); }
.trust-band img { width: 64px; height: 64px; display: block; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.2)); }
.trust-band h2 { margin: 0 0 6px; font-size: 17px; letter-spacing: -0.01em; color: var(--gold); }
.trust-band p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.52; }

.section-heading { max-width: 770px; margin-bottom: 38px; }
.section-heading h2 { margin-bottom: 15px; }
.section-heading p { margin: 0; }
.section-heading.center { margin-inline: auto; text-align: center; }

.item-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.item-card {
  min-height: 300px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(23, 25, 34, 0.85), rgba(15, 16, 22, 0.9));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}
.item-card img { width: 104px; height: 104px; object-fit: contain; object-position: center; filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.25)); }
.item-card h3 { margin: auto 0 9px; font-size: 20px; color: var(--gold); }
.item-card p { margin: 0; color: var(--muted); font-size: 14px; }
.tag-list { margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; list-style: none; }
.tag-list li { padding: 8px 13px; border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 999px; color: var(--ink-soft); background: rgba(23, 25, 34, 0.7); font-size: 12px; font-weight: 750; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: steps; }
.process-card {
  position: relative;
  min-height: 250px;
  padding: 29px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  background: rgba(23, 25, 34, 0.65);
  backdrop-filter: blur(10px);
}
.process-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font: 800 15px var(--font-heading);
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}
.process-card h3 { margin-bottom: 10px; font-size: 18px; color: #fff; }
.process-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.process-note {
  margin: 22px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  color: var(--ink);
  background: rgba(212, 175, 55, 0.08);
}

.locator-shell {
  padding: clamp(27px, 4vw, 46px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-large);
  background: rgba(17, 19, 26, 0.95);
  box-shadow: var(--shadow);
}
.locator-toolbar { margin-bottom: 24px; display: grid; grid-template-columns: minmax(230px, 1fr) auto; gap: 15px; align-items: end; }
.field { display: grid; gap: 8px; }
.field label, .field-label { color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.input, .select, .textarea {
  width: 100%;
  min-height: 51px;
  padding: 13px 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(10, 11, 15, 0.8);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.textarea { min-height: 110px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--gold);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25), 0 0 15px rgba(212, 175, 55, 0.15);
}
.state-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(23, 25, 34, 0.7);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 180ms ease;
}
.filter-button[aria-pressed="true"] {
  color: #000;
  border-color: var(--gold);
  background: linear-gradient(135deg, #fce8a6, #d4af37);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.store-count { margin: -6px 0 18px; color: var(--muted); font-size: 13px; }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.store-card {
  padding: 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 19px;
  background: rgba(23, 25, 34, 0.85);
}
.store-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.store-card h3 { margin: 0; font-size: 17px; color: var(--gold); }
.state-badge {
  padding: 5px 10px;
  border-radius: 999px;
  color: #000;
  background: linear-gradient(135deg, #fce8a6, #d4af37);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.store-address { min-height: 66px; margin: 16px 0; color: var(--ink-soft); font-size: 13px; white-space: pre-line; }
.store-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.store-links a {
  min-height: 40px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--trust);
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  text-decoration: none;
  font-size: 11px;
  font-weight: 850;
  transition: all 180ms ease;
}
.store-links a:hover {
  background: rgba(0, 210, 255, 0.2);
  border-color: var(--trust);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.3);
}
.store-links a:first-child {
  color: #000;
  background: linear-gradient(135deg, #fce8a6, #d4af37);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}
.store-links a:first-child:hover {
  background: linear-gradient(135deg, #fff, #fce8a6);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.store-contact-unavailable { min-height: 40px; padding: 8px 10px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--danger); background: rgba(229, 77, 66, 0.15); border: 1px solid rgba(229, 77, 66, 0.3); font-size: 11px; font-weight: 850; }
.empty-state { grid-column: 1 / -1; padding: 40px; text-align: center; border: 1px dashed rgba(212, 175, 55, 0.3); border-radius: 18px; color: var(--muted); }
.locator-more { margin-top: 24px; text-align: center; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr); gap: clamp(38px, 7vw, 90px); align-items: center; }
.promise-card { padding: clamp(28px, 4vw, 42px); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: var(--radius-large); background: rgba(17, 19, 26, 0.95); box-shadow: var(--shadow); }
.promise-list { margin: 0; padding: 0; list-style: none; }
.promise-list li { padding: 18px 0; display: grid; grid-template-columns: 34px 1fr; gap: 13px; border-top: 1px solid rgba(212, 175, 55, 0.18); }
.promise-list li:first-child { border-top: 0; }
.promise-list span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #000; background: linear-gradient(135deg, #fce8a6, var(--gold)); font-weight: 900; }
.promise-list strong { display: block; font-family: var(--font-heading); font-size: 14px; color: var(--gold); }
.promise-list small { color: var(--ink-soft); }

.faq-list { display: grid; gap: 11px; }
.faq-list details {
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 17px;
  background: rgba(23, 25, 34, 0.85);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.faq-list summary {
  padding: 20px 56px 20px 22px;
  position: relative;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 750;
  color: var(--gold);
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 22px; transform: translateY(-50%); color: var(--trust); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 22px; color: var(--ink-soft); }
.faq-answer p { margin: 0; }

.cta-panel {
  padding: clamp(38px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  border-radius: var(--radius-large);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.2), transparent 30rem),
    linear-gradient(135deg, rgba(23, 25, 35, 0.98), rgba(10, 11, 16, 0.98));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(212, 175, 55, 0.3);
}
.cta-panel h2 { margin-bottom: 12px; color: var(--gold); }
.cta-panel p { max-width: 700px; margin: 0; color: var(--ink-soft); }
.cta-panel .button { color: #000; border-color: var(--gold); background: linear-gradient(135deg, #fce8a6, var(--gold)); }
.cta-panel .button-ghost { color: #fff; border-color: rgba(212, 175, 55, 0.4); background: transparent; box-shadow: none; }
.cta-panel .button-ghost:hover { color: #000; border-color: var(--gold); background: linear-gradient(135deg, #fce8a6, var(--gold)); }

.page-hero { padding: 34px 0 0; }
.page-hero-panel { padding: clamp(40px, 6vw, 72px); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: var(--radius-large); background: linear-gradient(135deg, rgba(23, 25, 34, 0.95), rgba(14, 15, 21, 0.98)); box-shadow: var(--shadow); }
.page-hero-panel h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(2.6rem, 5vw, 4.5rem); }
.page-hero-panel .lead { max-width: 760px; margin-bottom: 0; }
.breadcrumbs { margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--trust); }

.local-hero-panel { padding: clamp(38px, 6vw, 72px); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; border: 1px solid rgba(212, 175, 55, 0.3); border-radius: var(--radius-large); background: rgba(17, 19, 26, 0.95); box-shadow: var(--shadow); }
.local-hero-panel h1 { margin-bottom: 20px; font-size: clamp(2.6rem, 5vw, 4.6rem); }
.local-contact-card { padding: 31px; border-radius: 25px; color: #fff; border: 1px solid rgba(212, 175, 55, 0.3); background: rgba(10, 11, 15, 0.9); }
.local-contact-card h2 { margin-bottom: 22px; font-size: 1.55rem; color: var(--gold); }
.contact-line { padding: 15px 0; border-top: 1px solid rgba(212, 175, 55, 0.15); }
.contact-line small { display: block; color: var(--trust); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-line strong { display: block; margin-top: 4px; white-space: pre-line; color: var(--ink); }
.local-contact-card .button-row { margin-top: 22px; }
.local-contact-card .button { color: #000; border-color: var(--gold); background: linear-gradient(135deg, #fce8a6, var(--gold)); }
.local-contact-card .button-secondary { color: var(--ink); border-color: rgba(212, 175, 55, 0.35); background: transparent; }

.legal-copy { padding: 38px; border: 1px solid rgba(212, 175, 55, 0.3); border-radius: var(--radius); background: rgba(17, 19, 26, 0.95); box-shadow: var(--shadow-soft); }
.legal-copy h2 { margin-top: 44px; font-size: 1.55rem; color: var(--gold); }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy li + li { margin-top: 8px; }

.wizard {
  padding: clamp(25px, 5vw, 48px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-large);
  background: rgba(17, 19, 26, 0.95);
  box-shadow: var(--shadow);
}
.wizard-progress { margin-bottom: 38px; }
.progress-copy { margin-bottom: 9px; display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; font-weight: 800; }
.progress-track { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.progress-bar { width: 33.333%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--trust)); transition: width 220ms ease; }
.wizard-step[hidden] { display: none; }
.wizard-step fieldset { margin: 0; padding: 0; border: 0; }
.wizard-step legend { margin-bottom: 8px; color: var(--gold); font: 750 clamp(1.55rem, 3vw, 2.25rem)/1.2 var(--font-heading); }
.step-help { margin: 0 0 28px; color: var(--ink-soft); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.choice-button {
  min-height: 128px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 17px;
  background: rgba(23, 25, 34, 0.8);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: all 180ms ease;
}
.choice-button:hover, .choice-button[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.choice-button img { width: 68px; height: 68px; display: block; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.25)); }
.choice-button strong { font-family: var(--font-heading); font-size: 14px; color: var(--gold); }
.wizard-actions { margin-top: 30px; display: flex; justify-content: space-between; gap: 12px; }
.store-picker { max-height: 420px; overflow: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 3px; }
.store-option { min-height: 93px; padding: 15px; display: flex; align-items: flex-start; gap: 11px; border: 1px solid rgba(212, 175, 55, 0.22); border-radius: 15px; background: rgba(23, 25, 34, 0.8); color: var(--ink); text-align: left; cursor: pointer; }
.store-option[aria-pressed="true"] { border-color: var(--gold); background: rgba(212, 175, 55, 0.15); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
.store-option:disabled { cursor: not-allowed; opacity: 0.72; background: rgba(10, 11, 15, 0.5); }
.store-option strong, .store-option small { display: block; }
.store-option strong { color: var(--gold); }
.store-option small { margin-top: 3px; color: var(--ink-soft); white-space: pre-line; }
.store-option .store-option-unavailable { color: var(--danger); font-weight: 800; }
.selection-summary { margin-top: 24px; padding: 19px; border-radius: 15px; border: 1px solid rgba(212, 175, 55, 0.3); background: rgba(212, 175, 55, 0.1); color: var(--ink); }
.selection-summary p { margin: 0; }

.chat-page { min-height: 100svh; min-height: 100dvh; height: 100svh; height: 100dvh; padding-bottom: 0; display: grid; grid-template-rows: auto minmax(0, 1fr); overflow: hidden; background: var(--page); }
.chat-page .site-header { padding-bottom: 14px; }
.chat-shell {
  width: min(860px, calc(100% - 32px));
  min-height: 0;
  height: calc(100% - 14px);
  margin: 0 auto 14px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-large);
  background: rgba(17, 19, 26, 0.95);
  box-shadow: var(--shadow);
}
.chat-heading { padding: 21px 24px; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.chat-heading h1 { margin: 0 0 4px; font-size: 1.35rem; letter-spacing: -0.01em; color: var(--gold); }
.chat-heading p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.chat-messages { min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 24px; display: flex; flex-direction: column; gap: 13px; }
.message { max-width: 78%; padding: 13px 16px; border-radius: 16px; white-space: pre-wrap; }
.message-user { align-self: flex-end; color: #000; background: linear-gradient(135deg, #00d2ff, #0099ff); border-bottom-right-radius: 5px; font-weight: 600; box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3); }
.message-bot { align-self: flex-start; color: var(--ink); background: rgba(23, 25, 34, 0.9); border: 1px solid rgba(212, 175, 55, 0.25); border-bottom-left-radius: 5px; }
.message-actions { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.message-actions a { padding: 8px 14px; border-radius: 999px; color: #000; background: linear-gradient(135deg, #fce8a6, #d4af37); text-decoration: none; font-size: 12px; font-weight: 800; }
.typing { align-self: flex-start; color: var(--muted); font-size: 13px; }
.quick-replies { padding: 0 24px 12px; display: flex; gap: 8px; overflow-x: auto; }
.quick-replies[hidden] { display: none; }
.quick-replies button { min-height: 40px; padding: 8px 15px; border: 1px solid rgba(0, 210, 255, 0.3); border-radius: 999px; color: var(--trust); background: rgba(0, 210, 255, 0.1); font-size: 12px; font-weight: 800; cursor: pointer; }
.chat-composer { min-width: 0; background: rgba(10, 11, 15, 0.95); }
.chat-form { padding: 16px; display: grid; grid-template-columns: 1fr auto; gap: 10px; border-top: 1px solid rgba(212, 175, 55, 0.2); background: rgba(10, 11, 15, 0.95); }
.chat-form .button { min-width: 52px; padding-inline: 16px; }
.chat-privacy { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 11px; }

.site-footer {
  margin-top: clamp(62px, 9vw, 110px);
  padding: 62px 0 110px;
  color: var(--ink-soft);
  background: #040406;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 0.75fr); gap: 42px; }
.footer-brand img { width: 132px; height: 84px; object-fit: contain; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5)); }
.footer-brand p { max-width: 360px; color: var(--ink-soft); }
.site-footer h2 { margin-bottom: 16px; color: var(--gold); font-size: 14px; letter-spacing: 0.05em; font-family: var(--font-heading); }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a, .privacy-button { color: var(--ink-soft); background: none; border: 0; padding: 0; text-decoration: none; font-size: 13px; cursor: pointer; transition: color 180ms ease; }
.footer-links a:hover, .privacy-button:hover { color: var(--gold); text-decoration: none; text-shadow: 0 0 8px rgba(212, 175, 55, 0.3); }
.footer-bottom { margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(212, 175, 55, 0.15); color: var(--muted); font-size: 12px; }

.mobile-action-bar { display: none; }

.consent-banner {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 18px;
  width: min(720px, calc(100% - 32px));
  padding: 19px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 17px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  background: rgba(17, 19, 26, 0.95);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
}
.consent-banner[hidden] { display: none; }
.consent-banner p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.consent-actions { display: flex; gap: 8px; }
.consent-actions .button { min-height: 42px; padding: 9px 14px; font-size: 11px; }
.privacy-dialog { width: min(600px, calc(100% - 30px)); padding: 0; border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 22px; color: var(--ink); background: rgba(17, 19, 26, 0.98); box-shadow: var(--shadow); }
.privacy-dialog::backdrop { background: rgba(4, 5, 8, 0.8); backdrop-filter: blur(8px); }
.dialog-inner { padding: 29px; }
.dialog-inner h2 { margin-bottom: 12px; font-size: 1.6rem; color: var(--gold); }
.dialog-inner p { color: var(--muted); }
.toggle-row { margin: 22px 0; padding: 17px; display: flex; justify-content: space-between; gap: 20px; border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 15px; }
.toggle-row strong, .toggle-row small { display: block; }
.toggle-row strong { color: var(--gold); }
.toggle-row small { margin-top: 3px; color: var(--muted); }
.toggle-row input { width: 22px; height: 22px; accent-color: var(--gold); }

.notice { padding: 18px 20px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: rgba(212, 175, 55, 0.1); color: var(--ink); }
.notice p { margin: 0; }

@media (max-width: 1020px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 12px; }
  .header-cta { display: none; }
  .hero-panel, .local-hero-panel { grid-template-columns: 1fr; }
  .hero-panel { min-height: 0; }
  .feature-card { max-width: 660px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 780px) {
  body { overflow-x: hidden; }
  body.has-mobile-actions { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  body.has-mobile-actions.input-focused .mobile-action-bar { transform: translateY(110%); }
  .container, .narrow { width: min(100% - 30px, var(--content)); }
  .section { padding: 54px 0; }
  .section-compact { padding: 42px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading.center { margin-inline: 0; text-align: left; }
  h2 { font-size: clamp(1.8rem, 7.5vw, 2.45rem); }
  .lead { font-size: 1rem; line-height: 1.58; }
  .site-header { padding-top: 10px; }
  .header-inner { min-height: 68px; padding: 8px 9px 8px 13px; border-radius: 19px; background: rgba(17, 19, 26, 0.95); box-shadow: 0 6px 18px rgba(0,0,0,0.5); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .brand { min-width: 0; }
  .brand img { width: 78px; height: 46px; }
  .brand-copy { display: none; }
  .menu-toggle { display: grid; }
  .site-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 15px;
    left: 15px;
    padding: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 18px;
    background: rgba(17, 19, 26, 0.98);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { min-height: 46px; padding: 12px; display: flex; align-items: center; border-bottom: 1px solid rgba(212, 175, 55, 0.15); font-size: 14px; }
  .site-nav a:last-child { border-bottom: 0; }
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: 11px; }
  .hero-panel { padding: 34px 23px 28px; border-radius: 24px; background: linear-gradient(145deg, rgba(23, 25, 34, 0.98), rgba(12, 14, 20, 0.98)); }
  .hero-copy h1 { margin-bottom: 18px; font-size: clamp(2.45rem, 11vw, 3.65rem); line-height: 1.02; }
  .hero-actions { margin-top: 24px; }
  .assurance-list { margin-top: 22px; gap: 7px 14px; }
  .feature-card { display: none; }
  .trust-band, .item-grid, .split, .locator-toolbar, .cta-panel { grid-template-columns: 1fr; }
  .trust-band { margin-top: 12px; padding: 0 17px; gap: 0; border-radius: 20px; }
  .trust-band article { min-height: 92px; padding: 15px 0; grid-template-columns: 56px minmax(0, 1fr); gap: 14px; }
  .trust-band article + article { border-top: 1px solid rgba(212, 175, 55, 0.15); border-left: 0; }
  .trust-band img { width: 56px; height: 56px; }
  .trust-band h2 { margin-bottom: 3px; font-size: 14px; }
  .trust-band p { font-size: 12px; line-height: 1.42; }
  .item-card { min-height: 220px; }
  .item-card img, .footer-brand img { filter: none; }
  .tag-list { justify-content: flex-start; }
  .locator-toolbar { margin-bottom: 18px; gap: 13px; }
  .input, .select, .textarea { min-height: 54px; font-size: 16px; }
  .state-filters { margin-inline: -3px; padding: 0 3px 5px; overflow-x: auto; flex-wrap: nowrap; overscroll-behavior-inline: contain; scrollbar-width: thin; }
  .filter-button { flex: 0 0 auto; }
  .store-card { min-height: 0; }
  .store-links { display: grid; grid-template-columns: 1fr 1fr; }
  .store-links a { min-height: 44px; padding: 10px; font-size: 12px; }
  .store-links a:first-child { grid-column: 1 / -1; font-size: 13px; }
  .store-contact-unavailable { grid-column: 1 / -1; min-height: 44px; font-size: 12px; }
  .locator-more .button { width: 100%; }
  .process-card { min-height: 210px; }
  .process-note { padding: 18px; font-size: 14px; }
  .cta-panel { text-align: left; }
  .cta-panel .button { width: 100%; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .store-picker { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-links a, .privacy-button { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-links li + li { margin-top: 0; }
  .mobile-action-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(65px + env(safe-area-inset-bottom));
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(12, 14, 20, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.8);
    transition: transform 180ms ease;
  }
  .mobile-action-bar a, .mobile-action-bar .mobile-action-disabled { min-height: 49px; padding: 7px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; border-radius: 12px; color: var(--ink-soft); text-decoration: none; font-size: 11px; font-weight: 800; touch-action: manipulation; }
  .mobile-action-bar a[data-primary-action],
  .mobile-action-bar a[aria-current="page"] { color: #000; background: linear-gradient(135deg, #fce8a6, #d4af37); font-weight: 800; }
  .mobile-action-bar .mobile-action-disabled { color: #000; background: linear-gradient(135deg, #fce8a6, #d4af37); opacity: 0.82; }
  .mobile-action-bar a > span, .mobile-action-bar .mobile-action-disabled > span { font-size: 16px; }
  .consent-banner { bottom: calc(12px + env(safe-area-inset-bottom)); max-height: min(52dvh, 360px); padding: 12px; gap: 10px; overflow-y: auto; grid-template-columns: 1fr; }
  body.has-mobile-actions .consent-banner { bottom: calc(78px + env(safe-area-inset-bottom)); }
  .consent-banner p { font-size: 12px; line-height: 1.35; }
  .consent-actions .button { min-height: 44px; flex: 1; }
  .site-footer { padding-bottom: 42px; }
  .privacy-dialog { max-height: calc(100dvh - 30px); overflow-y: auto; }
  .privacy-dialog::backdrop { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .dialog-inner { padding: 23px; }
  .toggle-row input { min-width: 44px; width: 44px; height: 44px; margin: 0; }

  .page-hero { padding-top: 18px; }
  .page-hero-panel, .local-hero-panel { padding: 32px 23px; }
  .page-hero-panel h1, .local-hero-panel h1 { font-size: clamp(2.25rem, 10vw, 3.25rem); line-height: 1.04; }
  .local-contact-card { padding: 24px; }
  .local-contact-card .button-row { display: grid; grid-template-columns: 1fr 1fr; }

  .wizard { padding: 24px; }
  .wizard-progress { margin-bottom: 28px; }
  .wizard .store-count { margin: 12px 0; }
  .choice-button { min-height: 112px; padding: 15px; }
  .choice-button img { width: 60px; height: 60px; }
  .store-picker { max-height: min(52dvh, 420px); }

  .chat-page .site-header { padding-bottom: 8px; }
  .chat-shell { width: calc(100% - 20px); height: calc(100% - 10px); margin-bottom: 10px; border-radius: 22px; }
  .chat-heading { padding: 17px 18px; }
  .chat-messages { min-height: 0; padding: 18px; }
  .quick-replies { padding: 0 18px 10px; }
  .quick-replies button { min-height: 44px; }
  .message-actions a { min-height: 44px; display: inline-flex; align-items: center; }
  .chat-form { padding: 12px; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
}

@media (max-width: 540px) {
  .container, .narrow { width: min(100% - 24px, var(--content)); }
  .section { padding: 47px 0; }
  .section-compact { padding: 36px 0; }
  .eyebrow { margin-bottom: 11px; font-size: 10px; }
  .hero-panel { padding: 29px 20px 24px; }
  .hero-copy h1 { font-size: clamp(2.2rem, 11.5vw, 3rem); }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button-row .button { width: 100%; }
  .section-actions { margin-top: 24px; }
  .assurance-list { display: grid; gap: 5px; font-size: 12px; }
  .item-grid, .process-grid, .store-grid { grid-template-columns: 1fr; }
  .item-card { min-height: 0; padding: 18px; display: grid; grid-template-columns: 76px 1fr; grid-template-rows: auto auto; column-gap: 16px; align-items: center; border-radius: 18px; }
  .item-card img { width: 72px; height: 72px; grid-row: 1 / 3; }
  .item-card h3 { margin: 0 0 5px; font-size: 17px; }
  .item-card p { font-size: 13px; line-height: 1.5; }
  .tag-list { margin-top: 22px; gap: 7px; }
  .tag-list li { padding: 7px 10px; font-size: 11px; }
  .process-card { min-height: 0; padding: 20px; display: grid; grid-template-columns: 39px 1fr; grid-template-rows: auto auto; column-gap: 11px; border-radius: 18px; }
  .process-card::before { grid-row: 1 / 3; margin: 4px 0 0; font-size: 12px; }
  .process-card h3 { margin: 0 0 6px; font-size: 16px; }
  .process-card p { font-size: 13px; line-height: 1.5; }
  .locator-shell, .wizard, .legal-copy { padding: 20px; border-radius: 20px; }
  .store-card { padding: 18px; }
  .store-address { min-height: 0; }
  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .choice-button { min-height: 106px; padding: 12px; }
  .choice-button img { width: 56px; height: 56px; }
  .wizard-actions { display: grid; grid-template-columns: 0.85fr 1.15fr; }
  .wizard-actions .button { width: 100%; padding-inline: 12px; }
  .local-hero-panel { padding: 28px 20px 20px; border-radius: 21px; }
  .local-contact-card { padding: 21px; border-radius: 18px; }
  .local-contact-card .button-row { grid-template-columns: 1fr; }
  .page-hero-panel { padding: 30px 20px; border-radius: 21px; }
  .faq-list summary { min-height: 54px; padding: 16px 48px 16px 18px; font-size: 14px; }
  .faq-answer { padding: 0 18px 18px; font-size: 14px; }
  .cta-panel { padding: 28px 21px; border-radius: 21px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > :last-child { grid-column: auto; }
  .site-footer { margin-top: 54px; padding-top: 46px; }
  .footer-grid { gap: 22px; }
  .footer-bottom { margin-top: 28px; }
  .message { max-width: 90%; }
  .quick-replies { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .quick-replies button { min-width: 0; white-space: normal; }
  .chat-form { grid-template-columns: 1fr auto; }
}

@media (max-width: 360px) {
  .choice-grid { grid-template-columns: 1fr; }
  .mobile-action-bar { padding-inline: 7px; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
