/* =====================
   BASE
   ===================== */
:root {
  --bg: #F5F0E8;
  --surface: #FFFFFF;
  --fg: #1A1A18;
  --fg-muted: #6B6B60;
  --accent: #1B4D3E;
  --accent-light: #E8F0EC;
  --amber: #C8960C;
  --border: #E2DDD4;
  --radius: 12px;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* =====================
   NAV
   ===================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
}

.nav-book-btn {
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-book-btn:hover {
  background: #153D31;
}

/* =====================
   HERO
   ===================== */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-image-side {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.hero-image-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
  padding: 4px 8px;
  border-radius: 4px;
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--fg);
  font-weight: 800;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  min-width: 80px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
}

/* =====================
   SERVICES
   ===================== */
.services {
  background: var(--surface);
  padding: 80px 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 480px;
}

.services {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-icon {
  padding: 20px 20px 0;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  padding: 16px 20px 8px;
  color: var(--fg);
}

.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 0 20px;
  line-height: 1.6;
}

.service-price {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 16px 20px 20px;
  margin-top: auto;
}

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

.how-intro {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 56px;
  line-height: 1.65;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.step h3 {
  font-size: 20px;
  color: var(--fg);
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 24px;
}

/* =====================
   WHY PROPCRAFT
   ===================== */
.why-propcraft {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.why-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.why-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-text-col h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.why-intro {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}

.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  background: var(--accent);
  padding: 96px 24px;
}

.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.closing p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.closing-service-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.area-label {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.area-list {
  color: rgba(255,255,255,0.7);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: #141412;
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 60px;
  }

  .hero-img {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-connector {
    display: none;
  }

  .why-propcraft {
    grid-template-columns: 1fr;
  }

  .why-img {
    height: 280px;
  }

  .closing {
    padding: 64px 24px;
  }
}
