/* Brand tokens lifted from mpm.kiwi live CSS (custom.css, 8 Jul 2026):
   green #84b71c (nav hover, hr.green), blues #3587b0/#1b85ac/#19587a,
   fonts Quicksand + Roboto (site's own sans stack). */
:root {
  --brand: #1b85ac;
  --brand-dark: #19587a;
  --accent: #84b71c;
  --accent-text: #517a0e;
  --ink: #1d2b33;
  --ink-soft: #4b5c66;
  --paper: #ffffff;
  --paper-alt: #f3f6f7;
  --border-strong: 3px solid var(--ink);
  --font-sans: "Mulish", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Mulish", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius: 6px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-inner {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- header ---------- */
.site-head {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--pad);
}

.wordmark {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 0.95;
  letter-spacing: 0.09em;
}
.wordmark span {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-top: 0.25rem;
}

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-12px);
  animation: navIn 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  animation-delay: calc(0.15s + var(--i, 0) * 0.11s);
}
.site-nav a { display: none; }
.nav-cta {
  border: 2px solid #fff;
  border-radius: var(--radius);
  padding: 0.55rem 1rem;
}

@media (min-width: 760px) {
  .site-nav a { display: inline-block; }
}

@keyframes navIn {
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-start;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 20, 32, 0.55) 0%, rgba(10, 20, 32, 0.35) 45%, rgba(10, 20, 32, 0.55) 100%),
    linear-gradient(90deg, rgba(10, 20, 32, 0.35) 0%, rgba(10, 20, 32, 0) 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: clamp(11rem, 22vh, 16rem) var(--pad) clamp(2.5rem, 8vh, 5rem);
  color: #fff;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(1.95rem, 7vw, 4.4rem);
  line-height: 1.05;
  max-width: 22ch;
  letter-spacing: -0.005em;
}

.hero h1 span,
.hero-sub span {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: heroLine 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  animation-delay: calc(0.1s + var(--i, 0) * 0.09s);
}

.hero-sub {
  margin: 1.1rem 0 1.9rem;
  font-weight: 400;
  font-size: clamp(0.93rem, 2.3vw, 1.16rem);
  max-width: 44ch;
  opacity: 0.96;
}
.hero-sub span + span { margin-top: 0.35rem; }

.btn-hero {
  opacity: 0;
  transform: translateY(14px);
  animation: heroLine 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  animation-delay: calc(0.1s + var(--i, 0) * 0.09s);
}

@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a,
  .hero h1 span,
  .hero-sub span,
  .btn-hero {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.btn-solid {
  background: var(--accent);
  color: #17240a;
  border: none;
}
.btn-solid:hover { filter: brightness(1.06); }

.btn-hero {
  background: var(--brand-dark);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  padding: 1.1rem 2.2rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 20px rgba(10, 20, 32, 0.35);
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-hero:hover {
  background: #123f57;
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid currentColor;
  color: inherit;
  background: transparent;
}

/* ---------- sections ---------- */
.section { padding: clamp(3rem, 9vw, 5.5rem) 0; }

.section h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  max-width: 24ch;
}

.section-lead {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* ---------- appraisal form ---------- */
.section-appraisal { background: var(--paper-alt); }

.two-col { display: grid; gap: 2.2rem; }
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

.col-copy p { margin-top: 0.8rem; color: var(--ink-soft); max-width: 40ch; }

.appraisal-form { display: grid; gap: 1.1rem; }

.appraisal-form label { display: grid; gap: 0.35rem; }
.appraisal-form label span {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.appraisal-form input {
  font: inherit;
  padding: 0.85rem 1rem;
  border: var(--border-strong);
  border-radius: var(--radius);
  background: var(--paper);
}
.appraisal-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 25%, transparent);
}

.appraisal-form .btn { justify-self: start; }

.demo-note {
  background: var(--brand-dark);
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

/* ---------- owner report ---------- */
.report-card {
  margin-top: 2rem;
  background: var(--paper);
  border: var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.report-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.2rem var(--pad);
  background: var(--brand-dark);
  color: #fff;
}
.report-head h3 { font-size: 1.05rem; }
.report-address { font-size: 0.9rem; opacity: 0.85; }
.report-period { font-weight: 700; }

.report-grid {
  display: grid;
  gap: 0;
}
@media (min-width: 760px) {
  .report-grid { grid-template-columns: repeat(3, 1fr); }
}

.report-metric {
  padding: 1.4rem var(--pad);
  border-bottom: 1px solid var(--paper-alt);
}
@media (min-width: 760px) {
  .report-metric { border-bottom: none; }
  .report-metric + .report-metric { border-left: 1px solid #e3e8ee; }
}

.report-metric h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.metric-big {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin: 0.3rem 0 0.4rem;
}
.metric-big span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.metric-ok { color: var(--accent-text); }
.metric-note { font-size: 0.9rem; color: var(--ink-soft); }

.report-foot {
  padding: 1rem var(--pad);
  background: var(--paper-alt);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- market snapshot ---------- */
.section-market { background: var(--paper-alt); }

.stat-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media (min-width: 760px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-dark);
}
.stat-label { font-size: 0.9rem; color: var(--ink-soft); }

.stat-source { margin-top: 1.6rem; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- audit pathway ---------- */
.section-audit-path {
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
}
.section-audit-path h2 { margin: 0 auto; }
.section-audit-path p {
  margin: 0.9rem auto 1.6rem;
  max-width: 52ch;
  opacity: 0.92;
}

/* ---------- footer ---------- */
.site-foot {
  background: var(--brand);
  color: #fff;
  padding: 2.2rem 0 3rem;
}
.foot-wordmark { font-family: var(--font-head); font-weight: 700; }
.foot-tagline { margin-top: 0.4rem; font-size: 0.9rem; opacity: 0.9; }
.foot-contact { margin-top: 0.2rem; font-size: 0.9rem; opacity: 0.85; }

/* ---------- concept watermark ---------- */
.concept-watermark {
  position: fixed;
  bottom: 0.6rem;
  right: 0.8rem;
  z-index: 50;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(15, 25, 38, 0.55);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  pointer-events: none;
}
