:root {
  --bg: #F5F0EB;
  --bg-alt: #EDE8E0;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C96442;
  --accent-dark: #A8522F;
  --white: #FFFFFF;
  --border: #D9D0C6;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(245, 240, 235, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 0.55rem 1.2rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--accent-dark); }

/* ── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.82) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    rgba(26, 26, 26, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem 4rem;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

/* ── PROOF BAR ──────────────────────────── */
.proof {
  background: var(--fg);
  color: var(--white);
  padding: 3rem 2rem;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.proof-stat {
  text-align: center;
  padding: 0 1.5rem;
}
.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.proof-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
}

/* ── SECTION LABLES ────────────────────── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ── HOW IT WORKS ─────────────────────── */
.how {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.step {
  padding: 0;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.how-image-wrap {
  max-width: 1200px;
  margin: 3rem auto 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.how-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── SERVICES ──────────────────────────── */
.services {
  padding: 6rem 2rem;
  background: var(--bg);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.services-body {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-item:first-child { border-top: 1px solid var(--border); }
.svc-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.svc-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.svc-text strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg);
}
.svc-text span {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ── WHO FOR ───────────────────────────── */
.whofor {
  padding: 6rem 2rem;
  background: var(--fg);
  color: var(--white);
}
.whofor-inner { max-width: 1200px; margin: 0 auto; }
.whofor .section-label { color: var(--accent); }
.whofor .section-headline {
  color: var(--white);
  max-width: 640px;
  margin-bottom: 3rem;
}
.tenant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.tenant-card {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}
.tenant-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.tenant-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.tenant-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── NUMBERS ───────────────────────────── */
.numbers {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.numbers-inner { max-width: 1200px; margin: 0 auto; }
.numbers .section-headline { margin-bottom: 3rem; }
.revenue-table {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.rev-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.rev-row:last-child { border-bottom: none; }
.rev-header {
  background: var(--fg);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rev-total {
  background: var(--bg);
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.monthly-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.monthly-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.monthly-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
}
.monthly-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.monthly-plus {
  font-size: 1.1rem;
  color: var(--fg-muted);
  font-style: italic;
  font-family: var(--font-display);
}
.numbers-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}

/* ── CLOSING ───────────────────────────── */
.closing {
  padding: 7rem 2rem;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── FOOTER ────────────────────────────── */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 900px) {
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .proof-divider { display: none; }
  .proof-stat { text-align: left; display: flex; align-items: baseline; gap: 1rem; }
  .proof-num { margin-bottom: 0; }
  .proof-label { max-width: none; margin: 0; }
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .services-inner { grid-template-columns: 1fr; }
  .tenant-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .tenant-grid { grid-template-columns: 1fr; }
  .monthly-wrap { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}