:root {
  --ink: #0b1118;
  --ink-2: #17202a;
  --ink-3: #24303d;
  --cream: #f5f0e5;
  --cream-2: #ebe1cf;
  --paper: #fbf8f2;
  --white: #fff;
  --gold: #c89d5d;
  --gold-light: #e8c98f;
  --gold-dark: #866332;
  --muted: #68717b;
  --line: rgba(11,17,24,.13);
  --soft-line: rgba(255,255,255,.09);
  --shadow: 0 28px 80px rgba(5,10,16,.2);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1200px, calc(100% - 44px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: white; padding: 12px 18px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 60; transition: .25s ease; }
.site-header.scrolled { background: rgba(8,14,21,.92); backdrop-filter: blur(18px); box-shadow: 0 10px 40px rgba(0,0,0,.14); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: white; }
.brand-mark { width: 42px; height: 42px; color: var(--gold); display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-type strong { display: block; font-size: 13px; line-height: 1.1; letter-spacing: .19em; }
.brand-type small { display: block; margin-top: 5px; font-size: 9px; color: rgba(255,255,255,.58); letter-spacing: .16em; }
.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav a { color: rgba(255,255,255,.75); font-size: 13px; font-weight: 750; }
.main-nav a:hover { color: white; }
.nav-cta { border: 1px solid rgba(255,255,255,.24); padding: 10px 16px; border-radius: 999px; }
.nav-toggle { display: none; border: 0; background: transparent; color: white; font-size: 28px; cursor: pointer; }

.hero {
  min-height: 830px;
  color: white;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 142px 0 115px;
  background:
    radial-gradient(circle at 77% 18%, rgba(200,157,93,.16), transparent 26%),
    linear-gradient(124deg, #080d13 0%, #111a24 52%, #0e151d 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.architectural-lines { position: absolute; width: 520px; height: 520px; right: -110px; top: 40px; border: 1px solid rgba(232,201,143,.09); transform: rotate(45deg); }
.architectural-lines::before, .architectural-lines::after { content: ""; position: absolute; inset: 54px; border: 1px solid rgba(232,201,143,.07); }
.architectural-lines::after { inset: 112px; }
.sun-disc { position: absolute; width: 420px; height: 420px; border-radius: 50%; right: 4%; top: 14%; background: radial-gradient(circle at 40% 35%, rgba(232,201,143,.14), rgba(200,157,93,.025) 65%, transparent 66%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: 11px; font-weight: 850; letter-spacing: .2em; }
.eyebrow.dark { color: var(--gold-dark); }
.hero h1, .section h2, .cta-section h2, .valuation-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 { font-size: clamp(58px, 6.7vw, 94px); margin: 0 0 28px; max-width: 770px; }
.hero h1 span { color: var(--gold-light); }
.hero-lead { max-width: 690px; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.72; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border-radius: 999px; font-weight: 850; font-size: 13px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; border: 0; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #0b1118; box-shadow: 0 14px 36px rgba(200,157,93,.2); }
.btn-primary:hover { background: #d3aa6c; }
.btn-secondary { border: 1px solid rgba(255,255,255,.23); color: white; background: rgba(255,255,255,.035); }
.btn-secondary:hover { background: rgba(255,255,255,.075); }
.btn-ink { background: var(--ink); color: white; }
.btn-outline-ink { border: 1px solid rgba(11,17,24,.18); background: transparent; color: var(--ink); }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; color: rgba(255,255,255,.48); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; }
.trust-row i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.hero-visual { position: relative; width: min(440px, 100%); justify-self: end; padding: 18px 22px 36px; }
.portrait-shell { position: relative; }
.portrait-arch { height: 530px; overflow: hidden; border-radius: 230px 230px 26px 26px; background: linear-gradient(150deg, #313d49, #161f28); border: 1px solid rgba(255,255,255,.11); box-shadow: var(--shadow); position: relative; }
.portrait-arch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,10,15,.22), transparent 36%); pointer-events: none; }
.portrait-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; filter: saturate(.8) contrast(1.04); }
.portrait-fallback { display: none; width: 100%; height: 100%; place-items: center; align-content: center; gap: 8px; color: var(--gold-light); }
.portrait-fallback span { font-family: Georgia, serif; font-size: 112px; line-height: 1; }
.portrait-fallback small { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.identity-card { position: relative; margin: -34px 22px 0; z-index: 2; background: #f7f1e7; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 20px; border-radius: 16px; box-shadow: 0 18px 46px rgba(0,0,0,.23); }
.identity-card p { margin: 0; font-family: Georgia, serif; font-size: 23px; }
.identity-card > div:first-child span { color: var(--muted); font-size: 11px; }
.rating-pill { text-align: right; white-space: nowrap; }
.rating-pill strong { display: block; font-family: Georgia, serif; font-size: 25px; line-height: 1; }
.rating-pill span { display: block; color: #a47836; font-size: 9px; letter-spacing: .06em; margin-top: 4px; }
.micro-card { position: absolute; z-index: 3; min-width: 146px; padding: 13px 15px; border-radius: 14px; color: var(--ink); background: rgba(248,244,236,.96); box-shadow: 0 14px 35px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.micro-card strong { display: block; font-family: Georgia, serif; font-size: 24px; line-height: 1; }
.micro-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.micro-card-top { right: -38px; top: 92px; }
.micro-card-bottom { left: -34px; bottom: 108px; }
.hero-bottom-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,157,93,.5), transparent); }

.proof-band { background: #080d13; color: white; border-bottom: 1px solid rgba(255,255,255,.06); }
.proof-grid { display: grid; grid-template-columns: repeat(5,1fr); }
.proof-grid > div { padding: 29px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { display: block; font-family: Georgia, serif; color: var(--gold-light); font-size: 29px; font-weight: 500; line-height: 1.05; }
.proof-grid span { display: block; margin-top: 7px; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .075em; }

.section { padding: 110px 0; }
.section h2, .cta-section h2, .valuation-band h2 { font-size: clamp(43px, 5.2vw, 69px); margin: 0; }
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 92px; align-items: start; }
.intro-copy { max-width: 580px; margin: 26px 0 0; color: #4c5660; font-size: 17px; }
.about-stack { display: grid; gap: 14px; }
.about-card { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.44); }
.about-card.featured { background: var(--ink); color: white; border-color: var(--ink); box-shadow: 0 20px 50px rgba(11,17,24,.12); }
.icon-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(11,17,24,.14); font-size: 10px; font-weight: 900; color: var(--gold-dark); }
.about-card.featured .icon-mark { border-color: rgba(255,255,255,.12); color: var(--gold-light); }
.about-card h3 { margin: 0 0 7px; font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.about-card p { margin: 0; color: #66717c; font-size: 14px; }
.about-card.featured p { color: rgba(255,255,255,.58); }

.services-section { background: var(--ink); color: white; }
.section-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.section-head > p { margin: 0 0 8px; color: rgba(255,255,255,.59); font-size: 16px; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.service-card { min-height: 328px; display: flex; flex-direction: column; padding: 27px; background: rgba(255,255,255,.038); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(200,157,93,.45); background: rgba(255,255,255,.055); }
.service-num { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .17em; }
.service-card h3 { font-family: Georgia, serif; font-size: 40px; line-height: 1; font-weight: 500; margin: 36px 0 15px; }
.service-card p { margin: 0; color: rgba(255,255,255,.56); font-size: 14px; }
.service-card a { margin-top: auto; padding-top: 24px; color: var(--gold-light); font-size: 12px; font-weight: 850; }

.process-section { background: #ece3d4; }
.process-title { max-width: 820px; margin-bottom: 52px; }
.process-track { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.process-track::before { content: ""; position: absolute; top: 22px; left: 7%; right: 7%; height: 1px; background: rgba(11,17,24,.18); }
.process-step { position: relative; padding: 0 26px 0 0; }
.process-step span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; position: relative; z-index: 2; background: var(--ink); color: var(--gold-light); font-weight: 900; font-size: 12px; }
.process-step h3 { margin: 26px 0 10px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.process-step p { color: #626b74; font-size: 14px; max-width: 230px; }

.valuation-band { padding: 82px 0; background: linear-gradient(120deg, #111a24, #0c1219); color: white; }
.valuation-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 75px; align-items: center; }
.valuation-grid h2 { font-size: clamp(38px, 4.3vw, 58px); }
.valuation-grid p:not(.eyebrow) { color: rgba(255,255,255,.58); max-width: 650px; }
.valuation-form { padding: 28px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: 20px; }
.valuation-form label { display: block; margin-bottom: 9px; color: var(--gold-light); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.valuation-input-wrap { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.valuation-input-wrap input { min-width: 0; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; background: white; padding: 0 18px; min-height: 52px; outline: none; }
.valuation-form small { display: block; margin-top: 12px; color: rgba(255,255,255,.4); font-size: 10px; }

.areas-section { background: var(--paper); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.areas-copy p:not(.eyebrow) { color: #58626c; font-size: 17px; max-width: 620px; }
.area-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.text-link { font-weight: 850; color: var(--gold-dark); font-size: 13px; }
.area-map-card { min-height: 500px; border-radius: 28px; position: relative; overflow: hidden; background: linear-gradient(145deg, #d8c6a8 0%, #eadcc7 56%, #d3bd9d 100%); box-shadow: 0 22px 60px rgba(56,43,25,.12); }
.map-sun { position: absolute; width: 250px; height: 250px; border-radius: 50%; right: -40px; top: -45px; background: rgba(248,229,187,.7); }
.az-mark { position: absolute; width: 59%; height: 74%; left: 19%; top: 13%; color: rgba(11,17,24,.9); filter: drop-shadow(0 22px 35px rgba(0,0,0,.16)); }
.area-pins { position: absolute; inset: 0; }
.area-pins span { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%,-50%); padding: 7px 10px 7px 21px; border-radius: 999px; background: rgba(250,246,237,.93); box-shadow: 0 7px 20px rgba(0,0,0,.14); font-size: 10px; font-weight: 850; white-space: nowrap; }
.area-pins span::before { content: ""; position: absolute; width: 7px; height: 7px; background: var(--gold-dark); border-radius: 50%; left: 9px; top: 50%; transform: translateY(-50%); }

.reviews-section { background: #efe8dc; }
.review-summary { display: grid; grid-template-columns: .32fr .68fr; gap: 70px; align-items: center; margin-bottom: 48px; }
.big-rating { min-height: 190px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(11,17,24,.13); border-radius: 24px; background: rgba(255,255,255,.38); }
.big-rating strong { font-family: Georgia, serif; font-size: 70px; line-height: .9; font-weight: 500; }
.big-rating span { color: #9a7135; font-size: 14px; letter-spacing: .11em; margin-top: 9px; }
.big-rating small { margin-top: 7px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.review-summary p:not(.eyebrow) { color: #626c75; max-width: 720px; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { min-height: 230px; position: relative; margin: 0; padding: 29px; border-radius: 19px; background: var(--white); border: 1px solid rgba(11,17,24,.1); box-shadow: 0 12px 35px rgba(11,17,24,.045); }
.quote-mark { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 50px; line-height: .7; }
.review-card p { font-family: Georgia, serif; font-size: 22px; line-height: 1.3; }
.review-card footer { color: var(--muted); font-size: 11px; }
.review-link-wrap { display: flex; justify-content: center; margin-top: 32px; }

.cta-section { padding: 105px 0; background: linear-gradient(135deg, #080d13, #131d27); color: white; }
.cta-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 82px; align-items: start; }
.cta-copy > p:not(.eyebrow) { color: rgba(255,255,255,.6); font-size: 17px; max-width: 540px; }
.contact-stack { display: grid; gap: 13px; margin-top: 34px; }
.contact-stack a { padding: 13px 0 0; border-top: 1px solid rgba(255,255,255,.09); }
.contact-stack span { display: block; color: var(--gold-light); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.contact-stack strong { display: block; margin-top: 4px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; word-break: break-word; }
.license-card { margin-top: 35px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(255,255,255,.035); }
.license-card span, .license-card small { display: block; color: rgba(255,255,255,.44); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.license-card strong { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 24px; font-weight: 500; margin: 2px 0; }
.contact-form { background: #f8f3ea; color: var(--ink); border-radius: 23px; padding: 30px; box-shadow: var(--shadow); }
.form-head { margin-bottom: 20px; }
.form-head span { display: block; font-family: Georgia, serif; font-size: 27px; }
.form-head small { display: block; color: var(--muted); font-size: 11px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: block; margin-bottom: 13px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .085em; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; padding: 12px 13px; background: white; border: 1px solid rgba(11,17,24,.14); border-radius: 10px; outline: none; text-transform: none; letter-spacing: normal; font-weight: 500; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #a78247; box-shadow: 0 0 0 3px rgba(200,157,93,.16); }
.full { width: 100%; }
.form-note { display: block; margin-top: 12px; color: var(--muted); font-size: 10px; line-height: 1.45; }

.site-footer { background: #060a0f; color: rgba(255,255,255,.55); padding: 52px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.footer-brand { width: max-content; }
.site-footer p { font-size: 11px; }
.footer-meta { text-align: right; }
.source-note { opacity: .7; }

.mobile-contact-bar { display: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
  .hero-grid, .about-grid, .areas-grid, .cta-grid, .valuation-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding-top: 128px; }
  .hero-visual { justify-self: start; width: min(420px, 76vw); margin-left: 4vw; }
  .proof-grid { grid-template-columns: repeat(3,1fr); }
  .proof-grid > div:nth-child(3) { border-right: 0; }
  .proof-grid > div:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.07); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .process-track { grid-template-columns: repeat(2,1fr); gap: 36px 18px; }
  .process-track::before { display: none; }
  .review-summary { grid-template-columns: .4fr .6fr; gap: 42px; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

@media (max-width: 800px) {
  body { padding-bottom: 62px; }
  .container { width: min(100% - 28px, 1200px); }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 74px; left: 14px; right: 14px; display: none; padding: 18px; background: rgba(9,15,22,.985); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; flex-direction: column; align-items: stretch; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 8px 4px; }
  .nav-cta { text-align: center; }
  .brand-type strong { font-size: 11px; }
  .brand-type small { font-size: 7px; }
  .hero { min-height: auto; padding-bottom: 92px; }
  .hero h1 { font-size: clamp(48px, 14.5vw, 70px); }
  .hero-lead { font-size: 16px; }
  .hero-visual { width: min(350px, 86vw); margin: 0 auto; }
  .portrait-arch { height: 430px; }
  .micro-card-top { right: -12px; }
  .micro-card-bottom { left: -10px; bottom: 100px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { border-top: 1px solid rgba(255,255,255,.07); }
  .proof-grid > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .proof-grid > div:nth-child(even) { border-right: 0; }
  .proof-grid > div:first-child, .proof-grid > div:nth-child(2) { border-top: 0; }
  .proof-grid > div:last-child { grid-column: 1 / -1; }
  .section { padding: 78px 0; }
  .section h2, .cta-section h2, .valuation-band h2 { font-size: 42px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .service-grid, .process-track, .form-two { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .valuation-input-wrap { grid-template-columns: 1fr; }
  .valuation-input-wrap input { min-height: 50px; }
  .area-map-card { min-height: 390px; }
  .review-summary { grid-template-columns: 1fr; gap: 28px; }
  .big-rating { min-height: 165px; }
  .cta-section { padding: 78px 0; }
  .contact-form { padding: 22px; }
  .mobile-contact-bar { position: fixed; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; z-index: 100; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,.18); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.1); }
  .mobile-contact-bar a { display: grid; place-items: center; min-height: 62px; background: #0b1118; color: white; font-weight: 850; font-size: 12px; }
  .mobile-contact-bar a:last-child { background: var(--gold); color: var(--ink); }
}

@media (max-width: 480px) {
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .micro-card { min-width: 126px; }
  .micro-card strong { font-size: 21px; }
  .identity-card { margin-inline: 12px; padding: 15px 16px; }
  .identity-card p { font-size: 19px; }
  .rating-pill strong { font-size: 21px; }
  .proof-grid strong { font-size: 24px; }
  .about-card { grid-template-columns: 1fr; }
  .area-actions { align-items: stretch; flex-direction: column; }
  .area-actions .btn { width: 100%; }
}

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


/* V3 lead-routing enhancements */
.service-links { margin-top: auto; padding-top: 24px; display: grid; gap: 8px; }
.service-card .service-links a { margin-top: 0; padding-top: 0; }
.service-card .service-direct { color: rgba(255,255,255,.68); font-size: 11px; }
.service-card .service-direct:hover { color: white; }
.valuation-form h3 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.valuation-form p { margin: 0 0 18px; color: rgba(255,255,255,.62); }
.valuation-kicker { color: var(--gold-light) !important; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.valuation-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 10px; }
.valuation-form > small { display: block; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.45; }
.direct-contact-card { display: block; }
.direct-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-method { display: block; min-height: 142px; padding: 18px; border-radius: 15px; border: 1px solid rgba(11,17,24,.12); background: white; color: var(--ink); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.contact-method:hover { transform: translateY(-2px); border-color: rgba(167,130,71,.55); box-shadow: 0 10px 28px rgba(11,17,24,.08); }
.contact-method.primary { background: var(--ink); color: white; border-color: var(--ink); }
.contact-method span { display: block; color: var(--gold-dark); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.contact-method.primary span { color: var(--gold-light); }
.contact-method strong { display: block; margin-top: 8px; font-family: Georgia, serif; font-size: 20px; line-height: 1.15; font-weight: 500; word-break: break-word; }
.contact-method small { display: block; margin-top: 9px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.contact-method.primary small { color: rgba(255,255,255,.58); }
.contact-search-row { display: grid; gap: 12px; margin-top: 18px; text-align: center; }
.site-footer .source-note a { color: var(--gold-light); }
@media (max-width: 800px) {
  .direct-contact-grid { grid-template-columns: 1fr; }
  .contact-method { min-height: auto; }
  .valuation-actions { display: grid; }
  .valuation-actions .btn { width: 100%; }
}

/* V4 direct text-lead capture */
.text-lead-modal {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #f8f3ea;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.text-lead-modal::backdrop { background: rgba(4,8,12,.72); backdrop-filter: blur(5px); }
.text-lead-form { position: relative; padding: 34px; }
.text-lead-close {
  position: absolute; right: 16px; top: 14px; width: 42px; height: 42px;
  border: 0; border-radius: 999px; background: rgba(11,17,24,.07); color: var(--ink);
  font-size: 25px; line-height: 1; cursor: pointer;
}
.text-lead-form h2 { margin: 6px 46px 10px 0; font-family: Georgia, serif; font-size: clamp(34px, 6vw, 50px); line-height: 1; font-weight: 500; }
.text-lead-intro { margin: 0 0 22px; color: var(--muted); line-height: 1.6; }
.text-lead-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.text-lead-fields label { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.text-lead-fields input, .text-lead-fields textarea {
  width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid rgba(11,17,24,.15);
  border-radius: 11px; background: white; color: var(--ink); font: inherit; font-size: 16px;
  text-transform: none; letter-spacing: normal; outline: none; box-sizing: border-box;
}
.text-lead-fields input:focus, .text-lead-fields textarea:focus { border-color: #a78247; box-shadow: 0 0 0 3px rgba(200,157,93,.16); }
.text-lead-message { grid-column: 1 / -1; }
.text-lead-error { min-height: 20px; margin: 10px 0 4px; color: #9c3029; font-size: 12px; font-weight: 700; }
.text-lead-email { display: block; margin-top: 15px; text-align: center; color: var(--gold-dark); font-size: 12px; font-weight: 800; }
.text-lead-note { display: block; margin-top: 15px; color: var(--muted); font-size: 10px; line-height: 1.55; text-align: center; }
.text-lead-note strong { color: var(--ink); }
body.modal-open { overflow: hidden; }
@media (max-width: 620px) {
  .text-lead-form { padding: 27px 20px 24px; }
  .text-lead-fields { grid-template-columns: 1fr; }
  .text-lead-message { grid-column: auto; }
}

/* V5 on-site lead capture */
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.seller-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.seller-points span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; }
.seller-review-form { position: relative; }
.seller-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.seller-form-grid label { display: block; color: var(--gold-light); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.seller-form-grid input, .seller-form-grid select, .seller-form-grid textarea { width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: white; color: var(--ink); font: inherit; font-size: 16px; text-transform: none; letter-spacing: normal; outline: none; box-sizing: border-box; }
.seller-form-grid input:focus, .seller-form-grid select:focus, .seller-form-grid textarea:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(200,157,93,.16); }
.seller-notes { grid-column: 1 / -1; }
.website-lead-form { position: relative; }
.lead-status { min-height: 20px; margin: 8px 0 10px; font-size: 12px; font-weight: 750; line-height: 1.45; }
.lead-status.is-working { color: #8a6a37; }
.lead-status.is-success { color: #2e6b49; }
.lead-status.is-error { color: #9c3029; }
.valuation-form .lead-status.is-success { color: #b9e5c8; }
.valuation-form .lead-status.is-error { color: #ffb7b1; }
.lead-form button[disabled] { opacity: .62; cursor: wait; }
@media (max-width: 700px) {
  .seller-form-grid { grid-template-columns: 1fr; }
  .seller-notes { grid-column: auto; }
}
section[id],article[id]{scroll-margin-top:100px}
.intent-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:24px 0;max-width:520px}
.intent-links a{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:15px 18px;border:1px solid rgba(232,201,143,.35);border-radius:10px;color:var(--cream);background:rgba(255,255,255,.035);font-size:14px}
.intent-links a:hover{background:rgba(200,157,93,.15);border-color:var(--gold-light)}
.intent-links span{color:var(--gold-light)}
.seller-details{margin-top:18px;border-top:1px solid rgba(255,255,255,.18);padding-top:14px}
.seller-details summary{cursor:pointer;color:var(--gold-light);font-size:14px;padding:8px 0}
.seller-details summary span{color:var(--cream-2);font-size:12px}
.seller-details[open] .seller-form-grid{margin-top:14px}
.review-caption{display:block;font-size:10px;letter-spacing:.12em;color:var(--gold-dark);margin-bottom:18px}
:focus-visible{outline:3px solid var(--gold);outline-offset:5px}
body.modal-open .mobile-contact-bar{visibility:hidden}
@media(max-width:620px){.intent-links a{padding:14px 12px;font-size:13px}.mobile-contact-bar{padding-bottom:max(10px,env(safe-area-inset-bottom))}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}.reveal{opacity:1!important;transform:none!important}}
.buyer-section{background:var(--cream)}
.buyer-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center}
.buyer-grid h2{font-family:Georgia,serif;font-weight:400;font-size:clamp(34px,4vw,56px);line-height:1.12;margin:16px 0 24px}
.buyer-caption{font-size:12px;color:var(--muted);margin-top:22px}
.buyer-steps article{display:flex;gap:20px;padding:22px 0;border-bottom:1px solid var(--line)}
.buyer-steps article>span{color:var(--gold-dark);font-family:Georgia,serif;font-size:26px}
.buyer-steps h3{margin:0 0 8px;font-size:19px}.buyer-steps p{margin:0;color:var(--muted)}
.buyer-steps>.text-link{display:inline-block;margin-top:24px}
@media(max-width:800px){.buyer-grid{grid-template-columns:1fr;gap:28px}}
.measurement-choice{position:fixed;z-index:80;bottom:85px;left:20px;max-width:440px;padding:20px;background:var(--paper);color:var(--ink);border:1px solid var(--gold);border-radius:14px;box-shadow:var(--shadow)}
.measurement-choice[hidden]{display:none}.measurement-choice p{margin:0 0 12px;font-size:14px}.measurement-choice a{text-decoration:underline}.measurement-choice button{padding:10px 18px;margin-right:10px;border:1px solid var(--gold-dark);border-radius:6px;background:var(--ink);color:white;cursor:pointer}
#privacy summary{cursor:pointer;font-weight:700}#privacy p{max-width:850px}body.modal-open .measurement-choice{display:none}
@media(max-width:500px){.measurement-choice{left:12px;right:12px;bottom:80px}}
