:root {
  --ink: #111111;
  --ink-soft: #555555;
  --paper: #f7f7f7;
  --white: #ffffff;
  --cream: #f1f1f1;
  --copper: #b5121b;
  --copper-dark: #8f0f17;
  --sage: #eeeeee;
  --line: rgba(17, 17, 17, .14);
  --shadow: 0 24px 70px rgba(17, 17, 17, .14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -70px; z-index: 999; padding: 12px 16px; background: var(--white); color: var(--ink); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(17,17,17,.07); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { display: block; width: 58px; height: 58px; object-fit: contain; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50% 50% 46% 54% / 48% 42% 58% 52%; background: var(--ink); color: var(--white); font-family: var(--serif); font-weight: 700; letter-spacing: -.04em; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.08rem; }
.brand-text small { margin-top: 4px; color: var(--ink-soft); font-size: .69rem; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-size: .92rem; font-weight: 600; }
.site-nav a:not(.nav-phone) { position: relative; }
.site-nav a:not(.nav-phone)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--copper); transition: right .2s; }
.site-nav a:not(.nav-phone):hover::after { right: 0; }
.nav-phone { padding: 11px 16px; border: 1px solid var(--ink); border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.hero { position: relative; overflow: hidden; min-height: 790px; padding: 192px 0 90px; background: var(--white); }
.hero-pattern { position: absolute; inset: 0; opacity: .65; background-image: radial-gradient(circle at 16% 24%, rgba(177,18,38,.14) 0 1px, transparent 1.5px), radial-gradient(circle at 76% 38%, rgba(17,17,17,.12) 0 1px, transparent 1.5px); background-size: 27px 27px, 39px 39px; mask-image: linear-gradient(to right, #000 0, transparent 45%, #000 100%); }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -100px; top: 100px; border: 1px solid rgba(17,17,17,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.26), 0 0 0 140px rgba(17,17,17,.025); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--copper-dark); font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.035em; line-height: 1.04; }
h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(3.35rem, 6.5vw, 6.35rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.7vw, 4.2rem); }
h3 { line-height: 1.25; }
.hero-lede { max-width: 650px; margin: 0 0 34px; color: var(--ink-soft); font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; box-shadow: 0 12px 26px rgba(0,0,0,.18); }
.button-primary:hover { background: #2b2b2b; box-shadow: 0 18px 34px rgba(0,0,0,.22); }
.button-accent { background: var(--copper); color: white; box-shadow: 0 12px 28px rgba(177,18,38,.24); }
.button-accent:hover { background: var(--copper-dark); box-shadow: 0 18px 34px rgba(177,18,38,.3); }
.button-ghost { border-color: rgba(17,17,17,.28); background: rgba(255,255,255,.3); }
.button-ghost:hover { background: var(--white); }
.button-light { background: var(--white); color: var(--ink); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust-row span { color: var(--ink-soft); font-size: .82rem; line-height: 1.35; }
.trust-row strong { display: block; color: var(--ink); font-size: 1rem; }

.hero-visual { position: relative; min-height: 520px; }
.portrait-shell { position: absolute; right: 20px; top: 0; width: min(430px, 100%); aspect-ratio: 4 / 5; }
.portrait-backdrop { position: absolute; inset: 0 0 55px 42px; background: var(--sage); border-radius: 48% 52% 38% 62% / 40% 42% 58% 60%; transform: rotate(2deg); box-shadow: var(--shadow); }
.portrait-shell img { position: absolute; right: 0; top: 34px; width: 76%; aspect-ratio: 1; object-fit: cover; object-position: center 36%; border-radius: 50% 50% 42% 58% / 45% 44% 56% 55%; border: 12px solid rgba(255,255,255,.82); box-shadow: 0 22px 58px rgba(17,17,17,.16); }
.badge-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--paper); color: var(--copper); font-size: 1.4rem; }

.proof-strip { position: relative; z-index: 5; background: var(--ink); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { min-height: 145px; padding: 30px 28px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.12); }
.proof-grid div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.proof-grid strong { font-family: var(--serif); font-size: 2rem; }
.proof-grid span { max-width: 190px; color: rgba(255,255,255,.7); font-size: .78rem; line-height: 1.4; }

.two-column { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.section-heading p:not(.eyebrow) { max-width: 590px; color: var(--ink-soft); }
.section-heading.centered { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-heading.centered p:not(.eyebrow) { margin-inline: auto; }
.about { background: var(--white); }
.about-copy .lead { margin-top: 0; color: var(--ink); font-family: var(--serif); font-size: 1.65rem; line-height: 1.45; }
.about-copy > p:not(.lead) { color: var(--ink-soft); }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 38px; }
.detail-grid div { padding: 20px 0; border-top: 1px solid var(--line); }
.detail-grid span { display: block; margin-bottom: 7px; color: var(--copper-dark); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.detail-grid strong { display: block; font-size: .92rem; line-height: 1.45; }

.services { background: var(--paper); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.four-up { grid-template-columns: repeat(4, 1fr); }
.service-card-hero { border-top: 4px solid var(--copper); box-shadow: 0 18px 48px rgba(177,18,38,.08); }
.service-card-hero .service-number, .service-card-hero a { color: var(--copper-dark); }
.service-card { position: relative; min-height: 345px; padding: 34px; background: var(--white); border: 1px solid rgba(17,17,17,.08); border-radius: 18px; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-number { color: var(--copper); font-family: var(--serif); font-size: 1.1rem; }
.service-card h3 { margin: 65px 0 15px; font-family: var(--serif); font-size: 1.8rem; }
.service-card p { color: var(--ink-soft); font-size: .94rem; }
.service-card a { position: absolute; left: 34px; bottom: 30px; text-decoration: none; font-size: .82rem; font-weight: 700; }

.listings { background: var(--white); }

/* Clean visual handoff from the Homes for Heroes campaign into Recent Sales. */
.hero-stories + .listings {
  position: relative;
  padding-top: 148px;
}
.hero-stories + .listings::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  width: min(1160px, calc(100% - 40px));
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--copper) 12%, var(--copper) 88%, transparent 100%);
}
.listing-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 45px; }
.listing-heading h2 { margin-bottom: 0; }
.listing-intro { max-width: 620px; margin: 14px 0 0; color: var(--ink-soft); font-size: .94rem; }
.text-link { flex: none; padding-bottom: 8px; border-bottom: 1px solid var(--ink); text-decoration: none; font-size: .86rem; font-weight: 700; }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.listing-card { overflow: hidden; background: var(--paper); border-radius: 18px; border: 1px solid rgba(17,17,17,.08); }
.listing-image { position: relative; display: block; height: 260px; overflow: hidden; background: var(--cream); }
.listing-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.listing-card:hover .listing-image img { transform: scale(1.035); }
.listing-status { position: absolute; left: 18px; top: 18px; padding: 7px 11px; border-radius: 999px; background: var(--ink); color: white; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.listing-status.contingent { background: var(--copper); }
.listing-status.sold { background: var(--copper-dark); }
.sold-image { background: linear-gradient(145deg, #ede7da, #dfe7df); }
.sold-image img { object-fit: cover; }
.sale-date { position: absolute; right: 18px; bottom: 18px; padding: 7px 11px; border-radius: 999px; background: rgba(255,253,248,.94); color: var(--ink); box-shadow: 0 8px 24px rgba(17,17,17,.12); font-size: .68rem; font-weight: 700; letter-spacing: .04em; }
.sale-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.sale-meta span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.52); font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.sold-card { box-shadow: 0 12px 34px rgba(17,17,17,.06); transition: transform .25s, box-shadow .25s; }
.sold-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(17,17,17,.11); }
.listing-content { padding: 25px; }
.listing-price { margin: 0 0 5px; color: var(--copper-dark); font-size: 1.18rem; font-weight: 700; }
.listing-content h3 { margin: 0 0 2px; font-family: var(--serif); font-size: 1.35rem; }
.listing-content > p:not(.listing-price) { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.listing-facts { display: flex; flex-wrap: wrap; gap: 7px 13px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .77rem; }
.listing-facts span + span::before { content: "•"; margin-right: 13px; opacity: .45; }
.listing-note { margin: 24px 0 0; color: var(--ink-soft); font-size: .72rem; }
.listing-zillow-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--copper-dark); text-decoration: none; font-size: .78rem; font-weight: 700; }
.listing-zillow-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.reviews { position: relative; overflow: hidden; background: linear-gradient(145deg, #f5f2eb 0%, #fffdf8 52%, #edf1eb 100%); }
.reviews::before { content: ""; position: absolute; width: 430px; height: 430px; right: -180px; top: -210px; border: 1px solid rgba(17,17,17,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(17,17,17,.018), 0 0 0 140px rgba(177,18,38,.018); }
.reviews-heading { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 48px; }
.reviews-heading .section-heading { max-width: 720px; }
.reviews-heading h2 { margin-bottom: 18px; }
.zillow-rating { flex: none; display: grid; min-width: 205px; padding: 24px 26px; background: var(--ink); color: var(--white); border-radius: 18px; box-shadow: var(--shadow); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.zillow-rating:hover { transform: translateY(-4px); box-shadow: 0 30px 75px rgba(17,17,17,.2); }
.zillow-rating-score { font-family: var(--serif); font-size: 2.55rem; line-height: 1; }
.zillow-stars, .review-stars { color: #d88957; letter-spacing: .12em; }
.zillow-stars { margin-top: 9px; font-size: .9rem; }
.zillow-rating small { margin-top: 7px; color: rgba(255,255,255,.68); font-size: .72rem; }
.review-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { display: flex; flex-direction: column; min-height: 265px; padding: 30px; background: rgba(255,253,248,.86); border: 1px solid rgba(17,17,17,.1); border-radius: 18px; box-shadow: 0 16px 45px rgba(17,17,17,.07); transition: transform .25s, box-shadow .25s; }
.review-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(17,17,17,.12); }
.review-stars { font-size: .8rem; }
.review-card blockquote { flex: 1; margin: 38px 0 44px; font-family: var(--serif); font-size: 1.62rem; line-height: 1.35; letter-spacing: -.02em; }
.review-card footer { display: grid; gap: 4px; }
.review-card footer strong { font-size: .88rem; }
.review-card footer span { color: var(--ink-soft); font-size: .72rem; }
.reviews-footer { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 30px; }
.reviews-footer p { margin: 0; color: var(--ink-soft); font-size: .74rem; }

.heroes {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(177,18,38,.22), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(255,255,255,.045), transparent 30%),
    linear-gradient(135deg, #090909 0%, #151515 52%, #202020 100%);
  color: var(--white);
}
.heroes::before,
.heroes::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.heroes::before { width: 760px; height: 760px; right: -410px; top: -340px; box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012); }
.heroes::after { width: 430px; height: 430px; left: -300px; bottom: -250px; box-shadow: 0 0 0 70px rgba(177,18,38,.025); }
.heroes-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(15px); pointer-events: none; }
.heroes-glow-one { width: 360px; height: 360px; right: 8%; top: 15%; background: rgba(177,18,38,.12); }
.heroes-glow-two { width: 240px; height: 240px; left: 4%; bottom: 3%; background: rgba(255,255,255,.07); }
.heroes-starfield { position: absolute; inset: 0; z-index: -1; opacity: .26; background-image: radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.5px); background-size: 42px 42px; mask-image: linear-gradient(90deg, transparent 2%, #000 28%, #000 100%); }
.heroes-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(54px, 7vw, 100px); align-items: center; }
.heroes-copy { position: relative; z-index: 3; }
.heroes-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 7px 12px 7px 8px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.07); color: #ff9aa5; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.heroes-kicker-icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(145deg, #e45565, #b11226); color: #fff8f1; box-shadow: 0 8px 18px rgba(177,18,38,.28); }
.heroes-kicker-icon svg { width: 14px; height: 14px; }
.heroes h2 { max-width: 700px; margin-bottom: 25px; font-size: clamp(2.75rem, 5.1vw, 4.85rem); }
.heroes h2 em { color: #ef6674; font-weight: 600; }
.heroes-lede { max-width: 655px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.06rem; }
.hero-professions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin: 32px 0 34px; }
.profession-card { display: flex; align-items: center; gap: 12px; min-height: 74px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); box-shadow: inset 0 1px 0 rgba(255,255,255,.045); transition: transform .22s, border-color .22s, background .22s; }
.profession-card:hover { transform: translateY(-3px); border-color: rgba(239,102,116,.4); background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.05)); }
.profession-card-wide { grid-column: 1 / -1; }
.profession-icon { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(239,102,116,.12); color: #ef6674; }
.profession-icon svg { width: 22px; height: 22px; }
.profession-card > span:last-child { display: grid; line-height: 1.23; }
.profession-card strong { font-size: .85rem; }
.profession-card small { margin-top: 4px; color: rgba(255,255,255,.54); font-size: .69rem; }
.heroes-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.button-hero { gap: 10px; background: linear-gradient(135deg, #ef6674, #b11226); color: #fff; box-shadow: 0 17px 38px rgba(177,18,38,.29); }
.button-hero:hover { background: linear-gradient(135deg, #f37d89, #c9273b); box-shadow: 0 22px 42px rgba(177,18,38,.36); }
.heroes-call { display: grid; padding: 3px 0; text-decoration: none; line-height: 1.25; }
.heroes-call span { color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.heroes-call strong { margin-top: 4px; color: #fff; font-family: var(--serif); font-size: 1.08rem; }
.heroes-fineprint { max-width: 590px; margin: 22px 0 0; color: rgba(255,255,255,.4); font-size: .68rem; line-height: 1.5; }
.heroes-showcase { position: relative; min-height: 645px; display: grid; place-items: center; perspective: 1200px; }
.heroes-orbit { position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.heroes-orbit::before { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #ef6674; box-shadow: 0 0 24px rgba(239,102,116,.8); }
.heroes-orbit-large { width: 555px; height: 555px; border-style: dashed; animation: hero-orbit 38s linear infinite; }
.heroes-orbit-large::before { left: 66px; top: 49px; }
.heroes-orbit-small { width: 420px; height: 420px; opacity: .75; animation: hero-orbit-reverse 28s linear infinite; }
.heroes-orbit-small::before { right: 28px; bottom: 91px; width: 7px; height: 7px; background: var(--sage); }
.heroes-photo-card { position: relative; z-index: 3; width: min(468px, calc(100% - 54px)); aspect-ratio: 3 / 4; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; background: #1c1c1c; box-shadow: 0 46px 120px rgba(0,0,0,.43), inset 0 1px 0 rgba(255,255,255,.16); transform: rotateY(-4deg) rotateX(2deg); transition: transform .45s ease, box-shadow .45s ease; }
.heroes-photo-card:hover { transform: rotateY(0) rotateX(0) translateY(-7px); box-shadow: 0 58px 135px rgba(0,0,0,.49), inset 0 1px 0 rgba(255,255,255,.18); }
.heroes-photo-card::before { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; background: linear-gradient(120deg, transparent 17%, rgba(255,255,255,.12) 34%, transparent 49%); transform: translateX(-125%); animation: reward-shine 8s ease-in-out infinite; }
.heroes-photo-card > img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(.92) contrast(1.02); transition: transform .75s ease, filter .45s ease; }
.heroes-photo-card:hover > img { transform: scale(1.025); filter: saturate(1) contrast(1.03); }
.heroes-photo-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(4,18,21,.58) 0%, transparent 23%, transparent 60%, rgba(4,18,21,.9) 100%), linear-gradient(90deg, rgba(4,18,21,.16), transparent 32%, transparent 72%, rgba(4,18,21,.13)); }
.heroes-photo-header { position: absolute; z-index: 3; top: 18px; left: 18px; right: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 11px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(6,27,30,.58); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 28px rgba(0,0,0,.16); backdrop-filter: blur(13px); }
.heroes-photo-mark { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; background: linear-gradient(145deg, rgba(239,102,116,.32), rgba(177,18,38,.15)); color: #ff95a0; }
.heroes-photo-mark svg { width: 28px; height: 28px; }
.heroes-photo-heading { display: grid; line-height: 1.16; }
.heroes-photo-heading small { color: rgba(255,255,255,.58); font-size: .56rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.heroes-photo-heading strong { margin-top: 4px; color: #fff; font-family: var(--serif); font-size: .93rem; }
.heroes-photo-chip { padding: 7px 9px; border: 1px solid rgba(240,181,148,.45); border-radius: 999px; background: rgba(239,102,116,.14); color: #ffd6da; font-size: .55rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.heroes-photo-caption { position: absolute; z-index: 3; left: 26px; right: 26px; bottom: 58px; text-shadow: 0 2px 20px rgba(0,0,0,.38); }
.heroes-photo-caption .reward-overline { margin-bottom: 9px; color: #ffd2d7; }
.heroes-photo-caption h3 { max-width: 350px; margin: 0 0 9px; color: #fff; font-family: var(--serif); font-size: clamp(1.95rem, 3vw, 2.55rem); line-height: 1.02; }
.heroes-photo-caption > p:last-child { max-width: 340px; margin: 0; color: rgba(255,255,255,.72); font-size: .79rem; line-height: 1.55; }
.heroes-photo-footer { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: 9px; min-height: 42px; padding: 10px 24px; border-top: 1px solid rgba(255,255,255,.13); background: rgba(4,21,24,.66); color: rgba(255,255,255,.72); font-size: .66rem; font-weight: 650; letter-spacing: .04em; backdrop-filter: blur(12px); }
.hero-reward-card { position: relative; z-index: 3; width: min(435px, calc(100% - 52px)); overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: linear-gradient(155deg, rgba(255,255,255,.15), rgba(255,255,255,.055)); box-shadow: 0 42px 110px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.13); backdrop-filter: blur(16px); transform: rotateY(-4deg) rotateX(2deg); transition: transform .4s ease, box-shadow .4s ease; }
.hero-reward-card:hover { transform: rotateY(0) rotateX(0) translateY(-7px); box-shadow: 0 52px 125px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.15); }
.hero-reward-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 16%, rgba(255,255,255,.07) 33%, transparent 48%); transform: translateX(-120%); animation: reward-shine 7s ease-in-out infinite; }
.reward-card-header { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 20px 22px; border-bottom: 1px solid rgba(255,255,255,.11); background: rgba(5,24,27,.2); }
.reward-mark { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: linear-gradient(145deg, rgba(239,102,116,.22), rgba(177,18,38,.08)); color: #ef6674; }
.reward-mark svg { width: 34px; height: 34px; }
.reward-card-header > div:nth-child(2) { display: grid; line-height: 1.2; }
.reward-card-header span:not(.reward-seal) { color: rgba(255,255,255,.49); font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.reward-card-header strong { margin-top: 4px; font-family: var(--serif); font-size: 1.08rem; }
.reward-seal { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(239,102,116,.4); border-radius: 50%; color: #ef6674; font-family: var(--serif); font-size: .68rem; font-weight: 700; letter-spacing: .05em; }
.reward-card-body { padding: 31px 29px 26px; }
.reward-overline { margin: 0 0 12px; color: #ef6674; font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.reward-card-body h3 { max-width: 350px; margin-bottom: 16px; font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.55rem); line-height: 1.08; }
.reward-card-body > p:not(.reward-overline) { margin: 0; color: rgba(255,255,255,.62); font-size: .86rem; }
.reward-journey { display: grid; gap: 1px; margin-top: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(255,255,255,.08); }
.reward-step { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 11px; padding: 13px 15px; background: rgba(8,31,34,.7); }
.reward-step > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(239,102,116,.12); color: #ef6674; font-family: var(--serif); font-size: .72rem; font-weight: 700; }
.reward-step > div { display: grid; line-height: 1.2; }
.reward-step strong { font-size: .8rem; }
.reward-step small { margin-top: 4px; color: rgba(255,255,255,.48); font-size: .67rem; }
.reward-card-footer { display: flex; align-items: center; gap: 9px; padding: 15px 22px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(5,24,27,.35); color: rgba(255,255,255,.65); font-size: .68rem; font-weight: 600; letter-spacing: .04em; }
.reward-pulse { width: 8px; height: 8px; border-radius: 50%; background: #ef6674; box-shadow: 0 0 0 0 rgba(239,102,116,.5); animation: reward-pulse 2.4s ease-out infinite; }
@keyframes hero-orbit { to { transform: rotate(360deg); } }
@keyframes hero-orbit-reverse { to { transform: rotate(-360deg); } }
@keyframes reward-shine { 0%, 65% { transform: translateX(-120%); } 85%, 100% { transform: translateX(130%); } }
@keyframes reward-pulse { 70%, 100% { box-shadow: 0 0 0 9px rgba(239,102,116,0); } }

.areas { background: var(--paper); }
.area-cloud { display: flex; flex-wrap: wrap; gap: 12px; align-content: start; padding-top: 35px; }
.area-cloud span { padding: 12px 17px; border: 1px solid rgba(17,17,17,.16); border-radius: 999px; background: rgba(255,255,255,.44); font-size: .85rem; font-weight: 600; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.contact-details { display: grid; gap: 22px; margin-top: 38px; }
.contact-details a, .contact-details div { display: grid; text-decoration: none; }
.contact-details span { color: var(--copper-dark); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-details strong { margin-top: 5px; line-height: 1.45; }
.contact-form { padding: 34px; background: var(--paper); border-radius: 20px; box-shadow: 0 20px 60px rgba(17,17,17,.08); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; color: var(--ink); font-size: .76rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(17,17,17,.18); border-radius: 10px; background: var(--white); color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(177,18,38,.13); }
.contact-form textarea { resize: vertical; }
.form-submit { width: 100%; border: 0; }
.form-status { min-height: 1.5em; margin: 12px 0 0; color: var(--ink-soft); font-size: .76rem; text-align: center; }

.site-footer { padding: 54px 0; background: #101010; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 50px; align-items: start; }
.footer-brand .brand-mark { background: var(--white); color: var(--ink); }
.footer-brand .brand-text small { color: rgba(255,255,255,.55); }
.site-footer p { color: rgba(255,255,255,.55); font-size: .76rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.75); font-size: .82rem; }
.footer-links a:hover { color: white; }
.footer-legal { display: grid; gap: 12px; color: rgba(255,255,255,.52); font-size: .73rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }



/* Search-friendly FAQ content uses native details/summary so answers remain crawlable without JavaScript. */
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; background: var(--white); border: 1px solid rgba(17,17,17,.1); border-radius: 14px; box-shadow: 0 12px 34px rgba(17,17,17,.05); }
.faq-list summary { position: relative; padding: 22px 56px 22px 24px; list-style: none; cursor: pointer; font-family: var(--serif); font-size: 1.12rem; font-weight: 700; line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 23px; top: 50%; translate: 0 -50%; color: var(--copper-dark); font-family: var(--sans); font-size: 1.45rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 24px 24px; color: var(--ink-soft); font-size: .94rem; }
.faq-list details a { color: var(--copper-dark); font-weight: 700; }
.contact-details address { font-style: normal; }
.site-footer p a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; left: 20px; right: 20px; top: 108px; display: grid; gap: 0; padding: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); transform: translateY(-20px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 13px; }
  .site-nav a::after { display: none; }
  .nav-phone { margin-top: 8px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 165px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; max-width: 560px; width: 100%; margin-inline: auto; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid div:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); }
  .two-column, .contact-grid, .heroes-grid { grid-template-columns: 1fr; gap: 45px; }
  .heroes-showcase { min-height: 585px; max-width: 650px; width: 100%; margin-inline: auto; }
  .card-grid, .card-grid.four-up, .listing-grid, .review-grid { grid-template-columns: 1fr 1fr; }
  .listing-card:last-child, .review-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 11px); }
  .review-card:last-child { width: 100%; justify-self: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 72px; }
  .brand-text small { font-size: .61rem; }
  .hero { min-height: auto; padding: 154px 0 70px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .hero-actions .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr; gap: 15px; }
  .hero-visual { min-height: 430px; }
  .portrait-shell { right: 0; }
  .portrait-shell img { width: 74%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { min-height: 105px; border-right: 1px solid rgba(255,255,255,.12); }
  .detail-grid, .card-grid, .card-grid.four-up, .listing-grid, .review-grid, .form-row { grid-template-columns: 1fr; }
  .listing-card:last-child, .review-card:last-child { grid-column: auto; max-width: none; }
  .review-card:last-child { justify-self: stretch; }
  .listing-heading, .reviews-heading, .reviews-footer { align-items: start; flex-direction: column; }
  .service-card { min-height: 320px; }
  .hero-professions { grid-template-columns: 1fr; }
  .profession-card-wide { grid-column: auto; }
  .heroes-actions { align-items: flex-start; flex-direction: column; }
  .heroes-showcase { min-height: 505px; }
  .heroes-orbit-large { width: 430px; height: 430px; }
  .heroes-orbit-small { width: 330px; height: 330px; }
  .heroes-photo-card { width: min(430px, calc(100% - 24px)); transform: none; }
  .heroes-photo-header { left: 14px; right: 14px; top: 14px; }
  .heroes-photo-caption { left: 22px; right: 22px; }
  .heroes-starfield { opacity: .18; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { grid-column: auto; grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .heroes-kicker { letter-spacing: .11em; font-size: .63rem; }
  .heroes h2 { font-size: 2.65rem; }
  .heroes-showcase { min-height: 475px; }
  .heroes-orbit-large { width: 370px; height: 370px; }
  .heroes-orbit-small { width: 285px; height: 285px; }
  .heroes-photo-card { width: 100%; }
  .heroes-photo-chip { display: none; }
  .heroes-photo-header { grid-template-columns: auto 1fr; }
  .heroes-photo-caption h3 { font-size: 2rem; }
}

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


@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 600px) {
  .faq-list summary { padding: 19px 48px 19px 19px; font-size: 1.02rem; }
  .faq-list summary::after { right: 18px; }
  .faq-list details p { padding: 0 19px 20px; }
}


/* Conversion + content pages */
.honeypot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-notice { margin: 13px 0 0; color: var(--ink-soft); font-size: .7rem; line-height: 1.55; text-align: center; }
.form-notice a { color: var(--copper-dark); font-weight: 700; }
.form-status.success { color: #23643b; font-weight: 700; }
.form-status.error { color: #9d3d32; font-weight: 700; }
.form-status a { color: inherit; }
.form-submit:disabled { opacity: .65; cursor: wait; transform: none; }

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

.subpage-main { background: var(--white); }
.subpage-hero { position: relative; overflow: hidden; padding: 190px 0 92px; background: linear-gradient(145deg,#f4f4f4 0%,#ffffff 55%,#f8f8f8 100%); }
.subpage-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -220px; border: 1px solid rgba(17,17,17,.09); border-radius: 50%; box-shadow: 0 0 0 80px rgba(17,17,17,.02), 0 0 0 160px rgba(177,18,38,.025); }
.subpage-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .75fr; gap: 76px; align-items: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: var(--ink-soft); font-size: .75rem; }
.breadcrumbs a { color: var(--copper-dark); font-weight: 700; text-decoration: none; }
.subpage-hero h1 { margin-bottom: 24px; font-size: clamp(3.2rem,7vw,6.1rem); max-width: 860px; }
.subpage-hero .hero-lede { max-width: 760px; }
.subpage-sidecard { padding: 30px; background: rgba(255,255,255,.78); border: 1px solid rgba(17,17,17,.1); border-radius: 22px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.subpage-sidecard img { width: 100%; aspect-ratio: 1 / .82; object-fit: cover; object-position: center 34%; border-radius: 16px; margin-bottom: 22px; }
.subpage-sidecard h2 { margin: 0 0 12px; font-size: 2rem; }
.subpage-sidecard p { margin: 0 0 20px; color: var(--ink-soft); }
.content-split { display: grid; grid-template-columns: .78fr 1.22fr; gap: 84px; align-items: start; }
.content-split .section-heading { position: sticky; top: 112px; }
.rich-copy { display: grid; gap: 26px; }
.rich-copy > p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 38px; }
.process-card, .seo-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 14px 38px rgba(17,17,17,.055); }
.process-card span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 22px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .75rem; font-weight: 700; }
.process-card h3, .seo-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.34rem; }
.process-card p, .seo-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.seo-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--copper-dark); font-weight: 800; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; padding: 42px; background: var(--ink); color: var(--white); border-radius: 24px; box-shadow: var(--shadow); }
.cta-panel h2 { margin: 0 0 10px; font-size: clamp(2rem,4vw,3.35rem); }
.cta-panel p { margin: 0; color: rgba(255,255,255,.67); }
.cta-panel .hero-actions { margin: 0; }
.light-section { background: var(--paper); }
.page-contact { border-top: 1px solid var(--line); }
.hero-page-card { display: grid; gap: 18px; }
.hero-page-card .heroes-specialist-intro { display: grid; grid-template-columns: 116px 1fr; gap: 18px; align-items: center; padding-bottom: 2px; }
.hero-page-card .heroes-specialist-photo { width: 116px; height: 136px; aspect-ratio: auto; object-fit: cover; object-position: center 20%; margin: 0; border-radius: 14px; box-shadow: 0 10px 28px rgba(17,17,17,.1); }
.hero-page-card .heroes-specialist-copy { display: grid; gap: 3px; align-content: center; }
.hero-page-card .heroes-specialist-copy .eyebrow { margin: 0 0 4px; }
.hero-page-card .heroes-specialist-copy strong { font-family: var(--serif); font-size: 1.55rem; line-height: 1.05; color: var(--ink); }
.hero-page-card .heroes-specialist-copy span { color: var(--ink-soft); font-size: .78rem; }
.hero-page-card .heroes-serves-label { margin: 4px 0 -2px; }
.hero-page-card .profession-card { color: var(--white); background: linear-gradient(145deg,#242424,#171717); }
.hero-page-card .profession-card small { color: rgba(255,255,255,.6); }
.privacy-copy { max-width: 820px; }
.privacy-copy h2 { margin-top: 42px; font-size: 2rem; }
.privacy-copy p, .privacy-copy li { color: var(--ink-soft); }
.privacy-copy a { color: var(--copper-dark); font-weight: 700; }

@media (max-width: 980px) {
  .subpage-hero-grid, .content-split { grid-template-columns: 1fr; gap: 44px; }
  .content-split .section-heading { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { padding-bottom: 68px; }
  .site-footer { padding-bottom: 84px; }
  .mobile-action-bar { position: fixed; z-index: 1200; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; min-height: 56px; background: rgba(17,17,17,.97); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; box-shadow: 0 18px 55px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
  .mobile-action-bar a { display: flex; align-items: center; justify-content: center; gap: 7px; color: white; text-decoration: none; font-size: .78rem; }
  .mobile-action-bar a + a { border-left: 1px solid rgba(255,255,255,.12); }
  .mobile-action-bar span { color: #ef6674; font-size: 1rem; }
  .subpage-hero { padding: 154px 0 70px; }
  .subpage-sidecard { padding: 22px; }
  .hero-page-card .heroes-specialist-intro { grid-template-columns: 92px 1fr; gap: 15px; }
  .hero-page-card .heroes-specialist-photo { width: 92px; height: 108px; border-radius: 12px; }
  .hero-page-card .heroes-specialist-copy strong { font-size: 1.35rem; }
  .process-grid, .seo-card-grid { grid-template-columns: 1fr; }
  .process-card:last-child { grid-column: auto; }
  .cta-panel { grid-template-columns: 1fr; padding: 30px; }
}


/* Homes for Heroes visibility + white/black/red brand system */
.heroes-announcement { background: var(--copper); color: #fff; }
.heroes-announcement .container { width: min(1160px, calc(100% - 40px)); }
.heroes-announcement a { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 18px; color: #fff; text-decoration: none; font-size: .72rem; letter-spacing: .02em; }
.heroes-announcement strong { font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.heroes-announcement span { opacity: .86; }
.heroes-announcement b { font-size: .7rem; white-space: nowrap; }
.site-nav .nav-heroes { padding: 9px 13px; border: 1px solid rgba(177,18,38,.3); border-radius: 999px; color: var(--copper-dark); background: rgba(177,18,38,.04); }
.site-nav .nav-heroes::after { display: none; }
.site-nav .nav-heroes:hover { background: var(--copper); color: #fff; border-color: var(--copper); }
.hero-heroes-callout { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; max-width: 650px; margin-top: 24px; padding: 14px 16px; border: 1px solid rgba(177,18,38,.22); border-left: 4px solid var(--copper); border-radius: 14px; background: #fff; box-shadow: 0 12px 36px rgba(0,0,0,.06); text-decoration: none; }
.hero-heroes-star { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(177,18,38,.08); color: var(--copper); }
.hero-heroes-callout > span:nth-child(2) { display: grid; line-height: 1.25; }
.hero-heroes-callout strong { font-size: .86rem; }
.hero-heroes-callout small { margin-top: 4px; color: var(--ink-soft); font-size: .72rem; }
.hero-heroes-callout b { color: var(--copper); }
.mobile-action-bar a:last-child { background: var(--copper); }
.mobile-action-bar a:last-child span { color: #fff; }
.form-submit:disabled { opacity: .62; cursor: wait; }
.listing-empty { grid-column: 1/-1; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); color: var(--ink-soft); }
@media (max-width: 980px) {
  .heroes-announcement span { display: none; }
  .site-nav .nav-heroes { margin: 4px 0; text-align: center; }
}
@media (max-width: 680px) {
  .heroes-announcement .container { width: min(100% - 20px,1160px); }
  .heroes-announcement a { min-height: 34px; gap: 9px; font-size: .64rem; }
  .heroes-announcement b { font-size: .62rem; }
  .hero-heroes-callout { grid-template-columns: auto 1fr; }
  .hero-heroes-callout b { display: none; }
}
@media (max-width: 420px) { .heroes-announcement strong { letter-spacing: .07em; } .heroes-announcement b { display:none; } }


/* 2026-08-15 public redesign: white / black / red */
body { background: #fff; }
.site-header { background: rgba(255,255,255,.975); }

/* A restrained Homes for Heroes utility strip replaces the former full-red banner. */
.heroes-announcement { background: #111; color: #fff; border-top: 3px solid var(--copper); }
.heroes-announcement .container { width: min(1160px, calc(100% - 40px)); }
.heroes-announcement a {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: 0;
}
.heroes-announcement-star { flex: none; color: #ef4b54; font-size: .82rem; line-height: 1; }
.heroes-announcement-copy { display: flex; align-items: center; gap: 10px; min-width: 0; }
.heroes-announcement-copy strong { font-weight: 800; text-transform: none; letter-spacing: .02em; white-space: nowrap; }
.heroes-announcement-copy > span { color: rgba(255,255,255,.68); white-space: nowrap; }
.heroes-announcement b { margin-left: 4px; color: #ff777e; font-size: .7rem; font-weight: 700; white-space: nowrap; }
.heroes-announcement b span { color: inherit; }

/* Keep Homes for Heroes visible in navigation without making it look like an ad button. */
.site-nav .nav-heroes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}
.site-nav .nav-heroes > span { color: var(--copper); font-size: .74rem; }
.site-nav .nav-heroes::after { display: block; }
.site-nav .nav-heroes:hover { color: var(--copper-dark); background: transparent; }

/* Cleaner white-first page rhythm. */
.hero { background: #fff; }
.hero-pattern {
  opacity: .5;
  background-image: radial-gradient(circle at 15% 22%, rgba(181,18,27,.14) 0 1px, transparent 1.4px), radial-gradient(circle at 78% 40%, rgba(17,17,17,.09) 0 1px, transparent 1.4px);
}
.portrait-backdrop { background: #eeeeee; }
.services { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { background: #fff; border-color: rgba(17,17,17,.13); box-shadow: 0 10px 34px rgba(17,17,17,.045); }
.service-card:hover { box-shadow: 0 24px 62px rgba(17,17,17,.12); }
.service-card-hero {
  border: 1px solid rgba(181,18,27,.22);
  border-top: 4px solid var(--copper);
  background: linear-gradient(180deg, #fff 0%, #fff 73%, #fff7f7 100%);
  box-shadow: 0 16px 44px rgba(181,18,27,.08);
}
.listing-card { background: #fff; border-color: rgba(17,17,17,.12); }
.sold-image { background: #efefef; }
.sale-date { background: rgba(255,255,255,.96); }
.reviews { background: #f7f7f7; }
.reviews::before { box-shadow: 0 0 0 70px rgba(17,17,17,.014), 0 0 0 140px rgba(181,18,27,.018); }
.zillow-stars, .review-stars { color: var(--copper); }
.areas { background: #fff; border-top: 1px solid var(--line); }
.faq { background: #f7f7f7; }
.contact { background: #fff; }
.contact-form { background: #f7f7f7; border: 1px solid rgba(17,17,17,.09); box-shadow: 0 16px 46px rgba(17,17,17,.065); }

/* Homes for Heroes remains the single high-contrast campaign section. */
.heroes {
  border-top: 5px solid var(--copper);
  background: radial-gradient(circle at 82% 18%, rgba(181,18,27,.24), transparent 30%), linear-gradient(135deg, #090909 0%, #121212 58%, #1c1c1c 100%);
}
.heroes h2 em, .profession-icon, .heroes-photo-mark { color: #ff6971; }
.heroes-kicker { color: #ff8a90; }
.button-accent { background: var(--copper); }
.button-accent:hover { background: var(--copper-dark); }
.hero-heroes-callout {
  border: 1px solid rgba(181,18,27,.2);
  border-left: 4px solid var(--copper);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,17,17,.055);
}
.hero-heroes-callout:hover { box-shadow: 0 18px 44px rgba(17,17,17,.09); transform: translateY(-2px); }

/* Small red rules add brand recognition without flooding the page with color. */
.section-heading .eyebrow::before,
.hero-copy > .eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 9px;
  vertical-align: middle;
  background: var(--copper);
}

@media (max-width: 980px) {
  .site-nav .nav-heroes { margin: 4px 0; padding: 10px 0; text-align: left; }
  .heroes-announcement-copy > span { display: none; }
}
@media (max-width: 680px) {
  .heroes-announcement .container { width: min(100% - 18px, 1160px); }
  .heroes-announcement a { min-height: 33px; gap: 7px; font-size: .64rem; }
  .heroes-announcement-copy { gap: 0; }
  .heroes-announcement b { margin-left: auto; font-size: .62rem; }
}
@media (max-width: 420px) {
  .heroes-announcement b { display: inline; }
  .heroes-announcement-copy strong { letter-spacing: 0; }
}

/* Mobile correction for legacy announcement span rule. */
@media (max-width: 980px) {
  .heroes-announcement-star { display: inline; }
  .heroes-announcement-copy { display: flex; }
  .heroes-announcement-copy > span { display: none; }
}

/* Meet Daniel biography */
.bio-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-top: 1px solid rgba(17,17,17,.06);
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.bio-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(58px, 8vw, 118px);
  align-items: start;
}
.bio-intro {
  position: sticky;
  top: 132px;
}
.bio-intro h2 {
  max-width: 520px;
  margin-bottom: 34px;
}
.bio-signature-card {
  position: relative;
  max-width: 420px;
  padding: 30px 30px 27px 34px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(17,17,17,.14);
}
.bio-signature-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -50px;
  bottom: -55px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(181,18,27,.13);
}
.bio-quote-mark {
  display: block;
  height: 34px;
  color: #ef4b54;
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: .75;
}
.bio-signature-card p {
  position: relative;
  z-index: 1;
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.25;
}
.bio-signature-card > span:last-child {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bio-copy {
  max-width: 760px;
}
.bio-copy > p {
  margin: 0 0 22px;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.85;
}
.bio-copy > p:first-child {
  color: #444;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.85;
}
.bio-copy strong { color: var(--ink); }
.bio-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bio-facts div {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.bio-facts div:nth-last-child(-n+2) { border-bottom: 0; }
.bio-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--copper-dark);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.bio-facts strong {
  font-size: .92rem;
}

/* Homes for Heroes client celebration gallery */
.hero-stories {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hero-stories::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -190px;
  top: 70px;
  border: 1px solid rgba(181,18,27,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(181,18,27,.018), 0 0 0 110px rgba(17,17,17,.012);
  pointer-events: none;
}
.hero-stories-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 44px;
}
.hero-stories-heading > div { max-width: 760px; }
.hero-stories-heading h2 { margin-bottom: 16px; }
.hero-stories-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}
.hero-story-grid {
  position: relative;
  z-index: 1;
  columns: 3 280px;
  column-gap: 18px;
}
.hero-story-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  background: #fff;
  border: 1px solid rgba(17,17,17,.10);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(17,17,17,.07);
  vertical-align: top;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(17,17,17,.13);
}
.hero-story-card img {
  width: 100%;
  height: auto;
  background: #eee;
}
.hero-story-card figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 19px 19px;
  border-top: 3px solid var(--copper);
}
.hero-story-card figcaption strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
}
.hero-story-card figcaption span {
  color: var(--ink-soft);
  font-size: .76rem;
}
.hero-stories-note {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: .7rem;
}

@media (max-width: 980px) {
  .bio-layout { grid-template-columns: 1fr; gap: 42px; }
  .bio-intro { position: static; }
  .bio-intro h2 { max-width: 720px; }
  .hero-stories-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .bio-copy > p:first-child { font-size: 1.02rem; }
  .bio-facts { grid-template-columns: 1fr; }
  .bio-facts div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .bio-facts div:last-child { border-bottom: 0; }
  .hero-story-grid { columns: 1; }
  .hero-stories-heading .button { width: 100%; }
}


@media (max-width: 720px) {
  .hero-stories + .listings { padding-top: 118px; }
  .hero-stories + .listings::before {
    top: 38px;
    width: calc(100% - 40px);
  }
}

/* Security / spam-protection UI */
.captcha-wrap {
  margin: .35rem 0 .25rem;
  min-height: 78px;
  overflow: hidden;
}
.captcha-wrap .h-captcha { max-width: 100%; }
@media (max-width: 380px) {
  .captcha-wrap { transform: scale(.92); transform-origin: left top; margin-bottom: -.15rem; }
}


/* 2026-08-15 conversion + polish pass */
section[id] { scroll-margin-top: 124px; }

/* Keep the utility strip visible without competing with the main navigation. */
.heroes-announcement a {
  justify-content: space-between;
  max-width: 100%;
}
.heroes-announcement-copy { flex: 1 1 auto; }
.heroes-announcement b { display: inline-flex; align-items: center; gap: 5px; }

/* Stronger conversion hierarchy: one primary action, one direct call action, then proof. */
.hero-actions { align-items: center; }
.hero-actions .button-primary { min-width: 178px; }
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.hero-secondary-link span { color: var(--copper); transition: transform .2s ease; }
.hero-secondary-link:hover { color: var(--ink); }
.hero-secondary-link:hover span { transform: translateX(3px); }

.hero-heroes-callout {
  max-width: 610px;
  margin-top: 23px;
  padding: 13px 15px;
  border-left-width: 3px;
  border-radius: 12px;
}
.hero-heroes-callout strong { letter-spacing: .01em; }
.hero-heroes-callout small { font-size: .74rem; }

/* Make the phone action read unmistakably as the persistent header CTA. */
.nav-phone {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(17,17,17,.10);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-phone:hover { background: #2a2a2a; transform: translateY(-1px); box-shadow: 0 12px 26px rgba(17,17,17,.16); }

/* Slightly quieter surface rhythm lets the red accents carry more weight. */
.section { padding: 104px 0; }
.service-card, .listing-card, .review-card { border-radius: 16px; }
.service-card { min-height: 330px; }
.proof-grid div { min-height: 132px; }
.hero-story-card { border-radius: 15px; }
.hero-story-card figcaption { padding: 16px 17px 17px; }

/* Accessibility: keyboard users should always see where they are. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(181,18,27,.34);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  section[id] { scroll-margin-top: 106px; }
  .nav-phone { background: transparent; color: var(--ink); box-shadow: none; }
  .nav-phone:hover { background: transparent; color: var(--copper-dark); transform: none; box-shadow: none; }
}
@media (max-width: 680px) {
  .section { padding: 82px 0; }
  .hero-actions .button { flex: 1 1 150px; }
  .hero-secondary-link { margin-top: 15px; }
  .hero-heroes-callout { margin-top: 20px; }
}


/* 2026-08-15 mobile Homes for Heroes announcement fix.
   A legacy `.heroes-announcement span { display:none; }` rule had higher
   specificity than the newer component selectors. Keep the brand visible
   on mobile while hiding only the longer descriptive sentence. */
@media (max-width: 980px) {
  .heroes-announcement .heroes-announcement-star {
    display: inline-block;
  }
  .heroes-announcement .heroes-announcement-copy {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
  }
  .heroes-announcement .heroes-announcement-copy strong {
    display: inline;
    white-space: nowrap;
  }
  .heroes-announcement .heroes-announcement-copy > span {
    display: none;
  }
  .heroes-announcement b {
    display: inline-flex;
    margin-left: auto;
  }
}

@media (max-width: 380px) {
  .heroes-announcement a {
    gap: 6px;
  }
  .heroes-announcement .heroes-announcement-copy strong {
    font-size: .61rem;
  }
  .heroes-announcement b {
    font-size: .59rem;
  }
}


/* =========================================================
   HOMES FOR HEROES SAVINGS ESTIMATOR — CLEAN VERSION
   ========================================================= */
.hero-savings {
  position: relative;
  padding: 92px 0 104px;
  background: var(--white);
}
.hero-savings-page { padding-top: 88px; }
.hero-savings-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.hero-savings-heading .eyebrow { margin-bottom: 10px; }
.hero-savings-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.5vw, 4.15rem);
}
.hero-savings-calculator-clean {
  --savings-progress: 15.79%;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 38px 42px 32px;
  border: 1px solid rgba(17,17,17,.12);
  border-top: 4px solid var(--copper);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 65px rgba(17,17,17,.09);
}
.savings-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: end;
}
.savings-input-block > label,
.savings-result > span {
  display: block;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.savings-price-field {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0 20px;
  border: 1px solid rgba(17,17,17,.18);
  border-radius: 14px;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
}
.savings-price-field:focus-within {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(181,18,27,.08);
}
.savings-price-field > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.savings-price-field input {
  width: 100%;
  padding: 0 0 0 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.035em;
  appearance: textfield;
}
.savings-price-field input::-webkit-inner-spin-button,
.savings-price-field input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.savings-result {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.savings-result output {
  display: block;
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .95;
}
.savings-range {
  width: 100%;
  height: 6px;
  margin: 34px 0 0;
  border-radius: 999px;
  outline: none;
  appearance: none;
  background: linear-gradient(to right, var(--copper) 0, var(--copper) var(--savings-progress), #e5e5e5 var(--savings-progress), #e5e5e5 100%);
}
.savings-range::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 4px solid #fff;
  border-radius: 50%;
  appearance: none;
  background: var(--copper);
  box-shadow: 0 2px 10px rgba(17,17,17,.25);
}
.savings-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 2px 10px rgba(17,17,17,.25);
}
.savings-range:focus-visible { box-shadow: 0 0 0 4px rgba(181,18,27,.12); }
.savings-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #777;
  font-size: .68rem;
}
.savings-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(17,17,17,.1);
}
.savings-fineprint {
  margin: 0;
  color: #777;
  font-size: .72rem;
  line-height: 1.5;
}
.savings-footer .button {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 11px 22px;
}
/* Retired from the previous layout. */
.hero-savings-shell,
.hero-savings-copy,
.hero-savings-facts,
.savings-actions { all: unset; }

@media (max-width: 720px) {
  .hero-savings { padding: 70px 0 82px; }
  .hero-savings-page { padding-top: 70px; }
  .hero-savings-heading { margin-bottom: 26px; text-align: left; }
  .hero-savings-calculator-clean { padding: 28px 20px 24px; border-radius: 18px; }
  .savings-main-row { grid-template-columns: 1fr; gap: 28px; }
  .savings-price-field { min-height: 66px; }
  .savings-result output { font-size: clamp(3.2rem, 16vw, 4.3rem); }
  .savings-range { margin-top: 28px; }
  .savings-footer { align-items: stretch; flex-direction: column; gap: 18px; }
  .savings-footer .button { width: 100%; }
}


/* Homepage cleanup: keep the DC monogram consistent in the dark footer. */
.footer-brand-logo { filter: brightness(0) invert(1); opacity: .96; }
.footer-brand:hover .footer-brand-logo { opacity: 1; }

/* Seller home-value funnel */
.button-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.42); }
.button-outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.72); }

.seller-value-band { padding: 0 0 84px; background: var(--white); }
.seller-value-band-inner { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 44px; align-items: center; padding: 38px 42px; border-radius: 22px; background: var(--ink); color: var(--white); box-shadow: 0 22px 60px rgba(17,17,17,.12); }
.seller-value-band .eyebrow { color: #ffb3bd; }
.seller-value-band h2 { margin: 4px 0 10px; max-width: 720px; font-size: clamp(2rem,4vw,3.2rem); }
.seller-value-band p:not(.eyebrow) { margin: 0; max-width: 760px; color: rgba(255,255,255,.7); }
.seller-value-band .button { white-space: nowrap; }

.valuation-hero { padding-bottom: 100px; }
.valuation-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.92fr) minmax(420px,.78fr); gap: 74px; align-items: start; }
.valuation-hero h1 { max-width: 760px; }
.valuation-trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 34px; }
.valuation-trust-row span { display: grid; gap: 4px; min-width: 0; padding: 16px; border: 1px solid rgba(17,17,17,.1); border-radius: 13px; background: rgba(255,255,255,.72); }
.valuation-trust-row strong { font-size: .9rem; }
.valuation-trust-row small { color: var(--ink-soft); font-size: .72rem; line-height: 1.4; }
.valuation-form-card { position: relative; padding: 30px; border: 1px solid rgba(17,17,17,.1); border-radius: 24px; background: var(--white); box-shadow: 0 30px 80px rgba(17,17,17,.1); }
.valuation-form-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; border-radius: 24px 0 0 24px; background: var(--copper); }
.valuation-form-heading { padding: 4px 4px 22px; }
.valuation-form-heading h2 { margin: 4px 0 10px; font-size: clamp(2rem,3.6vw,2.8rem); }
.valuation-form-heading p:last-child { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.valuation-form { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.valuation-form .form-submit { width: 100%; }
.value-explainer { background: var(--white); }
.value-factor-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.value-factor-grid article { padding: 26px; border: 1px solid rgba(17,17,17,.1); border-radius: 16px; background: #fafafa; }
.value-factor-grid article > span { display: inline-flex; margin-bottom: 26px; color: var(--copper); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.value-factor-grid h3 { margin: 0 0 8px; font-size: 1.12rem; }
.value-factor-grid p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

@media (max-width: 980px) {
  .seller-value-band-inner, .valuation-hero-grid { grid-template-columns: 1fr; }
  .seller-value-band-inner { gap: 26px; }
  .seller-value-band .button { justify-self: start; }
  .valuation-form-card { max-width: 720px; }
}

@media (max-width: 700px) {
  .seller-value-band { padding-bottom: 62px; }
  .seller-value-band-inner { padding: 28px 24px; border-radius: 18px; }
  .valuation-hero { padding-bottom: 72px; }
  .valuation-hero-grid { gap: 42px; }
  .valuation-trust-row, .value-factor-grid { grid-template-columns: 1fr; }
  .valuation-trust-row { gap: 8px; }
  .valuation-form-card { padding: 22px; border-radius: 18px; }
}

/* 2026-08-16 Recent Sales library */
.recent-sales-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.1fr .62fr;gap:72px;align-items:center}.sales-proof-card{padding:30px;border:1px solid rgba(17,17,17,.12);border-radius:20px;background:#fff;box-shadow:0 22px 60px rgba(17,17,17,.08)}.sales-proof-card>strong{display:block;margin:8px 0 0;font-family:var(--serif);font-size:clamp(3.3rem,7vw,5.4rem);line-height:.95}.sales-proof-card>span{display:block;margin-top:8px;color:var(--ink-soft);font-size:.84rem}.sales-proof-card>div{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:24px 0 22px;padding-top:20px;border-top:1px solid var(--line)}.sales-proof-card>div span{display:grid;gap:2px;color:var(--ink-soft);font-size:.74rem}.sales-proof-card>div b{color:var(--ink);font-size:1.12rem}.sales-proof-card>a{display:inline-flex;gap:6px;color:var(--copper-dark);font-size:.78rem;font-weight:750;text-decoration:none}.sales-proof-card>a:hover{text-decoration:underline;text-underline-offset:4px}.recent-sales-library{background:#fff}.recent-sales-library .listing-heading{align-items:end}.sales-filters{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}.sales-filter{padding:9px 13px;border:1px solid rgba(17,17,17,.16);border-radius:999px;background:#fff;color:var(--ink);font:inherit;font-size:.74rem;font-weight:750;cursor:pointer}.sales-filter:hover{border-color:#777}.sales-filter.active{border-color:var(--copper);background:var(--copper);color:#fff}.recent-sales-page .recent-sales-grid .listing-card:last-child{grid-column:auto;max-width:none}.sales-filter-empty{margin-top:24px}.recent-sales-cta-section{padding-top:20px;background:#fff}@media(max-width:980px){.recent-sales-hero-grid{grid-template-columns:1fr;gap:38px}.sales-proof-card{max-width:620px}.sales-filters{justify-content:flex-start}.recent-sales-library .listing-heading{align-items:flex-start;flex-direction:column}}@media(max-width:680px){.sales-proof-card{padding:24px}.sales-proof-card>div{grid-template-columns:1fr 1fr}.sales-filters{width:100%}.sales-filter{flex:1 1 130px}.recent-sales-page .listing-grid{grid-template-columns:1fr}.recent-sales-page .listing-card:last-child{max-width:none}}

/* 2026-08-30 admin-managed review links */
.review-card footer a { width: max-content; color: inherit; text-decoration: none; }
.review-card footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
