:root {
  --amber: #E8A31A;
  --amber-dark: #C6860E;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --bg: #FFFFFF;
  --bg-alt: #FAF7F1;
  --border: #E9E2D3;
  --good: #2E7D46;
  --font-head: 'Archivo', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.55; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
h2.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--amber-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.todo { background: #FFF3CD; color: #7A5B00; padding: 0 4px; border-radius: 3px; font-style: italic; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 20px; }
.brand-mark { height: 64px; width: auto; }
.main-nav { flex: 1; }
.nav-menu { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; align-items: center; justify-content: center; }
.nav-menu a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav-menu a.active { color: var(--amber-dark); }
.has-dropdown { position: relative; }
.nav-item-row { display: flex; align-items: center; }
.dropdown-toggle { background: none; border: 0; cursor: pointer; color: var(--ink-soft); padding: 10px 6px;
  margin: -10px -6px -10px 0; display: flex; align-items: center; justify-content: center; border-radius: 6px; }
.dropdown-toggle:hover { color: var(--ink); background: var(--bg-alt); }
.dropdown-toggle svg { transition: transform .15s ease; }
.has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border);
  border-radius: 8px; list-style: none; padding: 8px; min-width: 200px; max-height: 70vh; overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.open .dropdown { display: block; }
.dropdown li a { display: block; padding: 8px 10px; border-radius: 6px; font-weight: 500; }
.dropdown li a:hover { background: var(--bg-alt); text-decoration: none; }
.dropdown-heading { padding: 8px 10px 4px; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--ink-soft); }
.dropdown-heading:not(:first-child) { margin-top: 4px; border-top: 1px solid var(--border); padding-top: 10px; }
.dropdown-note { margin-top: 4px; border-top: 1px solid var(--border); padding: 10px 10px 8px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px; white-space: nowrap; }
.dropdown-note span:first-child { font-weight: 600; font-size: .88rem; color: var(--ink-soft); }
.soon-badge { flex: none; background: var(--amber); color: var(--ink); font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .03em; padding: 3px 8px; border-radius: 999px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }
.header-cta { white-space: nowrap; }

/* Buttons */
.btn { display: inline-block; padding: 12px 22px; border-radius: 8px; font-weight: 700; font-family: var(--font-head);
  font-size: .95rem; border: 2px solid transparent; cursor: pointer; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--bg-alt), #fff); padding: 60px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--amber-dark); font-size: .85rem; margin-bottom: 12px; }
.lede { font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0; }
.license-line { font-size: .85rem; color: var(--ink-soft); }
.hero-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-swatch { border-radius: 16px; aspect-ratio: 1; }
.swatch-1 { background: var(--amber); grid-row: span 2; }
.swatch-2 { background: var(--ink); }
.swatch-3 { background: var(--bg-alt); border: 2px solid var(--border); }

/* Sections */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-lede { max-width: 760px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.prose p { max-width: 720px; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.card h3 a { color: var(--ink); }
.link-arrow { font-weight: 700; }

/* Chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.chip-grid-small { margin-top: 8px; }
.area-chip, .pill-list li { display: inline-block; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: .9rem; color: var(--ink); }
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li { background: #fff; }
.region-label { font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink-soft); margin: 28px 0 4px; }
.region-label:first-of-type { margin-top: 0; }
h2.region-label { font-size: 1.3rem; color: var(--ink); text-transform: none; letter-spacing: normal; margin-top: 40px; }
.sidebar-region-label { font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink-soft); margin: 14px 0 4px; }
.sidebar-region-label:first-of-type { margin-top: 0; }

/* Lists */
.check-list, .step-list { padding-left: 0; list-style: none; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--good); font-weight: 800; }
.step-list { counter-reset: step; }
.step-list li { padding-left: 36px; position: relative; margin-bottom: 14px; }
.step-list li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; background: var(--amber); color: var(--ink); border-radius: 50%; font-weight: 800;
  font-size: .8rem; display: flex; align-items: center; justify-content: center; }

/* FAQ */
.faq-grid { display: grid; gap: 20px; margin-top: 16px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; padding: 48px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D9D9D9; }

/* Guarantee band */
.guarantee-band { background: var(--amber); padding: 28px 0; }
.guarantee-inner { display: flex; align-items: center; gap: 20px; }
.guarantee-badge { flex: none; width: 64px; height: 64px; border-radius: 50%; background: var(--ink);
  color: var(--amber); font-family: var(--font-head); font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; }
.guarantee-band h2 { margin-bottom: 2px; font-size: 1.2rem; }
.guarantee-band p { margin: 0; color: var(--ink); font-weight: 600; }
@media (max-width: 500px) { .guarantee-inner { flex-direction: column; text-align: center; } }

/* Sidebar */
.sidebar-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.sidebar-card ul { list-style: none; padding: 0; margin: 0 0 16px; }
.sidebar-card li { margin-bottom: 8px; }

/* Contact */
.contact-list { list-style: none; padding: 0; }
.contact-list li { display: flex; gap: 10px; margin-bottom: 12px; }
.contact-list span { font-weight: 700; min-width: 70px; }
.quote-form { display: grid; gap: 14px; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; }
.quote-form label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; }
.quote-form input, .quote-form select, .quote-form textarea {
  font-family: var(--font-body); padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border); font-size: 1rem;
}
.form-note { font-size: .85rem; }

/* Reviews */
.review-cta { margin: 20px 0; }

/* Page hero (non-home) */
.page-hero { background: var(--bg-alt); padding: 48px 0 32px; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 48px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.footer-mark { height: 56px; margin-bottom: 12px; }
.footer-col h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 16px 20px; font-size: .85rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-inner, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: flex-start; padding: 16px 20px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-menu.open { display: flex; }
  .dropdown { position: static; display: block; box-shadow: none; border: none; padding-left: 12px; }
  .dropdown-toggle { display: none; }
  .nav-item-row { justify-content: space-between; }
  .header-cta { display: none; }
  .brand-mark { height: 48px; }
}
