/* ============================================================
   Junk Takers for Neighbors landing page styles
   Palette: deep navy + warm rust + bone (Denver dusk / mountain)
   Type:    Archivo (display)  +  Inter (body)
   ============================================================ */

:root {
  /* Color */
  --navy-900: #0b1828;
  --navy-800: #0f1e2e;
  --navy-700: #16293c;
  --navy-600: #1d3a55;
  --navy-500: #2a5277;
  --rust-700: #b85a25;
  --rust-600: #d06a30;
  --rust-500: #e07a3c;   /* primary accent */
  --rust-400: #ec9258;
  --bone-50:  #faf6ef;
  --bone-100: #f5e9d7;
  --bone-200: #ede0c8;
  --ink-900:  #14202d;
  --ink-700:  #2c3a4a;
  --ink-500:  #4d5d70;
  --ink-400:  #6f7e90;
  --ink-300:  #97a2af;
  --line:     #e1dccf;
  --line-strong:#cdc6b3;
  --white:    #ffffff;

  /* Type */
  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Radius / shadows */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15, 30, 46, 0.06), 0 2px 6px rgba(15, 30, 46, 0.05);
  --shadow:    0 6px 18px rgba(15, 30, 46, 0.08), 0 2px 6px rgba(15, 30, 46, 0.05);
  --shadow-lg: 0 24px 60px rgba(11, 24, 40, 0.18);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bone-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--rust-700); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-700); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-800); color: var(--bone-50);
  padding: 10px 16px; border-radius: 0 0 var(--r) 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5em;
  padding: 0.75rem 1.15rem;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--rust-500);
  color: var(--white);
  border-color: var(--rust-500);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--rust-600); border-color: var(--rust-600); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  color: var(--bone-50);
  border-color: rgba(245, 233, 215, 0.4);
}
.btn-ghost:hover { background: rgba(245, 233, 215, 0.08); border-color: var(--bone-100); }
.btn-lg { padding: 0.95rem 1.5rem; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; }

/* Focus styles */
:where(a, button, input, textarea, select, summary, .chip):focus-visible {
  outline: 2px solid var(--rust-500);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--ink-900);
}
.brand:hover { text-decoration: none; }
.brand-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: transparent;
}
.brand-name {
  display: inline-flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-line-1 { font-size: 0.78rem; color: var(--rust-700); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.brand-line-2 { font-size: 1.05rem; color: var(--ink-900); margin-top: 2px; }

.primary-nav { display: none; gap: 1.5rem; align-items: center; }
.primary-nav a {
  color: var(--ink-700); font-weight: 500; font-size: 0.94rem;
  text-decoration: none;
}
.primary-nav a:hover { color: var(--ink-900); }
.primary-nav .nav-cta { display: none; }
.header-cta { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink-900); border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0.5rem var(--gutter) 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--bone-50);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 0.85rem 0.25rem;
  color: var(--ink-900); font-weight: 500;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.mobile-nav .btn { margin-top: 0.75rem; }

@media (min-width: 880px) {
  .primary-nav { display: inline-flex; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .mobile-nav { display: none !important; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  color: var(--bone-100);
  padding: clamp(64px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.hero-skyline {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 44%;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 60% at 80% 10%, rgba(224, 122, 60, 0.18), transparent 70%),
    radial-gradient(60% 50% at 10% 0%, rgba(42, 82, 119, 0.4), transparent 70%);
}
.hero-content { max-width: 760px; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust-400);
  margin: 0 0 1rem;
}
.hero h1 { color: var(--bone-50); }
.hero h1 .accent { color: var(--rust-500); white-space: nowrap; }
.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--bone-100);
  max-width: 620px;
  margin-bottom: 1rem;
}
.hero-support { color: rgba(245, 233, 215, 0.72); max-width: 560px; }
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
}
.hero-trust {
  font-size: 0.9rem; color: rgba(245, 233, 215, 0.6); margin-top: 0.5rem;
  border-top: 1px solid rgba(245, 233, 215, 0.12);
  padding-top: 1rem; max-width: 580px;
}

/* Sections */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 740px; margin: 0 0 2.5rem; }
.section-lede { color: var(--ink-500); font-size: 1.05rem; }

/* ============ Quote section ============ */
.quote-section {
  background: linear-gradient(180deg, var(--bone-50) 0%, var(--bone-100) 100%);
}
.quote-grid {
  display: grid; gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 920px) {
  .quote-grid { grid-template-columns: 0.85fr 1fr; }
}
.quote-intro h2 { margin-top: 0.4rem; }
.quote-bullets {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 0.5rem;
}
.quote-bullets li {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--ink-700); font-size: 0.96rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rust-500); flex: 0 0 8px;
}

.quote-generator {
  border: 1.5px solid rgba(224, 122, 60, 0.35);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(224, 122, 60, 0.12), transparent 55%),
    var(--bone-50);
  border-radius: var(--r);
  padding: clamp(18px, 3vw, 24px);
  margin-bottom: 1.25rem;
}
.generator-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.mini-eyebrow {
  font-size: 0.68rem;
  margin-bottom: 0.4rem;
}
.generator-head h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}
.generator-copy,
.photo-note,
.estimate-disclaimer {
  color: var(--ink-500);
  font-size: 0.9rem;
}
.photo-note {
  margin: 0.45rem 0 0.75rem;
}
.photo-input {
  width: 100%;
  padding: 0.65rem;
  background: var(--white);
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-sm);
}
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.photo-preview {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bone-100);
  position: relative;
}
.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-preview span {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: rgba(11, 24, 40, 0.75);
  color: var(--white);
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
  font-size: 0.7rem;
}
.file-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.75rem;
}
.file-preview strong {
  font-family: var(--font-display);
  color: var(--navy-700);
}
.file-preview em {
  font-style: normal;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.estimate-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--r);
  background: var(--navy-800);
  color: var(--bone-50);
  box-shadow: var(--shadow-sm);
}
.estimate-label {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust-400);
}
.estimate-range {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  color: var(--bone-50);
}
.estimate-disclaimer {
  margin: 0.7rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(245, 233, 215, 0.14);
  color: rgba(245, 233, 215, 0.62);
  font-size: 0.78rem;
}
.btn-reset {
  margin-top: 0.8rem;
  background: transparent;
  color: var(--navy-700);
  border-color: var(--line-strong);
}
.btn-reset:hover {
  background: rgba(15, 30, 46, 0.04);
  border-color: var(--navy-500);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1rem; }
.form-row.two-col {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}
.quote-form label,
.quote-form legend {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.86rem;
  color: var(--ink-700);
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}
.req { color: var(--rust-600); }
.optional {
  font-family: var(--font-body); font-weight: 400;
  font-size: 0.78rem; color: var(--ink-400);
  text-transform: lowercase; margin-left: 4px;
}
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="file"],
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--bone-50);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--rust-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(224, 122, 60, 0.18);
}
.quote-form textarea { resize: vertical; min-height: 80px; }
.quote-form input:invalid:not(:placeholder-shown),
.quote-form select:invalid:not(:placeholder-shown) {
  /* gentle; full validation handled in JS */
}

fieldset.form-row { border: 0; padding: 0; margin-bottom: 1rem; }
.chip-grid {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-700);
  background: var(--bone-50);
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.chip input { accent-color: var(--rust-500); }
.chip:has(input:checked) {
  background: rgba(224, 122, 60, 0.12);
  border-color: var(--rust-500);
  color: var(--rust-700);
}

.consent-row { margin-top: 0.75rem; }
.consent {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--ink-700);
  font-weight: 400; font-family: var(--font-body); letter-spacing: 0;
  line-height: 1.5;
}
.consent input {
  margin-top: 0.2rem; accent-color: var(--rust-500);
  width: 18px; height: 18px; flex: 0 0 18px;
}

.form-fineprint {
  margin: 0.85rem 0 0;
  font-size: 0.8rem; color: var(--ink-400); text-align: center;
}
.form-fineprint a { color: var(--ink-500); text-decoration: underline; }
.form-success {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(46, 132, 88, 0.1);
  border: 1px solid rgba(46, 132, 88, 0.35);
  color: #235c3d;
  font-size: 0.95rem;
}

/* ============ Cards (What We Take) ============ */
.card-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem 1.25rem;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { border-color: var(--rust-500); transform: translateY(-2px); box-shadow: var(--shadow); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--bone-100);
  color: var(--navy-700);
  border-radius: 10px;
  margin-bottom: 0.9rem;
}
.card h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.card p { color: var(--ink-500); font-size: 0.93rem; margin: 0; }
.card-accent { background: var(--navy-800); border-color: var(--navy-700); }
.card-accent h3 { color: var(--bone-50); }
.card-accent p { color: rgba(245, 233, 215, 0.72); }
.card-accent .card-icon { background: rgba(224, 122, 60, 0.18); color: var(--rust-400); }

/* ============ Steps ============ */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.step {
  position: relative;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bone-50);
}
.step-num {
  display: inline-block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.5rem; line-height: 1; color: var(--rust-500);
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.step h3 { margin: 0 0 0.4rem; }
.step p { margin: 0; color: var(--ink-500); }

/* ============ Why / two-col-section ============ */
.two-col-section {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) { .two-col-section { grid-template-columns: 1fr 1fr; } }
.benefit-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.6rem;
}
.benefit-list li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: 1rem; color: var(--ink-700);
  padding: 0.7rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(224, 122, 60, 0.14);
  color: var(--rust-700);
  border-radius: 50%;
  font-weight: 700; font-size: 0.85rem;
  flex: 0 0 22px;
}

/* ============ Pricing ============ */
.pricing-factors {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 0 0 1.5rem;
}
.pricing-factors > div {
  padding: 1.1rem 1.15rem;
  background: var(--bone-50);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.pricing-factors h4 { margin: 0 0 0.3rem; color: var(--rust-700); }
.pricing-factors p { margin: 0; color: var(--ink-500); font-size: 0.93rem; }
.pricing-note { color: var(--ink-500); max-width: 760px; }
.center { text-align: center; margin-top: 1.5rem; }

/* ============ Service area ============ */
.area-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.6rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.area-grid li {
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-weight: 500; color: var(--ink-700);
  font-size: 0.96rem;
  text-align: left;
  position: relative;
}
.area-grid li::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rust-500);
  margin-right: 0.55rem; vertical-align: middle;
}
.area-grid li.area-more {
  background: transparent; border-style: dashed; color: var(--ink-500); font-style: italic;
}
.area-grid li.area-more::before { background: var(--ink-300); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 880px; }
.faq-list {
  display: grid; gap: 0.5rem;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq-list details[open] { border-color: var(--rust-500); box-shadow: var(--shadow-sm); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-900);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.4rem; line-height: 1; color: var(--rust-500);
  transition: transform 0.2s ease;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 0; padding: 0 1.25rem 1.25rem;
  color: var(--ink-500);
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--navy-800);
  color: var(--bone-50);
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(224, 122, 60, 0.18), transparent 70%);
  pointer-events: none;
}
.final-cta h2 { color: var(--bone-50); margin-bottom: 0.5rem; }
.final-cta p { color: rgba(245, 233, 215, 0.78); max-width: 560px; margin: 0 auto 1.75rem; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-900);
  color: rgba(245, 233, 215, 0.78);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.site-footer h4 { color: var(--bone-50); margin-bottom: 0.75rem; }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.6fr; }
}
.brand-footer { color: var(--bone-50); margin-bottom: 0.75rem; }
.brand-footer .brand-line-1 { color: var(--rust-400); }
.brand-footer .brand-line-2 { color: var(--bone-50); }
.footer-copy { color: rgba(245, 233, 215, 0.6); max-width: 360px; font-size: 0.94rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }
.footer-links a { color: rgba(245, 233, 215, 0.78); }
.footer-links a:hover { color: var(--rust-400); }
.footer-disclaim p { font-size: 0.88rem; color: rgba(245, 233, 215, 0.6); }

.legal-block {
  border-top: 1px solid rgba(245, 233, 215, 0.12);
  padding-top: 2rem; padding-bottom: 1rem;
  margin-top: 2.5rem;
}
.legal-block h3 { color: var(--bone-50); font-size: 1.15rem; margin-bottom: 0.5rem; }
.legal-block p { color: rgba(245, 233, 215, 0.7); font-size: 0.92rem; max-width: 780px; }

.footer-bottom {
  border-top: 1px solid rgba(245, 233, 215, 0.12);
  margin-top: 1rem;
  padding-top: 1.25rem; padding-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(245, 233, 215, 0.5);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   2.0 Premium shell: Lamborghini x Birkin x Ritz Carlton
   ============================================================ */
:root {
  --navy-900: #090806;
  --navy-800: #11100d;
  --navy-700: #1b1813;
  --navy-600: #2b261d;
  --navy-500: #5a4a34;
  --rust-700: #9a6a2f;
  --rust-600: #b9823a;
  --rust-500: #c9964a;
  --rust-400: #dfbd79;
  --bone-50: #fbf7ef;
  --bone-100: #f3eadc;
  --bone-200: #e7d8c2;
  --ink-900: #14110c;
  --ink-700: #322b20;
  --ink-500: #675d4f;
  --ink-400: #8b8174;
  --line: #e4d7c4;
  --line-strong: #cdbb9f;
  --shadow: 0 18px 50px rgba(20, 17, 12, 0.10), 0 3px 12px rgba(20, 17, 12, 0.06);
  --shadow-lg: 0 40px 100px rgba(8, 7, 5, 0.28);
}

body {
  background: radial-gradient(900px 420px at 12% -10%, rgba(201, 150, 74, 0.13), transparent 60%), linear-gradient(180deg, #fffaf2 0%, var(--bone-50) 42%, #f7efe2 100%);
}
.site-header {
  background: rgba(251, 247, 239, 0.82);
  border-bottom: 1px solid rgba(205, 187, 159, 0.55);
}
.brand-logo svg rect { fill: #11100d; }
.brand-line-1 { color: var(--rust-700); }
.brand-line-2 { letter-spacing: 0.02em; }
.btn {
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.btn-primary {
  color: #11100d;
  background: linear-gradient(135deg, #f3d897 0%, #c9964a 45%, #9a6a2f 100%);
  border-color: rgba(154, 106, 47, 0.55);
  box-shadow: 0 12px 30px rgba(154, 106, 47, 0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffe6a9 0%, #d8a455 48%, #a77434 100%);
  border-color: rgba(154, 106, 47, 0.8);
}
.btn-ghost {
  color: var(--bone-50);
  border-color: rgba(223, 189, 121, 0.42);
  background: rgba(251, 247, 239, 0.03);
}
.hero {
  background: linear-gradient(125deg, rgba(8, 7, 5, 0.97) 0%, rgba(17, 16, 13, 0.96) 54%, rgba(56, 41, 22, 0.9) 100%);
  padding: clamp(82px, 10vw, 140px) 0 clamp(92px, 12vw, 150px);
}
.hero-skyline { display: none; }
.hero::before {
  content: "";
  position: absolute;
  inset: 7% 6% auto auto;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(223, 189, 121, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(223, 189, 121, 0.18), transparent 58%), conic-gradient(from 130deg, transparent, rgba(223, 189, 121, 0.22), transparent 38%);
  opacity: 0.86;
}
.hero::after {
  background: linear-gradient(90deg, rgba(8, 7, 5, 0.78), rgba(8, 7, 5, 0.15)), radial-gradient(60% 80% at 82% 16%, rgba(201, 150, 74, 0.32), transparent 66%);
}
.hero h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  letter-spacing: -0.055em;
}
.hero h1 .accent { color: #f1d493; }
.lede {
  max-width: 700px;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}
.hero-support {
  color: rgba(251, 247, 239, 0.7);
  max-width: 660px;
}
.eyebrow { color: var(--rust-400); }
.quote-section {
  background: linear-gradient(180deg, #fffaf2 0%, #f3eadc 100%);
}
.quote-grid { gap: clamp(34px, 5vw, 70px); }
.quote-intro {
  position: sticky;
  top: 104px;
}
.quote-intro h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
}
.quote-form {
  border: 1px solid rgba(205, 187, 159, 0.8);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(246, 237, 224, 0.96));
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.quote-generator {
  border: 1px solid rgba(201, 150, 74, 0.42);
  background: radial-gradient(500px 220px at 92% 0%, rgba(201, 150, 74, 0.2), transparent 62%), linear-gradient(180deg, #fffdf8, #f4eadb);
  border-radius: 24px;
}
.generator-head h3 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}
.photo-input,
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="file"],
.quote-form textarea,
.quote-form select {
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.88);
}
.chip {
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.62);
}
.chip:has(input:checked) {
  background: rgba(201, 150, 74, 0.18);
  color: var(--ink-900);
}
.estimate-card {
  background: linear-gradient(145deg, #090806 0%, #16130e 62%, #3a2a16 100%);
  border: 1px solid rgba(223, 189, 121, 0.28);
  border-radius: 22px;
}
.estimate-range {
  color: #fff6e7;
  letter-spacing: -0.05em;
}
.card,
.step,
details {
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(20, 17, 12, 0.04);
}
.card:hover { border-color: rgba(201, 150, 74, 0.8); }
.final-cta {
  background: radial-gradient(700px 340px at 75% 0%, rgba(201, 150, 74, 0.35), transparent 62%), linear-gradient(135deg, #090806, #19150f);
}
@media (max-width: 919px) {
  .quote-intro { position: static; }
}
