:root {
  --bg: #070706;
  --bg-2: #0c0c0b;
  --panel: rgba(15, 15, 14, .88);
  --panel-2: rgba(25, 25, 23, .86);
  --line: rgba(218, 157, 52, .42);
  --line-strong: #c9912d;
  --gold: #d69a31;
  --gold-2: #f3bd5a;
  --gold-3: #8e611d;
  --text: #f5f1e8;
  --muted: #c8c0b2;
  --muted-2: #8f887c;
  --danger: #ff706a;
  --success: #63d18c;
  --shadow: 0 22px 70px rgba(0, 0, 0, .52);
  --radius: 18px;
  --radius-sm: 10px;
  --shell: 1180px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-script: "Allura", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(206, 143, 42, .14), transparent 26rem),
    radial-gradient(circle at 80% 38%, rgba(206, 143, 42, .10), transparent 28rem),
    var(--bg);
  font-family: var(--font-body);
  line-height: 1.45;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.shell {
  width: min(var(--shell), calc(100% - 38px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
}
.brand-mark {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.55));
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy { display: grid; line-height: 1; }
.brand-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1.75rem, 2.15vw, 2.32rem);
  color: var(--text);
  text-shadow: 0 2px 16px rgba(0,0,0,.8);
}
.brand-name {
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 1.9vw, 2.02rem);
  color: #fff7e7;
  transform: translateY(-4px);
  position: relative;
  width: fit-content;
}
.brand-name::before,
.brand-name::after {
  content: "";
  position: absolute;
  top: 54%;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.brand-name::before { right: calc(100% + 8px); }
.brand-name::after { left: calc(100% + 8px); transform: scaleX(-1); }
.brand-tag {
  font-size: .74rem;
  color: var(--muted);
  margin-top: -2px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto;
}
.main-nav a,
.footer-nav a {
  color: #f7f1e9;
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .92;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .18s ease;
  transform-origin: left;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.footer-nav a:hover::after,
.footer-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-action {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
  text-align: left;
}
.phone-icon { color: var(--gold-2); font-size: 1.4rem; }
.phone-link strong {
  font-size: 1.02rem;
  display: block;
  letter-spacing: .01em;
}
.phone-link small {
  display: block;
  color: var(--muted);
  text-align: center;
  font-size: .82rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 12px 21px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .17s ease, box-shadow .17s ease, border-color .17s ease, background .17s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  color: #120d06;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 24px rgba(214, 154, 49, .22), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-gold:hover { box-shadow: 0 15px 34px rgba(214, 154, 49, .31), inset 0 1px 0 rgba(255,255,255,.33); }
.btn-outline {
  min-height: 36px;
  padding: 9px 18px;
  color: var(--gold-2);
  border: 1px solid var(--line-strong);
  background: rgba(214,154,49,.06);
  box-shadow: none;
  font-size: .78rem;
}
.btn-wide { width: 100%; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  padding: 10px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-2);
  margin: 5px 0;
  border-radius: 99px;
}

.hero,
.offer-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.25), rgba(0,0,0,.66) 49%, rgba(0,0,0,.38)),
    linear-gradient(180deg, rgba(0,0,0,.22), #090908 98%),
    url("../assets/cincinnati-hero-bg.jpeg") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 45%, rgba(224,160,55,.12), transparent 18rem),
    linear-gradient(180deg, rgba(6,6,5,.14), rgba(6,6,5,.9));
  z-index: 1;
}
.hero-home {
  border-bottom: 1px solid var(--line-strong);
}
.hero-grid {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(230px, 280px) minmax(330px, 380px);
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 34px 0 28px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  font-size: .82rem;
}
h1, h2, h3, p { margin-top: 0; }
.hero-copy h1,
.offer-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 3.55vw, 4.25rem);
  line-height: .92;
  letter-spacing: .035em;
  text-transform: uppercase;
  max-width: 430px;
  margin: 0 0 12px;
  color: var(--text);
  text-shadow: 0 5px 18px rgba(0,0,0,.8);
}
.hero-subcopy {
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.33;
  margin: 0 0 8px;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,.9);
}
.signature {
  font-family: var(--font-script);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold-2);
  margin: 10px 0 0;
  transform: rotate(-4deg);
  text-shadow: 0 4px 16px rgba(0,0,0,.55);
}
.image-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(35,35,33,.94), rgba(12,12,11,.94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-frame-label { display: none; }
.image-frame--tall {
  height: 286px;
  align-self: center;
}
.quick-offer-card,
.lead-form,
.mike-card,
.quote-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent),
    var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 218, 138, .04) inset;
}
.quick-offer-card {
  padding: 22px;
  max-width: 370px;
  margin-left: auto;
}
.card-heading { text-align: center; margin-bottom: 16px; }
.card-heading h2 {
  margin: 0 0 2px;
  font-size: 1.35rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-heading p {
  margin: 0;
  color: var(--gold-2);
  font-family: var(--font-script);
  font-size: 1.55rem;
  line-height: .9;
}
.field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 7px;
  background: rgba(0,0,0,.2);
  margin-bottom: 10px;
  color: var(--muted);
  overflow: hidden;
}
.field:focus-within {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(214,154,49,.14);
}
.field > span {
  width: 38px;
  text-align: center;
  color: var(--muted);
  flex: 0 0 38px;
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  padding: 13px 13px 13px 0;
  min-height: 44px;
}
.field textarea {
  min-height: 98px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(245,241,232,.76); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
  font-size: .7rem;
  color: var(--text);
}
.trust-strip span { display: flex; align-items: center; gap: 7px; }
.trust-strip i,
.icon-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--gold-2);
  font-style: normal;
  flex: 0 0 auto;
}
.reveal-on-load {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal .62s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.why-band {
  background: linear-gradient(180deg, #0c0c0b, #070706);
  border-bottom: 1px solid rgba(201,145,45,.36);
}
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.05fr .68fr;
  gap: 34px;
  align-items: center;
  padding: 26px 0 24px;
}
.image-frame--wide { height: 176px; border-style: dashed; }
.image-frame--house { height: 176px; }
.why-copy h2,
.faq-strip h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: .08em;
  margin: 0 0 8px;
}
.why-copy h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 5px;
}
.why-copy p {
  color: #eee8df;
  font-size: .92rem;
  line-height: 1.48;
  margin: 0 0 8px;
}
.local-note {
  color: var(--gold-2) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem !important;
  margin-top: 12px !important;
}
.local-note span { font-size: 1rem; }

.content-row { background: #080807; }
.row-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.24fr .82fr;
  gap: 28px;
  align-items: stretch;
  padding: 25px 0 24px;
}
.mini-section { min-width: 0; }
.section-title-line {
  display: grid;
  grid-template-columns: 44px auto 44px;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.section-title-line span { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.section-title-line h2 {
  margin: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.steps article {
  border-right: 1px solid rgba(255,255,255,.12);
  padding: 2px 10px;
}
.steps article:last-child { border-right: 0; }
.steps .icon-ring { margin: 0 auto 9px; width: 56px; height: 56px; font-size: 1.4rem; }
.steps h3,
.feature-list h3 {
  margin: 0 0 5px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .04em;
}
.steps p,
.feature-list p { margin: 0; color: #eee8df; font-size: .78rem; }
.purchase-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.purchase-card {
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}
.purchase-card img {
  width: 100%;
  aspect-ratio: 1.55/1;
  object-fit: cover;
  border-bottom: 1px solid rgba(201,145,45,.42);
}
.purchase-card strong {
  display: block;
  margin-top: 5px;
  font-size: .78rem;
}
.purchase-card span {
  display: block;
  margin: 1px 0 9px;
  color: var(--muted);
  font-size: .72rem;
}
.recent-panel .btn-outline { margin: 10px auto 0; display: flex; width: fit-content; }
.quote-card {
  padding: 24px 24px 18px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-mark {
  color: var(--gold-2);
  font-size: 4rem;
  line-height: .4;
  font-family: Georgia, serif;
}
.quote-card p { margin: 0 0 10px; color: #fff; font-size: .92rem; }
.quote-card strong { color: var(--gold-2); font-size: .85rem; }
.stars { color: var(--gold-2); letter-spacing: .16em; margin-top: 9px; }

.faq-strip {
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent), #0b0b0a;
  border-top: 1px solid rgba(201,145,45,.28);
  border-bottom: 1px solid rgba(201,145,45,.36);
}
.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 40px;
  padding: 56px 0;
}
.faq-list details {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  margin-bottom: 10px;
  padding: 0 18px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: #fff;
  padding: 16px 0;
}
.faq-list p { color: var(--muted); padding-bottom: 16px; margin-bottom: 0; }

.offer-hero {
  min-height: calc(100vh - 82px);
  border-bottom: 1px solid rgba(201,145,45,.36);
}
.offer-shell { padding: 36px 0 42px; }
.offer-intro { text-align: center; max-width: 900px; margin: 0 auto 16px; }
.offer-intro h1 {
  max-width: none;
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  margin-bottom: 8px;
}
.offer-kicker {
  margin: 0 0 8px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: 1.08rem;
}
.offer-intro p:not(.offer-kicker) { color: #fff; max-width: 600px; margin: 0 auto; }
.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}
.card-glow { box-shadow: var(--shadow), 0 0 28px rgba(214,154,49,.08); }
.lead-form { padding: 24px; }
.form-title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}
.form-title-row span { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.form-title-row h2 {
  margin: 0;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .08em;
  white-space: nowrap;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
.form-grid .field { margin: 0; }
.form-span { grid-column: 1 / -1; }
.upload-box {
  display: grid;
  place-items: center;
  min-height: 96px;
  margin-top: 12px;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  color: #fff;
  text-align: center;
  cursor: pointer;
  padding: 14px;
  transition: border-color .18s ease, background .18s ease;
}
.upload-box.drag-over,
.upload-box:hover { border-color: var(--gold-2); background: rgba(214,154,49,.06); }
.upload-box input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.upload-icon { color: var(--gold-2); font-size: 1.4rem; }
.upload-box strong { text-transform: uppercase; letter-spacing: .04em; }
.upload-box em { color: var(--muted); font-style: normal; }
.upload-box small { color: var(--muted); line-height: 1.45; }
.file-list { margin-top: 7px; color: var(--gold-2); font-size: .78rem; }
.consent-block {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}
.checkline {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: .76rem;
}
.checkline input { accent-color: var(--gold); margin-top: 3px; }
.checkline a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.turnstile-holder {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.btn-submit {
  width: 100%;
  min-height: 58px;
  font-size: 1rem;
  margin-top: 16px;
}
.btn-submit[disabled] { opacity: .7; cursor: wait; transform: none; }
.privacy-note {
  text-align: center;
  margin: 10px 0 0;
  color: var(--gold-2);
  font-size: .86rem;
}
.privacy-note small { color: var(--muted); }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.mike-card {
  padding: 22px;
}
.image-frame--side {
  height: 154px;
  border-style: dashed;
  margin-bottom: 12px;
}
.mike-card .signature {
  text-align: center;
  font-size: 2.2rem;
  margin-top: 4px;
}
.mike-card-kicker {
  margin: -4px 0 16px;
  text-align: center;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  font-weight: 900;
}
.feature-list { display: grid; gap: 0; }
.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.feature-list .icon-ring { width: 44px; height: 44px; font-size: 1.15rem; }
.feature-list h3 { color: #fff; font-size: .9rem; }
.feature-list p { color: var(--muted); font-size: .78rem; }

.site-footer {
  background: #070706;
  border-top: 1px solid var(--line-strong);
}
.footer-main {
  min-height: 112px;
  display: grid;
  grid-template-columns: 300px 1fr 260px;
  gap: 18px;
  align-items: center;
}
.footer-brand .brand-mark { width: 64px; height: 64px; flex-basis: 64px; }
.footer-brand .brand-title { font-size: 1.8rem; }
.footer-brand .brand-name { font-size: 1.55rem; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.footer-contact { text-align: right; display: grid; gap: 8px; }
.footer-contact a { color: #fff; font-weight: 800; }
.footer-contact span { color: var(--muted); font-weight: 500; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: .76rem;
}
.skyline { color: var(--gold-2); letter-spacing: .1em; margin-left: 8px; }

.result-page {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 60px 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.86)),
    url("../assets/cincinnati-hero-bg.jpeg") center/cover no-repeat;
}
.result-card {
  width: min(600px, calc(100% - 38px));
  text-align: center;
  padding: 36px;
}
.result-card h1 {
  font-family: var(--font-display);
  letter-spacing: .06em;
  font-size: 3.2rem;
  margin: 0 0 10px;
}
.result-card p { color: var(--muted); }
.result-success h1 { color: var(--success); }
.result-error h1 { color: var(--danger); }
.legal-page {
  padding: 60px 0;
  background: #0a0a09;
}
.legal-card {
  max-width: 850px;
  padding: 32px;
  margin: 0 auto;
}
.legal-card h1,
.legal-card h2 {
  font-family: var(--font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal-card p,
.legal-card li { color: var(--muted); }


/* Stage 2.1 mapping fixes: keep the hero close to the approved mockup at common laptop widths. */
@media (min-width: 1121px) {
  .hero-copy h1 {
    max-width: 420px;
  }
  .hero-headshot {
    justify-self: center;
    width: min(100%, 280px);
  }
  .quick-offer-card {
    justify-self: end;
    width: min(100%, 370px);
  }
  .site-header .btn {
    min-width: 128px;
  }
}
@media (min-width: 1121px) and (max-width: 1380px) {
  .shell { width: min(var(--shell), calc(100% - 70px)); }
  .header-inner { gap: 14px; }
  .brand { min-width: 255px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .70rem; }
  .header-action { gap: 14px; }
  .phone-link strong { font-size: .96rem; }
  .btn { padding-left: 18px; padding-right: 18px; }
  .hero-grid {
    grid-template-columns: minmax(330px, 390px) minmax(225px, 275px) minmax(330px, 370px);
    gap: 28px;
  }
  .hero-copy h1 { font-size: clamp(2.8rem, 3.6vw, 3.55rem); }
  .quick-offer-card { padding: 20px; }
}

@media (max-width: 1120px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-action { margin-left: 0; }
  .nav-open .main-nav {
    position: fixed;
    display: grid;
    left: 19px;
    right: 19px;
    top: 92px;
    padding: 20px;
    background: rgba(8,8,7,.98);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    box-shadow: var(--shadow);
    z-index: 120;
  }
  .nav-open .main-nav a { padding: 12px 0; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(250px, 320px); }
  .hero-copy { grid-column: 1 / 2; }
  .hero-headshot { grid-column: 2 / 3; grid-row: 1 / 2; }
  .quick-offer-card { grid-column: 1 / -1; max-width: none; margin-left: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-copy { grid-column: 1 / -1; grid-row: 1; }
  .row-grid { grid-template-columns: 1fr; }
  .offer-layout { grid-template-columns: 1fr; max-width: 820px; }
  .mike-card { display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: center; }
  .mike-card .signature, .mike-card-kicker { text-align: left; }
  .mike-card .feature-list { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr; text-align: center; padding: 24px 0; }
  .footer-brand { justify-content: center; }
  .footer-contact { text-align: center; }
}
@media (max-width: 760px) {
  .shell { width: min(100% - 26px, var(--shell)); }
  .header-inner { min-height: 78px; gap: 12px; }
  .brand { min-width: 0; gap: 10px; }
  .brand-mark { width: 56px; height: 56px; flex-basis: 56px; }
  .brand-title { font-size: 1.8rem; letter-spacing: .055em; }
  .brand-name { font-size: 1.5rem; }
  .header-action { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding: 28px 0; gap: 18px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 12vw, 4rem); max-width: 100%; }
  .hero-headshot { grid-column: auto; grid-row: auto; height: 250px; }
  .trust-strip { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-copy { grid-row: auto; }
  .steps, .purchase-cards { grid-template-columns: 1fr; }
  .steps article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 14px; }
  .steps article:last-child { border-bottom: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 18px; padding: 38px 0; }
  .offer-intro h1 { font-size: 3.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span { grid-column: auto; }
  .form-title-row { grid-template-columns: 1fr; text-align: center; }
  .form-title-row span { display: none; }
  .mike-card { display: block; }
  .mike-card .signature, .mike-card-kicker { text-align: center; }
  .footer-nav { gap: 14px; }
  .footer-bottom { display: block; text-align: center; }
}
@media (max-width: 430px) {
  .brand-title { font-size: 1.42rem; }
  .brand-name { font-size: 1.32rem; }
  .brand-name::before, .brand-name::after { display: none; }
  .hero-copy h1 { font-size: clamp(2.35rem, 11vw, 3.15rem); }
  .offer-intro h1 { font-size: 3rem; }
  .quick-offer-card, .lead-form, .mike-card, .quote-card { padding: 18px; }
}


/* Stage 2.2 header/logo and Cincinnati hero background fixes */
.site-header .main-nav,
.site-header .nav-toggle {
  display: none !important;
}
.site-header .header-inner {
  min-height: 94px;
  gap: 22px;
}
.site-header .brand {
  min-width: 0;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  gap: 16px;
}
.site-header .brand-mark {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
}
.site-header .brand-copy {
  min-width: max-content;
}
.site-header .brand-title {
  white-space: nowrap;
  font-size: clamp(2.08rem, 2.45vw, 2.72rem);
  line-height: .92;
  letter-spacing: .075em;
}
.site-header .brand-name {
  font-size: clamp(1.65rem, 1.95vw, 2.18rem);
}
.site-header .header-action {
  margin-left: auto;
  flex: 0 0 auto;
}
.site-header .phone-link strong {
  font-size: 1.05rem;
}
.site-header .btn-gold {
  min-width: 150px;
}
.hero-bg {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.70) 31%, rgba(0,0,0,.58) 55%, rgba(0,0,0,.76) 100%),
    linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.50) 48%, #080807 100%),
    url("../assets/cincinnati-hero-bg.jpeg") center center / cover no-repeat;
}
.hero-bg::after {
  background:
    radial-gradient(circle at 44% 40%, rgba(224,160,55,.16), transparent 20rem),
    linear-gradient(180deg, rgba(6,6,5,.10), rgba(6,6,5,.82));
}
.result-page {
  background:
    linear-gradient(180deg, rgba(0,0,0,.66), rgba(0,0,0,.88)),
    url("../assets/cincinnati-hero-bg.jpeg") center/cover no-repeat;
}
@media (min-width: 1121px) and (max-width: 1380px) {
  .site-header .brand { min-width: 0; }
  .site-header .brand-title { font-size: clamp(2.0rem, 2.35vw, 2.55rem); }
  .site-header .brand-mark { width: 78px; height: 78px; flex-basis: 78px; }
  .site-header .header-action { margin-left: auto; gap: 18px; }
}
@media (max-width: 1120px) {
  .site-header .header-action { margin-left: auto; }
}
@media (max-width: 900px) {
  .site-header .brand-title { font-size: 1.95rem; }
  .site-header .brand-mark { width: 70px; height: 70px; flex-basis: 70px; }
  .site-header .phone-link strong { font-size: .9rem; }
  .site-header .btn-gold { min-width: 128px; padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 760px) {
  .site-header .header-inner { min-height: 78px; }
  .site-header .brand-copy { min-width: 0; }
  .site-header .brand-title { white-space: normal; font-size: 1.55rem; }
  .site-header .brand-mark { width: 56px; height: 56px; flex-basis: 56px; }
}

/* Stage 2.3: editable text logo, CSS flourish accents, lighter Cincinnati hero image */
.brand-photo {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.08), rgba(0,0,0,.02) 42%, rgba(0,0,0,.74) 70%),
    #080807;
  border: 1px solid rgba(243,189,90,.72);
  box-shadow:
    0 0 0 3px rgba(214,154,49,.10),
    0 12px 26px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.10);
  overflow: visible;
  position: relative;
}
.brand-photo::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(214,154,49,.32);
  pointer-events: none;
}
.brand-photo img {
  width: 118%;
  height: 118%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,.55));
}
.brand-name::before,
.brand-name::after {
  display: none !important;
}
.brand-name-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .42rem;
  margin-top: -5px;
  white-space: nowrap;
  line-height: 1;
}
.brand-name-row .brand-name {
  position: static;
  width: auto;
  transform: none;
  display: inline-block;
  flex: 0 0 auto;
}
.name-flourish {
  --flourish-color: var(--gold-2);
  position: relative;
  width: clamp(36px, 4.6vw, 76px);
  height: 12px;
  flex: 0 1 auto;
  min-width: 26px;
  opacity: .95;
}
.name-flourish::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(243,189,90,.10) 10%,
    rgba(243,189,90,.70) 42%,
    var(--flourish-color) 72%,
    rgba(243,189,90,.18) 100%
  );
  clip-path: polygon(0 50%, 28% 31%, 72% 42%, 100% 50%, 72% 58%, 28% 69%);
}
.name-flourish::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--flourish-color);
  border: 2px solid #080807;
  box-shadow: 0 0 0 1px rgba(243,189,90,.78), 0 0 10px rgba(243,189,90,.28);
  transform: translateY(-50%);
}
.name-flourish-left::after { right: -2px; }
.name-flourish-right::after { left: -2px; }
.name-flourish-right::before { transform: translateY(-50%) scaleX(-1); }

.site-header .brand-photo {
  width: 78px;
  height: 78px;
  flex-basis: 78px;
}
.site-header .brand-copy {
  min-width: max-content;
}
.site-header .brand-title {
  white-space: nowrap;
}
.site-header .brand-name-row {
  justify-content: flex-start;
}
.footer-brand .brand-photo {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}
.footer-brand .brand-name-row {
  margin-top: -3px;
}
.footer-brand .name-flourish {
  width: 34px;
  min-width: 24px;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.56) 31%, rgba(0,0,0,.46) 55%, rgba(0,0,0,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.30) 48%, #080807 100%),
    url("../assets/cincinnati-hero-bg.jpeg") center center / cover no-repeat;
}
.hero-bg::after {
  background:
    radial-gradient(circle at 44% 40%, rgba(224,160,55,.17), transparent 20rem),
    linear-gradient(180deg, rgba(6,6,5,.04), rgba(6,6,5,.66));
}
.offer-hero .hero-bg {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.58) 36%, rgba(0,0,0,.48) 56%, rgba(0,0,0,.66) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.34) 50%, #080807 100%),
    url("../assets/cincinnati-hero-bg.jpeg") center center / cover no-repeat;
}
.result-page {
  background:
    linear-gradient(180deg, rgba(0,0,0,.54), rgba(0,0,0,.82)),
    url("../assets/cincinnati-hero-bg.jpeg") center/cover no-repeat;
}

@media (min-width: 1121px) and (max-width: 1380px) {
  .site-header .brand-photo { width: 76px; height: 76px; flex-basis: 76px; }
  .site-header .name-flourish { width: clamp(32px, 3.2vw, 54px); }
}
@media (max-width: 900px) {
  .site-header .brand-photo { width: 68px; height: 68px; flex-basis: 68px; }
  .site-header .name-flourish { width: 32px; }
}
@media (max-width: 760px) {
  .site-header .brand-photo { width: 56px; height: 56px; flex-basis: 56px; }
  .brand-name-row { gap: .28rem; }
  .name-flourish { width: 28px; min-width: 20px; }
}
@media (max-width: 430px) {
  .name-flourish { display: none; }
}


/* Stage 2.4: center investor name under title and make flourishes subtle */
.brand-copy {
  justify-items: center;
}
.brand-title {
  display: block;
  text-align: center;
}
.brand-name-row {
  width: 100%;
  justify-content: center;
  gap: .36rem;
  margin-top: -4px;
}
.name-flourish {
  width: clamp(18px, 2.1vw, 34px);
  min-width: 18px;
  height: 8px;
  opacity: .58;
}
.name-flourish::before {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(243,189,90,.10) 13%,
    rgba(243,189,90,.50) 48%,
    rgba(243,189,90,.82) 72%,
    rgba(243,189,90,.18) 100%
  );
  clip-path: polygon(0 50%, 32% 38%, 100% 50%, 32% 62%);
}
.name-flourish::after {
  display: none !important;
}
.site-header .brand-name-row {
  justify-content: center;
}
.site-header .name-flourish {
  width: clamp(20px, 1.9vw, 36px);
}
.footer-brand .brand-copy {
  justify-items: center;
}
.footer-brand .name-flourish {
  width: 24px;
  min-width: 18px;
  opacity: .52;
}
@media (min-width: 1121px) and (max-width: 1380px) {
  .site-header .name-flourish { width: clamp(18px, 1.7vw, 30px); }
}
@media (max-width: 900px) {
  .site-header .name-flourish { width: 22px; }
}
@media (max-width: 760px) {
  .name-flourish { width: 18px; min-width: 14px; opacity: .45; }
}


/* Stage 2.5 first-person copy, footer skyline, and logo accent cleanup */
.name-flourish {
  width: 44px !important;
  min-width: 44px !important;
  height: 1px !important;
  opacity: 1 !important;
  flex: 0 0 44px !important;
  background: linear-gradient(90deg, transparent, var(--gold), transparent) !important;
  clip-path: none !important;
}
.name-flourish::before,
.name-flourish::after {
  display: none !important;
  content: none !important;
}
.brand-name-row {
  gap: 10px;
}
.footer-brand .brand-tag {
  display: none !important;
}
.service-area-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.footer-skyline {
  width: 86px;
  height: auto;
  color: var(--gold-2);
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}
@media (max-width: 760px) {
  .service-area-line {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-skyline {
    width: 78px;
  }
}
@media (max-width: 430px) {
  .site-header .name-flourish {
    display: none !important;
  }
}

/* Stage 2.6 commitment-lite homepage form, secondary menu, and footer skyline alignment */
.quick-offer-card--lite .quick-details-field textarea {
  min-height: 76px;
}
.quick-offer-card--lite .quick-details-field {
  align-items: flex-start;
}
.quick-offer-card--lite .quick-details-field > span {
  padding-top: 13px;
}
.secondary-nav-bar {
  position: sticky;
  top: 94px;
  z-index: 88;
  background: rgba(8, 8, 7, .88);
  border-bottom: 1px solid rgba(214, 154, 49, .30);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
  backdrop-filter: blur(13px);
}
.secondary-nav-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secondary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}
.secondary-nav a {
  position: relative;
  padding: 12px 0 10px;
  color: #f5efe5;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
  opacity: .88;
  transition: color .17s ease, opacity .17s ease;
}
.secondary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0);
  transition: transform .17s ease;
}
.secondary-nav a:hover,
.secondary-nav a[aria-current="page"] {
  color: #fff8e8;
  opacity: 1;
}
.secondary-nav a:hover::after,
.secondary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.secondary-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
}
.secondary-menu-toggle i,
.secondary-menu-toggle i::before,
.secondary-menu-toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-2);
}
.secondary-menu-toggle i {
  position: relative;
}
.secondary-menu-toggle i::before,
.secondary-menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}
.secondary-menu-toggle i::before { top: -6px; }
.secondary-menu-toggle i::after { top: 6px; }
.service-area-line {
  align-items: flex-end !important;
  line-height: 1;
}
.service-area-line span {
  display: inline-block;
  padding-bottom: 2px;
}
.footer-skyline {
  width: 96px !important;
  vertical-align: bottom !important;
  transform: translateY(2px);
}

@media (max-width: 760px) {
  .secondary-nav-bar {
    top: 78px;
  }
  .secondary-nav-inner {
    justify-content: stretch;
  }
  .secondary-menu-toggle {
    display: inline-flex;
  }
  .secondary-nav {
    position: fixed;
    top: 120px;
    right: 13px;
    width: min(310px, calc(100vw - 26px));
    max-height: calc(100vh - 136px);
    overflow: auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 16px 18px;
    background: rgba(8, 8, 7, .98);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .menu-open .secondary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .secondary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .secondary-nav a:last-child {
    border-bottom: 0;
  }
  .secondary-nav a::after {
    display: none;
  }
  .footer-skyline {
    width: 88px !important;
  }
}



/* Stage 2.7 cleanup: CSS badge ring, simple menu, footer alignment, actual Mike photos */
.site-header .brand,
.footer-brand {
  align-items: center;
}

.brand-photo {
  background: radial-gradient(circle at 50% 46%, rgba(255,255,255,.08), rgba(0,0,0,.70) 72%);
  border: 1px solid rgba(243,189,90,.78);
  border-radius: 999px;
  overflow: visible;
  position: relative;
  box-shadow: 0 0 0 2px rgba(214,154,49,.10), 0 12px 26px rgba(0,0,0,.55);
}

.brand-photo::before,
.brand-photo::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.brand-photo::before {
  inset: -6px;
  border: 1px solid rgba(214,154,49,.58);
}

.brand-photo::after {
  inset: -11px;
  border: 1px solid rgba(214,154,49,.24);
}

.brand-photo img {
  width: 120%;
  height: 120%;
  object-fit: contain;
  object-position: center bottom;
  transform: translate(-2%, 3%);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,.55));
}

.site-header .brand-photo {
  width: 78px;
  height: 78px;
  flex-basis: 78px;
}

.footer-brand .brand-photo {
  width: 62px;
  height: 62px;
  flex-basis: 62px;
}

.secondary-nav a,
.footer-nav a {
  color: #f7f1e9;
  transition: color .16s ease, opacity .16s ease;
}

.secondary-nav a::after,
.footer-nav a::after,
.main-nav a::after {
  display: none !important;
}

.secondary-nav a:hover,
.footer-nav a:hover,
.main-nav a:hover {
  color: var(--gold-2);
}

.secondary-nav a[aria-current="page"],
.footer-nav a[aria-current="page"],
.main-nav a[aria-current="page"] {
  color: #f7f1e9;
}

.secondary-nav a[aria-current="page"]:hover,
.footer-nav a[aria-current="page"]:hover,
.main-nav a[aria-current="page"]:hover {
  color: var(--gold-2);
}

body[data-page="home"] .hero-grid {
  padding-top: 48px;
}

.offer-kicker {
  text-transform: none;
}

.image-frame--tall img,
.side-headshot img {
  object-fit: cover;
  object-position: center 32%;
}

.image-frame--wide img {
  object-fit: cover;
  object-position: center center;
}

.footer-bottom {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0 !important;
}

.footer-bottom p,
.footer-copy,
.footer-service,
.footer-service span {
  margin: 0;
  line-height: 1;
}

.footer-copy {
  flex: 0 1 auto;
}

.footer-service {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--muted);
  flex: 0 1 auto;
  text-align: right;
}

.footer-skyline {
  display: block;
  width: 112px;
  height: auto;
  max-height: 32px;
  color: var(--gold-2);
  flex: 0 0 auto;
  transform: translateY(1px);
}

@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .footer-service {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-grid {
    padding-top: 34px;
  }
  .site-header .brand-photo {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}

/* Stage 2.8 requested cleanup and image/layout adjustments */
.brand-photo {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.brand-photo::before,
.brand-photo::after {
  display: none !important;
  content: none !important;
}
.brand-photo img {
  width: 120% !important;
  height: 120% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: translate(-2%, -25%) !important;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,.55));
}

body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(320px, 410px) minmax(275px, 336px) minmax(330px, 380px);
  column-gap: 42px;
}
.hero-headshot.image-frame--tall {
  height: 343px;
}
.hero-headshot.image-frame--tall img,
.side-headshot img {
  object-fit: cover;
  object-position: center 32%;
}
.quick-offer-card {
  margin-left: clamp(8px, 1.2vw, 16px);
}

.image-frame--wide {
  height: auto !important;
  min-height: 0 !important;
  border-style: solid !important;
}
.image-frame--wide img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.footer-bottom {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0 !important;
}
.footer-copy,
.footer-service,
.footer-service span {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.footer-service {
  display: inline-flex !important;
  align-items: flex-end !important;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
}
.footer-skyline {
  display: block !important;
  width: 112px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    column-gap: 42px;
  }
  .hero-headshot.image-frame--tall {
    height: 330px;
  }
}
@media (max-width: 900px) {
  .footer-bottom {
    align-items: center !important;
  }
  .footer-service {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 760px) {
  body[data-page="home"] .hero-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .hero-headshot.image-frame--tall {
    height: 300px;
  }
  .quick-offer-card {
    margin-left: 0;
  }
  .site-header .brand-photo img {
    transform: translate(-2%, -20%) !important;
  }
}



/* Stage 2.9 refinements */
.secondary-nav-bar {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.secondary-nav-inner {
  min-height: 38px;
}
.secondary-nav a {
  color: #f5efe5 !important;
  opacity: .86;
  transition: color .16s ease, opacity .16s ease;
}
.secondary-nav a:hover,
.secondary-nav a[aria-current="page"]:hover {
  color: var(--gold-2) !important;
  opacity: 1;
}
.secondary-nav a[aria-current="page"] {
  color: #f5efe5 !important;
  opacity: .86;
}
.secondary-nav a::after {
  display: none !important;
}
.site-header .brand-photo {
  width: 72px !important;
  height: 72px !important;
  flex-basis: 72px !important;
}
.footer-brand .brand-photo {
  width: 56px !important;
  height: 56px !important;
  flex-basis: 56px !important;
}
.brand-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translateY(7%) !important;
  filter: none !important;
}
.brand,
.brand-photo,
.brand-photo img {
  background: transparent !important;
}
body[data-page="home"] .hero-grid {
  column-gap: 34px !important;
}
body[data-page="home"] .hero-headshot.image-frame--tall {
  justify-self: end;
}
body[data-page="home"] .quick-offer-card {
  margin-left: 0 !important;
}
.image-frame--side {
  height: 246px !important;
  border-style: solid !important;
}
.image-frame--side img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center 30% !important;
}
.footer-bottom {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 22px !important;
  padding: 14px 0 !important;
}
.footer-copy,
.footer-service,
.footer-service span {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.footer-service {
  display: inline-flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}
.footer-skyline {
  display: block !important;
  width: 112px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  vertical-align: bottom !important;
  flex: 0 0 auto !important;
}
@media (max-width: 760px) {
  .site-header .brand-photo {
    width: 56px !important;
    height: 56px !important;
    flex-basis: 56px !important;
  }
  .brand-photo img {
    transform: translateY(7%) !important;
  }
  .secondary-nav {
    background: rgba(8, 8, 7, .98);
  }
}

/* Stage 2.10 user refinements: remove header menu, restore badge size, purchased photos, intro image cleanup */
.secondary-nav-bar {
  display: none !important;
}

/* Restore the caricature badge size through CSS without editing the image asset. */
.site-header .brand-photo {
  width: 82px !important;
  height: 82px !important;
  flex-basis: 82px !important;
}
.footer-brand .brand-photo {
  width: 62px !important;
  height: 62px !important;
  flex-basis: 62px !important;
}
.brand-photo,
.brand-photo img {
  background: transparent !important;
}
.brand-photo img {
  width: 118% !important;
  height: 118% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translateY(5%) !important;
  filter: none !important;
}

/* Keep the hero positioned cleanly now that the secondary menu is gone. */
body[data-page="home"] .hero-grid {
  padding-top: 40px !important;
}

/* Intro house: no border or dark card backing, just the photo with a dark gradient treatment. */
.intro-house-frame {
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, #3a3a36 0%, #151513 100%) !important;
  box-shadow: none !important;
  overflow: hidden;
}
.intro-house-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .82;
  mix-blend-mode: luminosity;
}
.intro-house-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(85, 85, 80, .18), rgba(4, 4, 4, .48));
  pointer-events: none;
}

/* Remove the extra dark rounded-square backing/shadow behind the family image and quote. */
.why-grid > .image-frame--wide {
  background: transparent !important;
  box-shadow: none !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: var(--radius) !important;
}
.why-grid > .image-frame--wide img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
}
.quote-card {
  box-shadow: none !important;
  background: rgba(15, 15, 14, .72) !important;
}

/* Recently Purchased image cards use actual photos. */
.purchase-card img {
  height: 92px;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

@media (max-width: 900px) {
  .site-header .brand-photo {
    width: 72px !important;
    height: 72px !important;
    flex-basis: 72px !important;
  }
}
@media (max-width: 760px) {
  .site-header .brand-photo {
    width: 60px !important;
    height: 60px !important;
    flex-basis: 60px !important;
  }
  body[data-page="home"] .hero-grid {
    padding-top: 30px !important;
  }
}

/* Stage 2.11 intro-image color treatment, badge sizing, and logo glow cleanup */
.site-header .header-inner {
  min-height: 94px !important;
}

.site-header .brand {
  gap: 8px !important;
  overflow: visible !important;
}

.site-header .brand-copy {
  margin-left: -4px !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.site-header .brand-photo {
  width: 96px !important;
  height: 90px !important;
  flex: 0 0 94px !important;
  overflow: visible !important;
}

.site-header .brand-photo img {
  width: 140% !important;
  height: 140% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translate(-8%, 12%) !important;
  filter: none !important;
}

.footer-brand .brand-photo {
  width: 72px !important;
  height: 68px !important;
  flex: 0 0 70px !important;
  overflow: visible !important;
}

.footer-brand .brand-photo img {
  width: 132% !important;
  height: 132% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translate(-8%, 12%) !important;
  filter: none !important;
}

.brand,
.brand-copy,
.brand-title,
.brand-name-row,
.brand-name,
.brand-photo,
.brand-photo img {
  background: transparent !important;
  box-shadow: none !important;
}

.brand::before,
.brand::after,
.brand-copy::before,
.brand-copy::after,
.brand-title::before,
.brand-title::after,
.footer-brand::before,
.footer-brand::after {
  display: none !important;
  content: none !important;
}

.brand-title,
.footer-brand .brand-title {
  text-shadow: none !important;
  filter: none !important;
}

/* Keep the intro house in color and make it feel like the original mockup's blended panel. */
.intro-house-frame {
  position: relative !important;
  min-height: 218px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #0b0b0a !important;
  box-shadow: none !important;
  overflow: hidden !important;
  isolation: isolate;
}

.intro-house-frame img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  z-index: 0;
}

.intro-house-frame::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 32, 31, .88) 0%, rgba(26, 26, 24, .56) 34%, rgba(12, 12, 11, .24) 68%, rgba(2, 2, 2, .72) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .18));
}

.intro-house-frame::after {
  display: none !important;
  content: none !important;
}

.footer-bottom {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 22px !important;
  padding: 14px 0 !important;
}

.footer-copy,
.footer-service,
.footer-service span {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.footer-service {
  display: inline-flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}

.footer-skyline {
  display: block !important;
  width: 112px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  vertical-align: bottom !important;
  flex: 0 0 auto !important;
}

@media (max-width: 1120px) {
  .site-header .brand-photo {
    width: 86px !important;
    height: 82px !important;
    flex-basis: 84px !important;
  }
  .site-header .brand-photo img {
    width: 136% !important;
    height: 136% !important;
    transform: translate(-8%, 12%) !important;
  }
}

@media (max-width: 760px) {
  .site-header .header-inner {
    min-height: 78px !important;
  }
  .site-header .brand-photo {
    width: 62px !important;
    height: 60px !important;
    flex-basis: 60px !important;
  }
  .site-header .brand-photo img {
    width: 132% !important;
    height: 132% !important;
    transform: translate(-8%, 10%) !important;
  }
  .intro-house-frame {
    min-height: 210px !important;
  }
}

/* Stage 2.12 brand lockup and intro image blend cleanup */
.site-header .header-inner {
  min-height: 96px !important;
  overflow: hidden !important;
}

.site-header .brand {
  position: relative !important;
  min-height: 90px !important;
  min-width: 350px !important;
  padding-left: 84px !important;
  gap: 0 !important;
  align-items: center !important;
  overflow: visible !important;
}

.site-header .brand-photo {
  position: absolute !important;
  left: -4px !important;
  bottom: 0 !important;
  width: 92px !important;
  height: 92px !important;
  flex: 0 0 92px !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  z-index: 1;
}

.site-header .brand-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: none !important;
  filter: none !important;
}

.site-header .brand-copy {
  position: relative !important;
  z-index: 2;
  margin-left: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.footer-brand {
  position: relative !important;
  min-height: 74px !important;
  min-width: 270px !important;
  padding-left: 68px !important;
  gap: 0 !important;
  align-items: center !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.footer-brand .brand-photo {
  position: absolute !important;
  left: -2px !important;
  bottom: 0 !important;
  width: 74px !important;
  height: 74px !important;
  flex: 0 0 74px !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  z-index: 1;
}

.footer-brand .brand-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: none !important;
  filter: none !important;
}

.footer-brand .brand-copy {
  position: relative !important;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.brand,
.brand-copy,
.brand-title,
.brand-name-row,
.brand-name,
.site-footer .brand,
.site-footer .brand-copy,
.site-footer .brand-title,
.site-footer .brand-name-row,
.site-footer .brand-name {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

.why-band {
  position: relative !important;
  overflow: hidden !important;
  background: #090908 !important;
}

.why-band::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(49vw, 720px);
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #090908 0%, rgba(9, 9, 8, .78) 22%, rgba(9, 9, 8, .28) 52%, rgba(0, 0, 0, .50) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .30), rgba(0, 0, 0, .30)),
    url("../assets/intro-house.png") center right / cover no-repeat;
}

.why-grid {
  position: relative !important;
  z-index: 1;
}

.intro-house-frame {
  visibility: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: 220px !important;
}

.intro-house-frame img,
.intro-house-frame::before,
.intro-house-frame::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 1120px) {
  .site-header .brand {
    min-width: 320px !important;
    padding-left: 76px !important;
  }
  .site-header .brand-photo {
    width: 84px !important;
    height: 84px !important;
    flex-basis: 84px !important;
  }
  .why-band::before {
    width: 52vw;
  }
}

@media (max-width: 900px) {
  .why-band::before {
    width: 100%;
    opacity: .42;
    background:
      linear-gradient(90deg, rgba(9, 9, 8, .90), rgba(9, 9, 8, .72)),
      linear-gradient(0deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .42)),
      url("../assets/intro-house.png") center / cover no-repeat;
  }
  .intro-house-frame {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .site-header .header-inner {
    min-height: 82px !important;
  }
  .site-header .brand {
    min-height: 76px !important;
    min-width: 225px !important;
    padding-left: 56px !important;
  }
  .site-header .brand-photo {
    left: -3px !important;
    width: 62px !important;
    height: 62px !important;
    flex-basis: 62px !important;
  }
  .footer-brand {
    padding-left: 56px !important;
    min-height: 62px !important;
    min-width: 225px !important;
  }
  .footer-brand .brand-photo {
    width: 62px !important;
    height: 62px !important;
    flex-basis: 62px !important;
  }
}


/* Stage 2.13 footer brand match + recreated intro house blend */
.footer-brand {
  position: relative !important;
  min-height: 86px !important;
  min-width: 350px !important;
  padding-left: 84px !important;
  gap: 0 !important;
  align-items: center !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.footer-brand .brand-photo {
  position: absolute !important;
  left: -4px !important;
  bottom: 0 !important;
  width: 92px !important;
  height: 92px !important;
  flex: 0 0 92px !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  z-index: 1 !important;
}

.footer-brand .brand-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: none !important;
  filter: none !important;
}

.footer-brand .brand-copy {
  position: relative !important;
  z-index: 2 !important;
  margin-left: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.footer-brand .brand-title {
  font-size: clamp(2.0rem, 2.2vw, 2.45rem) !important;
  white-space: nowrap !important;
}

.footer-brand .brand-name-row {
  gap: .32rem !important;
  justify-content: flex-start !important;
}

.footer-brand .brand-name {
  font-size: clamp(1.55rem, 1.7vw, 2rem) !important;
}

.footer-brand .name-flourish {
  width: 64px !important;
}

.why-band {
  position: relative !important;
  overflow: hidden !important;
  background: #070707 !important;
}

.why-band::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(56vw, 920px);
  background: url("../assets/intro-house-wide.png") right center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.why-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #070707 0%,
      #070707 18%,
      rgba(7,7,7,0.97) 31%,
      rgba(7,7,7,0.80) 42%,
      rgba(7,7,7,0.36) 57%,
      rgba(7,7,7,0.08) 71%,
      rgba(7,7,7,0.0) 78%,
      rgba(7,7,7,0.18) 88%,
      rgba(7,7,7,0.86) 100%);
}

.why-grid {
  position: relative !important;
  z-index: 1 !important;
}

.intro-house-frame {
  display: none !important;
}

@media (max-width: 980px) {
  .footer-brand {
    min-width: 300px !important;
    padding-left: 74px !important;
    min-height: 78px !important;
  }
  .footer-brand .brand-photo {
    width: 82px !important;
    height: 82px !important;
    flex-basis: 82px !important;
  }
  .footer-brand .brand-title {
    font-size: 2rem !important;
  }
  .footer-brand .brand-name {
    font-size: 1.7rem !important;
  }
  .footer-brand .name-flourish {
    width: 50px !important;
  }
  .why-band::before {
    width: 54vw;
  }
}

@media (max-width: 760px) {
  .footer-brand {
    min-width: 250px !important;
    padding-left: 60px !important;
    min-height: 62px !important;
  }
  .footer-brand .brand-photo {
    width: 64px !important;
    height: 64px !important;
    flex-basis: 64px !important;
  }
  .footer-brand .brand-title {
    font-size: 1.42rem !important;
  }
  .footer-brand .brand-name {
    font-size: 1.2rem !important;
  }
  .footer-brand .name-flourish {
    width: 30px !important;
  }
  .why-band::before {
    width: 100%;
    opacity: .42;
    background-position: center right;
  }
  .why-band::after {
    background: linear-gradient(180deg, rgba(7,7,7,.38), rgba(7,7,7,.76));
  }
}


/* Stage 2.14 intro balance and tighter brand lockup */
.why-band::before {
  width: min(47vw, 760px) !important;
  background-position: center right !important;
}

.why-band::after {
  background:
    linear-gradient(90deg,
      #070707 0%,
      #070707 22%,
      rgba(7,7,7,0.98) 35%,
      rgba(7,7,7,0.72) 48%,
      rgba(7,7,7,0.28) 62%,
      rgba(7,7,7,0.04) 76%,
      rgba(7,7,7,0.14) 88%,
      rgba(7,7,7,0.82) 100%) !important;
}

.why-grid {
  grid-template-columns: .92fr 1.18fr !important;
  gap: 28px !important;
  max-width: 1060px !important;
  margin-left: max(24px, calc((100vw - 1180px) / 2)) !important;
  margin-right: auto !important;
  padding-right: 34vw !important;
}

.site-header .brand {
  padding-left: 76px !important;
}

.site-header .brand-photo {
  left: 2px !important;
}

.footer-brand {
  padding-left: 76px !important;
  min-width: 330px !important;
}

.footer-brand .brand-photo {
  left: 2px !important;
}

.site-header .name-flourish,
.footer-brand .name-flourish {
  width: 54px !important;
}

@media (max-width: 980px) {
  .why-band::before {
    width: 50vw !important;
  }

  .why-grid {
    grid-template-columns: 1fr 1.15fr !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-right: 28vw !important;
  }

  .site-header .brand {
    padding-left: 68px !important;
  }

  .footer-brand {
    padding-left: 68px !important;
    min-width: 295px !important;
  }

  .site-header .name-flourish,
  .footer-brand .name-flourish {
    width: 43px !important;
  }
}

@media (max-width: 760px) {
  .why-band::before {
    width: 100% !important;
  }

  .why-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .site-header .brand {
    padding-left: 56px !important;
  }

  .footer-brand {
    padding-left: 56px !important;
    min-width: 240px !important;
  }

  .site-header .name-flourish,
  .footer-brand .name-flourish {
    width: 26px !important;
  }
}


/* Stage 2.15 restore balanced Intro row and fine-tune brand spacing */
.site-header .brand {
  padding-left: 82px !important;
}
.site-header .brand-photo {
  left: -1px !important;
}
.footer-brand {
  padding-left: 82px !important;
}
.footer-brand .brand-photo {
  left: -1px !important;
}
.site-header .name-flourish,
.footer-brand .name-flourish {
  width: 46px !important;
}

.why-band {
  background: #070707 !important;
}
.why-band::before,
.why-band::after {
  display: none !important;
}
.why-grid {
  display: grid !important;
  grid-template-columns: minmax(250px, 0.9fr) minmax(310px, 1.08fr) minmax(320px, 0.95fr) !important;
  gap: 26px !important;
  align-items: stretch !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 26px 0 24px !important;
}
.image-frame--wide {
  height: 248px !important;
  border-style: solid !important;
}
.intro-house-frame {
  display: block !important;
  visibility: visible !important;
  position: relative !important;
  overflow: hidden !important;
  height: 248px !important;
  min-height: 248px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  align-self: stretch !important;
  margin-right: 18px !important;
}
.intro-house-frame img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
}
.intro-house-frame::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg,
    rgba(7,7,7,0.88) 0%,
    rgba(7,7,7,0.58) 14%,
    rgba(7,7,7,0.18) 33%,
    rgba(7,7,7,0.04) 58%,
    rgba(7,7,7,0.0) 84%) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}
.intro-house-frame::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: 18px !important;
  background: linear-gradient(90deg, rgba(7,7,7,0.0) 0%, rgba(7,7,7,0.98) 100%) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}
.why-copy {
  align-self: center !important;
}
.why-copy p {
  max-width: 470px !important;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1fr) minmax(280px, 0.9fr) !important;
    gap: 22px !important;
  }
  .intro-house-frame,
  .image-frame--wide {
    height: 228px !important;
    min-height: 228px !important;
  }
}

@media (max-width: 900px) {
  .site-header .brand,
  .footer-brand {
    padding-left: 74px !important;
  }
  .site-header .name-flourish,
  .footer-brand .name-flourish {
    width: 40px !important;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "family copy"
      "house house" !important;
    align-items: start !important;
  }
  .why-grid > .image-frame--wide { grid-area: family; }
  .why-grid > .why-copy { grid-area: copy; }
  .why-grid > .intro-house-frame { grid-area: house; margin-right: 0 !important; }
  .intro-house-frame,
  .image-frame--wide {
    height: 240px !important;
    min-height: 240px !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand,
  .footer-brand {
    padding-left: 62px !important;
  }
  .site-header .brand-photo,
  .footer-brand .brand-photo {
    left: -2px !important;
  }
  .site-header .name-flourish,
  .footer-brand .name-flourish {
    width: 22px !important;
  }
  .why-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "family"
      "copy"
      "house" !important;
  }
  .intro-house-frame,
  .image-frame--wide {
    height: 210px !important;
    min-height: 210px !important;
  }
  .intro-house-frame { margin-right: 0 !important; }
}


/* Stage 2.16 fix Intro regression and force shorter flourishes */
.brand-name-row .name-flourish,
.site-header .brand-name-row .name-flourish,
.footer-brand .brand-name-row .name-flourish {
  width: 39px !important;
  flex: 0 0 39px !important;
  max-width: 39px !important;
}

.why-band {
  position: relative !important;
  overflow: hidden !important;
  background: #070707 !important;
}
.why-band::before,
.why-band::after {
  display: none !important;
  content: none !important;
}
.why-grid {
  display: grid !important;
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 26px 0 24px !important;
  grid-template-columns: minmax(260px, .95fr) minmax(340px, 1.15fr) minmax(360px, 1fr) !important;
  gap: 28px !important;
  align-items: center !important;
}
.why-grid > .image-frame--wide {
  height: 248px !important;
  min-height: 248px !important;
  border-style: solid !important;
  align-self: center !important;
}
.why-grid > .why-copy {
  align-self: center !important;
  min-width: 0 !important;
}
.why-copy p {
  max-width: 500px !important;
}
.intro-house-frame {
  display: block !important;
  visibility: visible !important;
  position: relative !important;
  overflow: hidden !important;
  height: 248px !important;
  min-height: 248px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #070707 !important;
  box-shadow: none !important;
  align-self: center !important;
  margin: 0 !important;
}
.intro-house-frame img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
  opacity: .94 !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 84%, transparent 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 84%, transparent 100%) !important;
}
.intro-house-frame::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(90deg,
    rgba(7,7,7,.78) 0%,
    rgba(7,7,7,.34) 18%,
    rgba(7,7,7,.02) 42%,
    rgba(7,7,7,.02) 70%,
    rgba(7,7,7,.62) 100%) !important;
}
.intro-house-frame::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  box-shadow: inset 0 0 32px rgba(0,0,0,.48) !important;
  background: none !important;
}

@media (max-width: 1100px) {
  .why-grid {
    width: min(1060px, calc(100% - 40px)) !important;
    grid-template-columns: minmax(230px, .9fr) minmax(300px, 1.12fr) minmax(300px, .95fr) !important;
    gap: 22px !important;
  }
  .why-grid > .image-frame--wide,
  .intro-house-frame {
    height: 228px !important;
    min-height: 228px !important;
  }
}

@media (max-width: 900px) {
  .brand-name-row .name-flourish,
  .site-header .brand-name-row .name-flourish,
  .footer-brand .brand-name-row .name-flourish {
    width: 32px !important;
    flex-basis: 32px !important;
    max-width: 32px !important;
  }
  .why-grid {
    width: min(760px, calc(100% - 36px)) !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "family copy"
      "house house" !important;
    align-items: start !important;
  }
  .why-grid > .image-frame--wide { grid-area: family !important; }
  .why-grid > .why-copy { grid-area: copy !important; }
  .why-grid > .intro-house-frame { grid-area: house !important; }
  .why-grid > .image-frame--wide,
  .intro-house-frame {
    height: 240px !important;
    min-height: 240px !important;
  }
}

@media (max-width: 640px) {
  .brand-name-row .name-flourish,
  .site-header .brand-name-row .name-flourish,
  .footer-brand .brand-name-row .name-flourish {
    width: 20px !important;
    flex-basis: 20px !important;
    max-width: 20px !important;
  }
  .why-grid {
    width: min(100% - 28px, 520px) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "family"
      "copy"
      "house" !important;
  }
  .why-grid > .image-frame--wide,
  .intro-house-frame {
    height: 210px !important;
    min-height: 210px !important;
  }
}


/* Stage 2.17 transparent hero portrait and intro-house cleanup */
.site-header .brand-photo,
.footer-brand .brand-photo {
  width: 110px !important;
  height: 110px !important;
  flex-basis: 110px !important;
}

.site-header .brand {
  min-height: 100px !important;
  padding-left: 94px !important;
}

.site-header .brand-photo {
  left: -2px !important;
  bottom: -2px !important;
}

.footer-brand {
  min-height: 94px !important;
  padding-left: 94px !important;
  min-width: 360px !important;
}

.footer-brand .brand-photo {
  left: -2px !important;
  bottom: -2px !important;
}

.brand-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: none !important;
  transform: none !important;
}

/* Make the homepage portrait feel integrated instead of framed. */
.hero-person {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  align-self: end !important;
  min-height: 500px !important;
  margin-right: -52px !important;
  pointer-events: none !important;
}

.hero-person .image-frame,
.hero-person .image-frame--person,
.hero-person figure,
.hero-person picture {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.hero-person img,
.hero-person .image-frame img,
.hero-person .image-frame--person img {
  width: min(430px, 36vw) !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  filter: none !important;
}

.hero-form,
.hero-home .quick-offer-card {
  position: relative !important;
  z-index: 4 !important;
  max-width: 440px !important;
  width: min(440px, 100%) !important;
  margin-left: -28px !important;
}

/* Remove leftover Intro house fade/gradient attempt now that the image asset already carries the blend. */
.intro-house-frame::before,
.intro-house-frame::after {
  display: none !important;
  content: none !important;
}

.intro-house-frame {
  background: transparent !important;
  box-shadow: none !important;
}

.intro-house-frame img {
  filter: none !important;
  mix-blend-mode: normal !important;
}

.why-grid {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 1100px) {
  .hero-person {
    min-height: 440px !important;
    margin-right: -32px !important;
  }

  .hero-person img,
  .hero-person .image-frame img,
  .hero-person .image-frame--person img {
    width: min(390px, 35vw) !important;
  }

  .hero-form,
  .hero-home .quick-offer-card {
    max-width: 420px !important;
    width: min(420px, 100%) !important;
    margin-left: -18px !important;
  }
}

@media (max-width: 900px) {
  .hero-person {
    min-height: 0 !important;
    margin: 8px auto 0 !important;
    pointer-events: auto !important;
  }

  .hero-person img,
  .hero-person .image-frame img,
  .hero-person .image-frame--person img {
    width: min(360px, 78vw) !important;
  }

  .hero-form,
  .hero-home .quick-offer-card {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 440px !important;
  }

  .site-header .brand-photo,
  .footer-brand .brand-photo {
    width: 86px !important;
    height: 86px !important;
    flex-basis: 86px !important;
  }

  .site-header .brand,
  .footer-brand {
    padding-left: 74px !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand-photo,
  .footer-brand .brand-photo {
    width: 68px !important;
    height: 68px !important;
    flex-basis: 68px !important;
  }

  .site-header .brand,
  .footer-brand {
    padding-left: 60px !important;
  }

  .hero-person img,
  .hero-person .image-frame img,
  .hero-person .image-frame--person img {
    width: min(310px, 84vw) !important;
  }
}


/* Stage 2.18 final hero cleanup, flourish reduction, and intro-house artifact removal */
/* Keep badge spacing as-is; only shorten flourishes further. */
.site-header .brand-name-row .name-flourish,
.footer-brand .brand-name-row .name-flourish,
.brand-name-row .name-flourish {
  width: 14px !important;
  min-width: 14px !important;
  flex-basis: 14px !important;
  max-width: 14px !important;
  opacity: .82 !important;
}

.site-header .brand-name-row,
.footer-brand .brand-name-row {
  gap: .22rem !important;
}

/* Remove all remaining CSS-generated intro-house blending artifacts. */
.intro-house-frame {
  position: relative !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.intro-house-frame::before,
.intro-house-frame::after {
  display: none !important;
  content: none !important;
  background: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.intro-house-frame img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

/* Actual homepage hero classes: remove frame and integrate the transparent portrait. */
body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 430px) minmax(430px, 490px) !important;
  gap: 18px !important;
  align-items: end !important;
  min-height: 560px !important;
  padding-top: 26px !important;
  padding-bottom: 18px !important;
}

body[data-page="home"] .hero-headshot.image-frame,
body[data-page="home"] .hero-headshot.image-frame--tall {
  align-self: stretch !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  min-height: 520px !important;
  height: auto !important;
  margin: -8px -36px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 2 !important;
}

body[data-page="home"] .hero-headshot.image-frame img,
body[data-page="home"] .hero-headshot.image-frame--tall img,
body[data-page="home"] .hero-headshot img {
  display: block !important;
  width: min(500px, 39vw) !important;
  max-width: none !important;
  max-height: 540px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

body[data-page="home"] .quick-offer-card,
body[data-page="home"] .hero-home .quick-offer-card,
body[data-page="home"] form.quick-offer-card.quick-offer-card--lite {
  position: relative !important;
  z-index: 4 !important;
  max-width: 480px !important;
  width: min(480px, 100%) !important;
  margin-left: -54px !important;
  padding-left: 26px !important;
  padding-right: 26px !important;
}

body[data-page="home"] .quick-offer-card .field input,
body[data-page="home"] .quick-offer-card .field textarea {
  width: 100% !important;
}

@media (max-width: 1100px) {
  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(260px, 1fr) minmax(290px, 390px) minmax(390px, 450px) !important;
    min-height: 520px !important;
    gap: 14px !important;
  }

  body[data-page="home"] .hero-headshot.image-frame,
  body[data-page="home"] .hero-headshot.image-frame--tall {
    min-height: 470px !important;
    margin-right: -24px !important;
  }

  body[data-page="home"] .hero-headshot.image-frame img,
  body[data-page="home"] .hero-headshot.image-frame--tall img,
  body[data-page="home"] .hero-headshot img {
    width: min(440px, 37vw) !important;
    max-height: 500px !important;
  }

  body[data-page="home"] .quick-offer-card,
  body[data-page="home"] .hero-home .quick-offer-card,
  body[data-page="home"] form.quick-offer-card.quick-offer-card--lite {
    max-width: 450px !important;
    width: min(450px, 100%) !important;
    margin-left: -36px !important;
  }
}

@media (max-width: 900px) {
  .site-header .brand-name-row .name-flourish,
  .footer-brand .brand-name-row .name-flourish,
  .brand-name-row .name-flourish {
    width: 10px !important;
    min-width: 10px !important;
    flex-basis: 10px !important;
    max-width: 10px !important;
  }

  body[data-page="home"] .hero-grid {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    gap: 14px !important;
    padding-top: 24px !important;
  }

  body[data-page="home"] .hero-headshot.image-frame,
  body[data-page="home"] .hero-headshot.image-frame--tall {
    min-height: 0 !important;
    margin: 0 auto !important;
    align-self: center !important;
  }

  body[data-page="home"] .hero-headshot.image-frame img,
  body[data-page="home"] .hero-headshot.image-frame--tall img,
  body[data-page="home"] .hero-headshot img {
    width: min(360px, 82vw) !important;
    max-height: none !important;
  }

  body[data-page="home"] .quick-offer-card,
  body[data-page="home"] .hero-home .quick-offer-card,
  body[data-page="home"] form.quick-offer-card.quick-offer-card--lite {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 460px !important;
    width: min(460px, 100%) !important;
  }
}


/* Stage 2.19 hero layering correction: portrait is no longer a grid column */
.hero-home {
  position: relative !important;
  min-height: 560px !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.hero-home .hero-bg {
  z-index: 0 !important;
}

.hero-portrait-layer {
  position: absolute !important;
  z-index: 2 !important;
  left: 50% !important;
  bottom: -2px !important;
  height: min(565px, 96%) !important;
  transform: translateX(-42%) !important;
  pointer-events: none !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

.hero-portrait-layer img {
  display: block !important;
  height: 100% !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  filter: none !important;
}

body[data-page="home"] .hero-grid {
  position: relative !important;
  z-index: 3 !important;
  display: grid !important;
  grid-template-columns: minmax(330px, 460px) minmax(430px, 500px) !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 150px !important;
  min-height: 560px !important;
  padding-top: 30px !important;
  padding-bottom: 26px !important;
}

body[data-page="home"] .hero-copy {
  grid-column: 1 !important;
  max-width: 455px !important;
  position: relative !important;
  z-index: 4 !important;
}

body[data-page="home"] .quick-offer-card,
body[data-page="home"] .hero-home .quick-offer-card,
body[data-page="home"] form.quick-offer-card.quick-offer-card--lite {
  grid-column: 2 !important;
  position: relative !important;
  z-index: 5 !important;
  max-width: 500px !important;
  width: 500px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 28px !important;
  justify-self: end !important;
}

body[data-page="home"] .quick-offer-card .field textarea {
  min-height: 96px !important;
}

/* The old in-grid portrait class should not affect layout if cached HTML remains. */
body[data-page="home"] .hero-headshot {
  display: none !important;
}

/* Strong final flourish override. */
.site-header .brand-name-row .name-flourish,
.footer-brand .brand-name-row .name-flourish,
.brand-name-row .name-flourish {
  width: 12px !important;
  min-width: 12px !important;
  flex-basis: 12px !important;
  max-width: 12px !important;
}

/* Remove any remaining CSS artifacting from the Intro house image. */
.intro-house-frame::before,
.intro-house-frame::after {
  display: none !important;
  content: none !important;
  background: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.intro-house-frame img {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

@media (max-width: 1180px) {
  .hero-portrait-layer {
    height: min(520px, 94%) !important;
    transform: translateX(-43%) !important;
  }

  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(300px, 420px) minmax(400px, 460px) !important;
    gap: 108px !important;
  }

  body[data-page="home"] .quick-offer-card,
  body[data-page="home"] .hero-home .quick-offer-card,
  body[data-page="home"] form.quick-offer-card.quick-offer-card--lite {
    width: 460px !important;
    max-width: 460px !important;
  }
}

@media (max-width: 980px) {
  .hero-home {
    min-height: auto !important;
  }

  .hero-portrait-layer {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    height: auto !important;
    transform: none !important;
    z-index: 3 !important;
    order: 2 !important;
    margin: 0 auto -10px !important;
  }

  .hero-portrait-layer img {
    width: min(360px, 78vw) !important;
    height: auto !important;
  }

  body[data-page="home"] .hero-grid {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    gap: 18px !important;
    padding-top: 30px !important;
    padding-bottom: 28px !important;
  }

  body[data-page="home"] .hero-copy {
    grid-column: auto !important;
    justify-self: start !important;
  }

  body[data-page="home"] .quick-offer-card,
  body[data-page="home"] .hero-home .quick-offer-card,
  body[data-page="home"] form.quick-offer-card.quick-offer-card--lite {
    grid-column: auto !important;
    width: min(500px, 100%) !important;
    max-width: 500px !important;
    justify-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* Stage 2.20 cleaned asset set and hero portrait source guard */
body[data-page="home"] .hero-headshot {
  display: none !important;
}

.hero-portrait-layer {
  display: flex !important;
}

.hero-portrait-layer img {
  content: url("../assets/hero-headshot.png");
}


/* Stage 2.21 hero overlap tuning */
.hero-portrait-layer {
  left: 46.2% !important;
  bottom: -2px !important;
  height: min(480px, 84%) !important;
  transform: translateX(-46%) !important;
}

.hero-portrait-layer img {
  height: 100% !important;
  width: auto !important;
  max-width: none !important;
}

body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(330px, 460px) minmax(405px, 425px) !important;
  gap: 138px !important;
  min-height: 540px !important;
}

body[data-page="home"] .quick-offer-card,
body[data-page="home"] .hero-home .quick-offer-card,
body[data-page="home"] form.quick-offer-card.quick-offer-card--lite {
  max-width: 425px !important;
  width: 425px !important;
  padding: 26px 22px !important;
}

@media (max-width: 1180px) {
  .hero-portrait-layer {
    left: 45.8% !important;
    height: min(445px, 82%) !important;
    transform: translateX(-46%) !important;
  }

  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(300px, 420px) minmax(360px, 390px) !important;
    gap: 92px !important;
  }

  body[data-page="home"] .quick-offer-card,
  body[data-page="home"] .hero-home .quick-offer-card,
  body[data-page="home"] form.quick-offer-card.quick-offer-card--lite {
    width: 385px !important;
    max-width: 385px !important;
  }
}


/* Stage 2.23 get-offer form upload validation and result states */
.upload-error {
  display: none;
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 112, 106, .55);
  border-radius: 9px;
  color: #ffd4d1;
  background: rgba(255, 112, 106, .10);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
}

.upload-box.has-upload-error {
  border-color: rgba(255, 112, 106, .75);
  background: rgba(255, 112, 106, .06);
}

.upload-box.has-upload-error .upload-error {
  display: block;
}

.form-result-active {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.result-wrap {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 70px 0;
  position: relative;
}

.result-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,6,.72), rgba(7,7,6,.94)),
    url("../assets/cincinnati-hero-bg.jpeg") center / cover no-repeat;
  z-index: 0;
}

.result-card {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 38px));
  padding: 32px;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(12, 12, 11, .92);
  box-shadow: var(--shadow);
}

.result-card h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.result-card p {
  margin: 0 auto 24px;
  color: var(--muted);
  max-width: 460px;
}


/* Stage 2.23 Turnstile inline error and cumulative photo selection */
.form-message {
  display: none;
  margin: 12px 0 0;
  padding: 11px 13px;
  border: 1px solid rgba(255, 112, 106, .55);
  border-radius: 9px;
  color: #ffd4d1;
  background: rgba(255, 112, 106, .10);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-message.is-visible {
  display: block;
}

.upload-box .file-list {
  overflow-wrap: anywhere;
}
