:root {
  --slate: #2C2E33;
  --slate-light: #3D4049;
  --terracotta: #C87941;
  --terracotta-light: #E09060;
  --cream: #F7F3ED;
  --cream-dark: #EDE8DF;
  --forest: #3D5A47;
  --white: #FFFFFF;
  --muted: #8A8D94;
  --bg: #F7F3ED;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

/* HERO */
.hero {
  background: var(--slate);
  color: var(--cream);
  padding: 80px 48px 72px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-sub {
  font-size: 16px;
  color: rgba(247,243,237,0.72);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247,243,237,0.55);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(247,243,237,0.2);
}
.hero-right { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  background: rgba(247,243,237,0.06);
  border: 1px solid rgba(247,243,237,0.15);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.badge-icon svg { width: 48px; height: 48px; }
.badge-text {
  font-size: 13px;
  color: var(--cream);
  line-height: 1.4;
}
.hero-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-pill {
  background: rgba(200,121,65,0.12);
  border: 1px solid rgba(200,121,65,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--terracotta-light);
  letter-spacing: 0.02em;
}

/* SHARED */
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 500;
}

/* CREDENTIALS */
.credentials {
  background: var(--cream-dark);
  padding: 72px 48px;
}
.credentials-inner { max-width: 1100px; margin: 0 auto; }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cred-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 24px;
  border: 1px solid rgba(44,46,51,0.08);
}
.cred-icon { margin-bottom: 16px; }
.cred-icon svg { width: 40px; height: 40px; }
.cred-card h3 {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.3;
}
.cred-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* SERVICES */
.services { background: var(--bg); padding: 80px 48px; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--slate);
  margin-bottom: 56px;
  max-width: 500px;
}
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.service-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 32px 40px 32px 0;
  border-bottom: 1px solid rgba(44,46,51,0.1);
  align-items: start;
}
.service-block:nth-child(odd) { padding-right: 40px; }
.service-block:nth-child(even) { padding-left: 40px; border-left: 1px solid rgba(44,46,51,0.1); }
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--terracotta);
  line-height: 1;
  font-weight: 400;
}
.service-body h3 {
  font-size: 20px;
  color: var(--slate);
  margin-bottom: 10px;
}
.service-body p { font-size: 14px; color: var(--slate-light); line-height: 1.7; }

/* TESTIMONIALS */
.testimonials { background: var(--slate); padding: 80px 48px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials .section-label { color: var(--terracotta); }
.testimonial-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; margin-top: 32px; }
.testimonial-primary {
  background: rgba(247,243,237,0.05);
  border: 1px solid rgba(247,243,237,0.1);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--terracotta);
  line-height: 0.5;
}
.testimonial-primary blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--cream);
  line-height: 1.6;
  font-style: italic;
}
.testimonial-secondary { display: flex; flex-direction: column; gap: 20px; }
.testimonial-secondary .testimonial-card {
  background: rgba(247,243,237,0.04);
  border: 1px solid rgba(247,243,237,0.08);
  border-radius: 8px;
  padding: 28px;
}
.testimonial-secondary blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--cream);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.client-name { font-weight: 500; font-size: 14px; color: var(--cream); }
.client-location { font-size: 13px; color: rgba(247,243,237,0.5); }
.client-project {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(200,121,65,0.15);
  padding: 3px 10px;
  border-radius: 100px;
}

/* CLOSING */
.closing { background: var(--cream-dark); padding: 80px 48px; }
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.closing-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--slate);
  margin-bottom: 20px;
}
.closing-body {
  font-size: 16px;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.closing-contacts { display: flex; align-items: center; gap: 12px; }
.contact-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
}
.contact-link:hover { color: var(--terracotta); }
.contact-sep { color: var(--muted); }
.closing-service-area { padding: 32px; background: var(--white); border-radius: 8px; border: 1px solid rgba(44,46,51,0.08); }
.area-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.area-cities {
  font-size: 17px;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}
.area-counties {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  background: var(--slate);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); }
.footer-company { font-size: 12px; color: rgba(247,243,237,0.4); }
.footer-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: rgba(247,243,237,0.4); }
.footer-sep { color: rgba(247,243,237,0.2); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 60px 28px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-block:nth-child(odd) { padding-right: 0; border-right: none; }
  .service-block:nth-child(even) { padding-left: 0; border-left: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .credentials, .services, .testimonials, .closing { padding: 56px 20px; }
  .cred-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
