:root {
  color: #11110f;
  background: #d0c74f;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mustard: #d0c74f;
  --mustard-soft: rgba(208, 199, 79, 0.95);
  --surface-shadow: 0 30px 60px rgba(17,17,15,0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--mustard);
  color: #11110f;
  /* mustard base with diagonal sketch hatch */
  background-image: 
    repeating-linear-gradient(135deg, rgba(17,17,15,0.06) 0 20px, transparent 20px 120px),
    radial-gradient(circle at 15% 10%, rgba(17,17,15,0.03), transparent 25%);
  background-blend-mode: multiply, normal;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
  background: transparent;
}

.hero-section {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: calc(80vh - 4rem);
  padding-top: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: #11110f;
  margin: 0 0 1rem;
}

.hero-copy .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.32em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 4vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-top: 1.6rem;
  color: rgba(17,17,15,0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.8rem;
}

.button-icon svg {
  width: 100%;
  height: 100%;
}

.button-primary {
  background: #11110f;
  color: #f6edc6;
  box-shadow: 0 18px 35px rgba(17, 17, 15, 0.18);
}

.button-secondary {
  background: #11110f;
  color: #f6edc6;
  box-shadow: 0 18px 35px rgba(17, 17, 15, 0.18);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-illustration {
  width: min(100%, 520px);
  height: auto;
}

/* card that holds the house illustration on the right */
.house-card{
  width: min(100%, 520px);
  border-radius: 28px;
  padding: 2.2rem;
  background: linear-gradient(180deg, rgba(208,199,79,0.94), rgba(208,199,79,0.82));
  box-shadow: var(--surface-shadow), inset 0 1px 0 rgba(255,255,255,0.18);
  display:flex; align-items:center; justify-content:center;
}

/* services grid like second screenshot */
.services-section{ padding:3.5rem 0; }
.section-heading{ margin-bottom:1.6rem; }
.service-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:1.2rem; }
.service-card{ background: rgba(208,199,79,0.93); border: 1px solid rgba(255,255,255,0.25); border-radius:18px; padding:1.6rem; box-shadow: var(--surface-shadow); }
.service-card h3{ margin:0 0 0.6rem; }
.service-card p{ margin:0; color:#4b473f; line-height:1.7; }

.process-section{ padding:3.5rem 0; }
.process-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:1.2rem; }
.process-card{ background: rgba(208,199,79,0.92); border: 1px solid rgba(255,255,255,0.24); border-radius:22px; padding:2rem; box-shadow: var(--surface-shadow); }
.step-number{ width:2.5rem; height:2.5rem; border-radius:50%; background:#11110f; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:1rem; }
.process-card p{ margin:0; color:#4b473f; line-height:1.8; }

.contact-section{ display:grid; grid-template-columns:1.3fr 0.7fr; gap:2rem; align-items:center; padding:3.5rem 0; }
.contact-content p{ margin:1rem 0 0; color: rgba(17,17,15,0.9); line-height:1.85; max-width:42rem; }
.contact-actions{ display:flex; flex-direction:column; gap:1rem; }

.site-footer{ text-align:center; margin-top:2rem; opacity:0.9; }

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 2rem 0 3rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }
}
