:root {
  --ink: #17201d;
  --paper: #fbfaf7;
  --clay: #9f5f3d;
  --white: #fff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, .88);
  backdrop-filter: blur(14px);
}

.brand { font-weight: 750; }

.status {
  padding: 6px 12px;
  color: var(--white);
  background: var(--clay);
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background: #101614;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 24, 21, .44), transparent 48%, rgba(14, 24, 21, .16));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-heading,
.sold-card {
  position: absolute;
  z-index: 2;
}

.hero-heading {
  top: clamp(100px, 14vh, 145px);
  left: clamp(18px, 3.5vw, 54px);
  width: min(440px, calc(100% - 36px));
  color: var(--white);
  text-shadow: 0 2px 18px rgba(14, 30, 28, .8);
}

.hero-heading p {
  margin: 0 0 12px;
  color: #fff4e6;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.3vw, 4.8rem);
  line-height: 1.04;
}

.sold-card {
  right: clamp(18px, 3.5vw, 54px);
  bottom: clamp(28px, 6vh, 70px);
  width: min(360px, calc(100% - 36px));
  padding: 22px 24px;
  background: rgba(251, 250, 247, .9);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(23, 32, 29, .18);
  backdrop-filter: blur(8px);
}

.sold-label {
  display: block;
  color: var(--clay);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.sold-card p { margin: 10px 0 0; font-size: 1.05rem; }

.summary-band {
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.summary-grid div {
  min-height: 76px;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.summary-grid span {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}

.summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  line-height: 1.15;
}

@media (max-width: 700px) {
  .hero { min-height: 76svh; }
  .hero-heading { width: calc(100% - 36px); }
  h1 { max-width: 320px; font-size: 1.7rem; overflow-wrap: anywhere; }
  .sold-card { left: 18px; right: 18px; width: auto; }
  .summary-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}
