* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
}

.page {
  background: #fff;
}

.wrap {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--om-ink-150);
}

.navLogo {
  display: block;
  width: auto;
  height: 48px;
}

.navlinks {
  display: flex;
  gap: 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--om-ink-700);
}

.navlinks a {
  color: inherit;
  text-decoration: none;
}

.navlinks a.active {
  color: var(--om-ink-950);
  position: relative;
}

.navlinks a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--om-red-500);
}

.navcta {
  background: var(--om-red-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--om-red-500);
  color: #fff;
}

.btn-primary:hover {
  background: var(--om-red-600);
}

.btn-ghost {
  background: transparent;
  color: var(--om-ink-950);
  border-color: var(--om-ink-200);
}

.btn-ghost:hover {
  background: var(--om-ink-100);
}

.hero {
  padding: 56px 0 96px;
}

.masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--om-ink-200);
  margin-bottom: 56px;
}

.eyebrowLarge {
  font-size: 16px;
}

.updated {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--om-ink-500);
}

.herohead {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.display-hero {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 7.8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--om-ink-950);
  text-transform: uppercase;
  margin: 0;
}

.herosub p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--om-ink-700);
  margin: 0 0 20px;
}

.herobtns {
  display: flex;
  gap: 12px;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.showcase-single {
  grid-template-columns: minmax(0, 760px);
}

.showcase-triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.showcase-quad {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.heroCard {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.heroCard:hover {
  box-shadow: var(--shadow-lg, var(--shadow-md));
  transform: translateY(-2px);
}

.heroPhoto {
  position: relative;
  height: 380px;
  margin: 0;
  overflow: hidden;
  background: var(--om-ink-100);
}

.heroPhoto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.chips {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  margin: 0;
}

.chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.chip-dark {
  background: var(--om-ink-950);
  color: #fff;
}

.chip-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--om-ink-950);
}

.chip-warning {
  background: var(--om-warning-bg);
  color: var(--om-warning);
}

.heroBody {
  padding: 26px 30px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.priceBig {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.025em;
  color: var(--om-ink-950);
  font-feature-settings: "tnum";
  line-height: 1;
  margin-top: 10px;
}

.addr {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--om-ink-900);
  margin-top: 12px;
}

.hood {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--om-ink-500);
  margin-top: 2px;
}

.statrow {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--om-ink-700);
  font-feature-settings: "tnum";
}

.statrow span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.statIcon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 112px 0;
}

.section-alt {
  background: var(--om-cream-50);
}

.sectionKicker {
  display: block;
  margin-bottom: 24px;
}

.brokerCard {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.brokerAvatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--om-ink-950);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.02em;
}

.brokerName {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.015em;
  color: var(--om-ink-950);
  margin-top: 10px;
}

.brokerRole {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--om-ink-600);
  margin-top: 4px;
}

.brokerMeta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--om-ink-800);
}

.brokerMeta a {
  color: inherit;
  text-decoration: none;
}

.ctaBlock {
  background: var(--om-ink-950);
  color: #fff;
  padding: 112px 0;
}

.ctaGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.ctaKicker {
  color: var(--om-red-500);
}

.ctaHead {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin: 18px 0 22px;
}

.ctaLede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 460px;
}

.formCard {
  background: #fff;
  color: var(--om-ink-950);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--om-ink-700);
}

.field input,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--om-ink-200);
  border-radius: var(--radius-md);
  outline: none;
  background: #fff;
}

.field input:focus,
.field select:focus {
  border-color: var(--om-red-500);
  box-shadow: 0 0 0 3px rgba(236, 29, 36, 0.12);
}

.formSubmit {
  width: 100%;
  margin-top: 6px;
}

.formNote {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--om-ink-500);
  margin-top: 10px;
}

.footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 40px;
}

.footTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  flex-wrap: wrap;
}

.footerLogo {
  width: auto;
  height: 44px;
  margin-bottom: 22px;
}

.footAbout p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.7);
}

.footContact {
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footContact a {
  color: inherit;
  text-decoration: none;
}

.footBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.footBottom a {
  color: inherit;
  text-decoration: none;
}

.footLegal {
  display: flex;
  gap: 22px;
}

.promoBanner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--om-red-500);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  margin-bottom: 32px;
}

.promoBanner strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
}

.promoIcon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 700px) {
  .promoBanner {
    font-size: 14px;
    padding: 14px 18px;
  }
}

.guideHero {
  padding-bottom: 64px;
}

.guideTitle {
  font-size: clamp(48px, 5.4vw, 76px);
  margin-bottom: 20px;
}

.guideSubhead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--om-ink-700);
  max-width: 620px;
  margin: 0 0 36px;
}

.guideToc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 24px;
  border-top: 1px solid var(--om-ink-200);
}

.guideToc a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--om-ink-700);
  text-decoration: none;
}

.guideToc a:hover {
  color: var(--om-red-500);
}

.guideH2 {
  font-size: clamp(30px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  margin-top: 14px;
  max-width: 640px;
}

.guideLede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--om-ink-600);
  max-width: 620px;
  margin: 16px 0 40px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
}

.timelineStep {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
}

.timelineNum {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--om-ink-950);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.timelineStep h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.timelineStep p {
  font-size: 15px;
  margin: 0;
}

.guideGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.guideCard {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.guideCard h4 {
  font-size: 15px;
  margin-bottom: 12px;
}

.guideCard ul {
  margin: 0;
  padding-left: 18px;
}

.guideCard li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--om-ink-700);
  margin-bottom: 8px;
}

.calloutBox {
  background: #fff;
  border-left: 3px solid var(--om-red-500);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 22px 26px;
  max-width: 720px;
  margin-bottom: 20px;
}

.calloutBox h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.calloutBox p {
  font-size: 14.5px;
  margin: 0;
}

.budgetTable {
  max-width: 640px;
  border-top: 1px solid var(--om-ink-200);
}

.budgetRow {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--om-ink-200);
  font-family: var(--font-body);
}

.budgetRow span:first-child {
  font-weight: 700;
  color: var(--om-ink-950);
  font-size: 15px;
}

.budgetRow span:last-child {
  color: var(--om-ink-500);
  font-size: 14.5px;
  text-align: right;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--om-ink-700);
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--om-red-500);
  border-radius: 4px;
}

.guideDisclaimer {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--om-ink-400);
  padding: 32px 0 0;
  border-top: 1px solid var(--om-ink-150);
  max-width: 640px;
}

@media (max-width: 700px) {
  .guideGrid {
    grid-template-columns: 1fr;
  }

  .timelineStep {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .timelineNum {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 1300px) {
  .showcase-quad {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .ctaGrid,
  .herohead,
  .showcase {
    grid-template-columns: 1fr;
  }

  .brokerCard {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brokerAvatar {
    justify-self: center;
  }

  .brokerMeta {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .wrap {
    padding: 0 32px;
  }

  .nav {
    gap: 18px;
    padding: 16px 32px;
  }

  .navlinks {
    gap: 20px;
  }

  .navcta {
    padding-inline: 16px;
  }

  .hero {
    padding: 40px 0 64px;
  }

  .masthead {
    align-items: flex-start;
    margin-bottom: 42px;
  }

  .herohead {
    gap: 32px;
    margin-bottom: 44px;
  }

  .display-hero {
    font-size: clamp(62px, 17.5vw, 72px);
  }

  .herosub p {
    max-width: 33ch;
  }

  .heroPhoto {
    height: 280px;
  }

  .heroBody {
    padding: 24px;
  }

  .section,
  .ctaBlock {
    padding: 72px 0;
  }

  .brokerCard,
  .formCard {
    padding: 28px 24px;
  }

  .brokerAvatar {
    width: 160px;
    height: 160px;
    font-size: 46px;
  }
}

@media (max-width: 430px) {
  .wrap,
  .nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .navLogo {
    height: 44px;
  }

  .navlinks {
    gap: 16px;
    font-size: 12px;
  }

  .navcta {
    display: none;
  }

  .eyebrowLarge {
    font-size: 14px;
  }

  .updated {
    max-width: 110px;
  }

  .display-hero {
    font-size: clamp(54px, 17vw, 64px);
  }

  .chips {
    flex-wrap: wrap;
    right: 16px;
  }

  .priceBig {
    font-size: 38px;
  }
}
