/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate:     #1E293B;
  --slate-mid: #334155;
  --slate-light:#64748B;
  --amber:      #F59E0B;
  --amber-dim: #D97706;
  --cream:     #FFFBEB;
  --cream-dark:#FEF9EC;
  --white:     #ffffff;
  --offwhite:  #F8F7F4;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(24px, 5vw, 64px);
  --section-gap: clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--slate);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--slate);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--slate-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad-x) var(--section-gap);
  min-height: 70vh;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dim);
  background: rgba(245, 158, 11, 0.12);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--slate);
  margin-bottom: 24px;
}
.hero-headline .accent { color: var(--amber); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--slate-mid);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 28px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate);
  line-height: 1;
}
.proof-label {
  font-size: 0.78rem;
  color: var(--slate-light);
  font-weight: 400;
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(30, 41, 59, 0.15);
  margin-right: 28px;
}

/* === PROPERTY GRID === */
.hero-right {
  position: relative;
}
.property-grid {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 40px rgba(30, 41, 59, 0.08), 0 1px 4px rgba(30, 41, 59, 0.04);
  border: 1px solid rgba(30, 41, 59, 0.06);
}
.pg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pg-row:last-child { margin-bottom: 0; }
.pg-card {
  background: var(--offwhite);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease;
}
.pg-card:hover { transform: translateY(-2px); }
.pg-card-a { border-left: 3px solid #10B981; }
.pg-card-b { border-left: 3px solid #3B82F6; }
.pg-card-c { border-left: 3px solid #8B5CF6; }
.pg-card-d { border-left: 3px solid var(--amber); }
.pg-icon { color: var(--slate-light); }
.pg-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
}
.pg-bar {
  height: 4px;
  background: rgba(30, 41, 59, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.pg-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 4px;
}
.portfolio-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-light);
  margin-top: 16px;
  font-style: italic;
}

/* === SECTION COMMONS === */
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate);
  line-height: 1.15;
  margin-bottom: 56px;
}

/* === HOW IT WORKS === */
.hiw {
  background: var(--slate);
  color: var(--cream);
  padding: var(--section-gap) var(--pad-x);
}
.hiw .section-label { color: var(--amber); }
.hiw .section-headline { color: var(--white); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hiw-step { position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.hiw-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hiw-step p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* === SERVICES === */
.services {
  padding: var(--section-gap) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.services-header { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(30, 41, 59, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 41, 59, 0.1);
}
.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dim);
  margin-bottom: 20px;
}
.svc-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.65;
  font-weight: 300;
}

/* === PRICING === */
.pricing {
  padding: var(--section-gap) var(--pad-x);
  background: var(--cream-dark);
}
.pricing > .section-label,
.pricing > .section-headline {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.pricing-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--slate);
  border-radius: 28px;
  padding: 48px;
  color: var(--cream);
}
.pricing-rate {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.pricing-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  font-weight: 300;
}
.pricing-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}
.pricing-example {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px;
}
.example-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.example-row:last-child { border-bottom: none; }
.example-fee { color: var(--amber); font-weight: 500; }
.example-owner { color: var(--white); font-weight: 600; }

.pricing-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.aside-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  font-size: 0.98rem;
  color: var(--slate-mid);
  font-weight: 400;
}
.aside-item svg { color: #10B981; flex-shrink: 0; }
.aside-item:last-child { border-bottom: none; }

/* === MANIFESTO === */
.manifesto {
  background: var(--white);
  padding: var(--section-gap) var(--pad-x);
  border-top: 1px solid rgba(30, 41, 59, 0.07);
  border-bottom: 1px solid rgba(30, 41, 59, 0.07);
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 24px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-style: normal;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--slate-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  background: var(--slate);
  padding: 72px var(--pad-x) 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  font-weight: 300;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 6px 0;
  font-weight: 300;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* === NAV ACTIONS === */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-audit-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-audit-link:hover { color: var(--amber); }

/* === NAV CTA === */
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.25);
}
.nav-cta:hover {
  background: var(--amber-dim);
  transform: translateY(-1px);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-main { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .pg-row { grid-template-columns: 1fr 1fr; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-divider { display: none; }
  .proof-stat { padding-right: 0; }
  .pricing-card { padding: 32px 24px; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
}