/* ===================================================================
   Sell My Home The Smart Way — warm, light, calm
   Built around trust in a person (Luke), not a slick brand.
   =================================================================== */

:root {
  --bg: #ffffff;
  --paper: #f4f8f6;        /* soft section background */
  --paper2: #eaf2ef;
  --ink: #15272d;          /* headings — soft dark slate, not black */
  --body: #46565d;         /* body text */
  --muted: #8a979c;
  --line: #e3ece9;
  --line-soft: #eef3f1;

  --teal: #1a8a76;         /* primary trust color */
  --teal-d: #136a5b;
  --teal-soft: #e3f2ed;
  --blue: #3f7ea6;         /* secondary soft-blue accent */
  --blue-soft: #e8f1f6;
  --sand: #e0a23f;         /* warm accent — used sparingly */
  --sand-soft: #fbf1dd;
  --cream: #fbf8f2;

  --font-display: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 12px rgba(20,45,50,.05);
  --shadow: 0 26px 60px -28px rgba(18,55,55,.28);
  --shadow-warm: 0 26px 60px -22px rgba(26,138,118,.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }
em { font-style: italic; color: var(--teal-d); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--teal); display: inline-block; border-radius: 2px; }
.teal { color: var(--teal); }
.sand { color: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-warm); }
.btn-primary:hover { transform: translateY(-2px); background: var(--teal-d); box-shadow: 0 26px 60px -16px rgba(26,138,118,.5); }
.btn-soft { background: var(--teal-soft); color: var(--teal-d); }
.btn-soft:hover { transform: translateY(-2px); background: #d4ece5; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--teal); color: var(--teal-d); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }

.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 0 rgba(43,182,115,.5); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(43,182,115,.5);} 70%{box-shadow:0 0 0 8px rgba(43,182,115,0);} 100%{box-shadow:0 0 0 0 rgba(43,182,115,0);} }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, box-shadow .3s, padding .3s; padding: 16px 0; }
.site-header.scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); padding: 11px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink); }
.brand-mark { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(145deg, var(--teal), var(--teal-d)); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-warm); flex-shrink: 0; }
.brand-mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-family: var(--font-body); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--body); transition: color .2s; }
.nav-links a:hover { color: var(--teal-d); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink); white-space: nowrap; }
.nav-phone svg { width: 17px; height: 17px; color: var(--teal); }
.nav-toggle { display: none; background: #fff; border: 1px solid var(--line); border-radius: 11px; width: 46px; height: 46px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 132px 0 70px; background: linear-gradient(180deg, var(--cream) 0%, #fff 70%); overflow: hidden; }
.hero-scene { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 300px; z-index: 0; pointer-events: none; opacity: .92; }
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); margin: 20px 0 0; }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--body); margin: 22px 0 0; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.byline { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.byline .ava { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--teal-soft); flex-shrink: 0; }
.byline b { font-family: var(--font-display); color: var(--ink); display: block; font-size: 15px; }
.byline span { font-size: 13.5px; color: var(--muted); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--body); font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* ---------- Photo frames (real-photo placeholders) ---------- */
.hero-photos { position: relative; min-height: 460px; }
.ph { position: relative; border-radius: var(--radius); overflow: hidden; background:
    linear-gradient(135deg, var(--teal-soft), var(--blue-soft));
  box-shadow: var(--shadow); border: 5px solid #fff; }
.ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.ph-hint { display: none; position: absolute; inset: 0; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 16px; color: var(--teal-d); font-size: 13px; font-weight: 600; font-family: var(--font-display); }
.ph-hint svg { width: 34px; height: 34px; opacity: .55; }
.ph-hint code { background: #fff; padding: 3px 8px; border-radius: 6px; font-size: 11.5px; color: var(--teal-d); font-family: ui-monospace, monospace; box-shadow: var(--shadow-sm); }
.ph.ph-empty .ph-hint { display: flex; }
.hero-photo-main { position: absolute; top: 0; right: 0; width: 74%; aspect-ratio: 4/5; }
.hero-photo-home { position: absolute; bottom: 0; left: 0; width: 56%; aspect-ratio: 4/3; z-index: 2; }
.float-chip { position: absolute; z-index: 3; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); }
.float-chip .ico { width: 34px; height: 34px; border-radius: 9px; background: var(--teal-soft); display: grid; place-items: center; color: var(--teal-d); flex-shrink: 0; }
.float-chip .ico svg { width: 18px; height: 18px; }
.float-chip span { font-weight: 500; font-size: 12.5px; color: var(--muted); display: block; }
.float-chip.fc-top { top: 18%; left: -14px; }
.float-chip.fc-bot { bottom: 12%; right: -10px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding: 20px 24px; }
.trust-strip span { display: flex; align-items: center; gap: 10px; color: #cfe3de; font-size: 14.5px; font-weight: 600; }
.trust-strip svg { width: 17px; height: 17px; color: #5fd2b3; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-soft { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); margin: 16px 0 0; }
.section-head p { font-size: 1.1rem; margin-top: 16px; color: var(--body); }

/* ---------- About Luke ---------- */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: center; }
.about-photo { position: relative; }
.about-photo .ph { aspect-ratio: 4/5; }
.about-photo .badge { position: absolute; bottom: -16px; right: -16px; background: var(--teal); color: #fff; border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-warm); font-family: var(--font-display); }
.about-photo .badge b { display: block; font-size: 1.5rem; }
.about-photo .badge span { font-size: 12.5px; opacity: .9; }
.about h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.about p { margin-top: 16px; font-size: 1.07rem; }
.about .sig { margin-top: 22px; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.about .sig span { display: block; font-weight: 500; color: var(--muted); font-size: 14px; }

/* ---------- Options grid ---------- */
.options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.option-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.option-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.option-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-soft); display: grid; place-items: center; color: var(--teal-d); margin-bottom: 18px; }
.option-ico svg { width: 26px; height: 26px; }
.option-card h3 { font-size: 1.22rem; }
.option-card p { font-size: 14.5px; color: var(--body); margin-top: 10px; }
.option-card .tag { font-size: 12.5px; font-weight: 700; color: var(--teal); margin-top: 16px; display: inline-block; }

/* ---------- Difference band ---------- */
.value-band { background: linear-gradient(140deg, #fff, var(--teal-soft)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 54px; }
.value-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.value-list { list-style: none; display: grid; gap: 16px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .vi { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; background: var(--teal); display: grid; place-items: center; }
.value-list .vi svg { width: 16px; height: 16px; color: #fff; }
.value-list strong { display: block; font-family: var(--font-display); color: var(--ink); }
.value-list span { color: var(--body); font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 32px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--teal); }
.step h3 { font-size: 1.25rem; margin: 12px 0 8px; }
.step p { color: var(--body); font-size: 15px; }

/* ---------- Comparison ---------- */
.compare { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.compare table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.compare th, .compare td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.compare thead th { font-family: var(--font-display); font-size: 15px; background: var(--paper); color: var(--ink); }
.compare thead th.featured { background: var(--teal); color: #fff; }
.compare td.featured { background: var(--teal-soft); font-weight: 600; color: var(--teal-d); }
.compare td:first-child { color: var(--ink); font-weight: 600; }
.compare .x { color: #c2563f; }
.compare .check { color: var(--teal); }
.compare tr:last-child td { border-bottom: none; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--sand); letter-spacing: 2px; font-size: 15px; }
.quote p { color: var(--ink); font-size: 15.5px; margin: 14px 0 18px; line-height: 1.65; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-d); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.quote .who b { font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.quote .who span { display: block; font-size: 13px; color: var(--muted); }

/* ---------- Areas ---------- */
.areas-banner { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.region-card { display: flex; flex-direction: column; gap: 10px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.region-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.region-card > div { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.region-card > div b { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.region-card > div span { font-size: 12.5px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.region-card p { font-size: 14.5px; color: var(--body); margin: 0; flex: 1; }
.region-card .rc-link { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-d); font-weight: 700; font-family: var(--font-display); font-size: 14.5px; }
.region-card .rc-link svg { width: 16px; height: 16px; }
@media (max-width: 980px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .region-grid { grid-template-columns: 1fr; } }
.area-chip { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 18px 20px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line); transition: all .25s var(--ease); }
.area-chip:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.area-chip b { font-family: var(--font-display); font-size: 15.5px; color: var(--ink); }
.area-chip span { font-size: 12px; color: var(--muted); }
.area-chip svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

/* ---------- Lead card ---------- */
.lead-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.lead-card h3 { font-size: 1.45rem; }
.lead-card p.sub { color: var(--body); font-size: 14.5px; margin-top: 8px; }
.field { margin-top: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border-radius: var(--radius-sm);
  background: var(--paper); border: 1.5px solid var(--line); color: var(--ink);
  font-family: var(--font-body); font-size: 15px; transition: border .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #aab4b8; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px var(--teal-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a8a76' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 26px 0; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--teal); margin: 0 auto 12px; }

/* ---------- Big CTA ---------- */
.cta-band { background: linear-gradient(140deg, var(--teal), var(--teal-d)); border-radius: var(--radius-lg); padding: 62px; text-align: center; color: #fff; box-shadow: var(--shadow-warm); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; }
.cta-band p { font-size: 1.15rem; margin: 14px auto 28px; max-width: 560px; color: #d7f0e9; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-white { background: #fff; color: var(--teal-d); }
.cta-band .btn-white:hover { transform: translateY(-2px); }
.cta-band .btn-clear { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ico { flex-shrink: 0; width: 27px; height: 27px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-d); display: grid; place-items: center; transition: transform .3s; font-size: 18px; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a div { padding: 0 24px 22px; color: var(--body); font-size: 15px; line-height: 1.7; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); padding: 70px 0 34px; color: #b9c8c4; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #8fa39e; }
.footer-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .09em; color: #7e928d; margin-bottom: 16px; }
.footer-grid a, .footer-grid p { display: block; color: #b9c8c4; font-size: 14.5px; margin-bottom: 9px; transition: color .2s; }
.footer-grid a:hover { color: #5fd2b3; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: #7e928d; }
.footer-disclaimer { font-size: 12px; color: #6f827d; margin-top: 14px; line-height: 1.6; max-width: 680px; }

/* ---------- Mobile call bar ---------- */
.mobile-callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-top: 1px solid var(--line); gap: 10px; box-shadow: 0 -6px 24px rgba(20,45,50,.07); }
.mobile-callbar .btn { flex: 1; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ---------- Area pages ---------- */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); }
.breadcrumb a:hover { color: var(--teal-d); }
.breadcrumb span { color: var(--line); }
.area-hero { padding: 140px 0 60px; background: linear-gradient(180deg, var(--cream), #fff); }
.area-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); margin-top: 16px; }
.area-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.area-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.area-stat b { display: block; font-family: var(--font-display); font-size: 1.45rem; color: var(--teal); }
.area-stat span { font-size: 13px; color: var(--muted); }
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: var(--body); }
.prose h2 { font-size: 1.8rem; margin: 34px 0 14px; }
.prose h3 { font-size: 1.3rem; margin: 26px 0 10px; }
.prose ul { margin: 0 0 18px 20px; color: var(--body); }
.prose ul li { margin-bottom: 8px; }
.nearby-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.nearby-links a { padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink); transition: all .2s; }
.nearby-links a:hover { border-color: var(--teal); color: var(--teal-d); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner, .value-inner, .about { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; }
  .hero-photos { min-height: 380px; margin-top: 10px; }
  .options-grid, .quotes, .steps { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-stats { grid-template-columns: repeat(2, 1fr); }
  .value-band, .cta-band { padding: 40px 28px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 90px 28px; gap: 22px; transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: var(--shadow); }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; }
  .nav-phone span { display: none; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .options-grid, .quotes, .steps, .areas-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 112px 0 50px; }
  .float-chip { display: none; }
  .hero-photo-main { width: 80%; }
  .hero-photo-home { width: 60%; }
  .mobile-callbar { display: flex; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto; } .reveal { opacity: 1; transform: none; } }

/* ===================== Seller Audit ===================== */
.audit-body { background: var(--paper); }
.audit-main { min-height: 100vh; padding: 96px 0 80px; }
.audit-wrap { max-width: 680px; }
.audit-back { display: inline-block; font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 22px; }
.audit-back:hover { color: var(--teal-d); }
.audit-progress { height: 7px; background: var(--paper2); border-radius: 999px; overflow: hidden; }
.audit-bar { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-d)); border-radius: 999px; transition: width .4s var(--ease); }
.audit-step-meta { font-size: 13px; font-weight: 600; color: var(--muted); margin: 12px 0 18px; letter-spacing: .03em; }
.audit-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.audit-q { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.audit-sub { color: var(--body); margin-top: 12px; font-size: 1.02rem; }
.audit-card .field { margin-top: 22px; }
.audit-card .field input.err { border-color: #c2563f; box-shadow: 0 0 0 3px rgba(194,86,63,.12); }
.audit-options { display: grid; gap: 12px; margin-top: 24px; }
.audit-option { position: relative; text-align: left; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px 52px 18px 20px; cursor: pointer; transition: all .18s var(--ease); display: block; width: 100%; font-family: var(--font-body); }
.audit-option:hover { border-color: var(--teal); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.audit-option.selected { border-color: var(--teal); background: var(--teal-soft); }
.ao-main { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.ao-desc { display: block; font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.ao-check { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: #fff; transition: all .18s; }
.ao-check svg { width: 15px; height: 15px; opacity: 0; }
.audit-option:hover .ao-check { border-color: var(--teal); }
.audit-option.selected .ao-check { background: var(--teal); border-color: var(--teal); }
.audit-option.selected .ao-check svg { opacity: 1; }
.audit-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.audit-prev { display: inline-block; margin-top: 20px; background: none; border: none; color: var(--muted); font-weight: 600; font-size: 14px; cursor: pointer; font-family: var(--font-body); }
.audit-prev:hover { color: var(--teal-d); }

/* Report / Snapshot */
.report { max-width: 860px; }
.snap-head h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: 14px; }
.snap-rec { background: linear-gradient(140deg, var(--teal), var(--teal-d)); color: #fff; border-radius: var(--radius-lg); padding: 40px; margin-top: 28px; box-shadow: var(--shadow-warm); }
.snap-rec-tag { font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.snap-rec h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-top: 8px; }
.snap-rec p { color: #eafff7; margin-top: 14px; font-size: 1.08rem; line-height: 1.7; }
.snap-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 26px; }
.snap-rec .snap-cta .btn-primary { background: #fff; color: var(--teal-d); box-shadow: 0 14px 30px -12px rgba(0,0,0,.35); }
.snap-num { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; }
.snap-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.snap-path { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; opacity: .72; }
.snap-path.rec { opacity: 1; border-color: var(--teal); box-shadow: var(--shadow); }
.snap-badge { position: absolute; top: -11px; left: 24px; background: var(--teal); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.snap-path h3 { font-size: 1.2rem; margin-top: 4px; }
.snap-tag { display: block; font-size: 13px; font-weight: 700; color: var(--teal-d); margin: 4px 0 10px; }
.snap-path p { font-size: 14px; color: var(--body); }
.snap-recap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-top: 24px; }
.snap-recap h3 { font-size: 1.15rem; margin-bottom: 14px; }
.snap-recap ul { list-style: none; display: grid; gap: 10px; }
.snap-recap li { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line-soft); padding-bottom: 10px; font-size: 14.5px; }
.snap-recap li span { color: var(--muted); }
.snap-recap li b { color: var(--ink); font-family: var(--font-display); text-align: right; }
.snap-foot { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; margin-top: 24px; }
.snap-foot h2 { font-size: 1.5rem; }
.snap-foot p { margin-top: 12px; color: var(--body); }
.snap-disc { font-size: 12px; color: var(--muted); margin-top: 20px; text-align: center; }
@media (max-width: 720px) {
  .audit-card { padding: 26px; }
  .snap-rec, .snap-foot { padding: 26px; }
  .snap-paths { grid-template-columns: 1fr; }
}

/* Snapshot confirmation (replaces call CTA in the result) */
.snap-confirm { margin-top: 24px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); padding: 18px 20px; color: #eafff7; font-size: 15.5px; line-height: 1.6; }
.snap-confirm strong { color: #fff; }

/* Home Seller IQ — photo upload step */
.photo-drop { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; margin-top: 22px; padding: 40px 20px; border: 2px dashed var(--line); border-radius: var(--radius); background: var(--paper); color: var(--teal-d); cursor: pointer; transition: all .2s var(--ease); }
.photo-drop:hover { border-color: var(--teal); background: var(--teal-soft); }
.photo-drop svg { width: 40px; height: 40px; opacity: .7; }
.photo-drop span { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.photo-drop small { color: var(--muted); font-size: 13px; }
.photo-prev { margin-top: 16px; position: relative; }
.photo-prev img { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--radius); border: 5px solid #fff; box-shadow: var(--shadow); }
.photo-remove { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.6); color: #fff; border: none; border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
/* Photo in the result */
.snap-photo { margin: 24px 0 0; }
.snap-photo img { width: 100%; max-height: 360px; object-fit: cover; border-radius: var(--radius-lg); border: 6px solid #fff; box-shadow: var(--shadow); }
.snap-photo figcaption { text-align: center; color: var(--muted); font-size: 13px; margin-top: 10px; }
/* Google Places dropdown above the card */
.pac-container { z-index: 9999; border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--line); margin-top: 4px; font-family: var(--font-body); }

/* Address autocomplete dropdown (our own, styled to match) */
.ac-dd { position: absolute; left: 0; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); z-index: 50; overflow: hidden; }
.ac-item { display: block; width: 100%; text-align: left; background: none; border: none; padding: 13px 16px; font-family: var(--font-body); font-size: 15px; color: var(--ink); cursor: pointer; border-bottom: 1px solid var(--line-soft); }
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: var(--teal-soft); color: var(--teal-d); }
