:root {
  --bg: #faf8f4;
  --fg: #1c1c1a;
  --fg-muted: #6b6760;
  --accent: #0a6e5c;
  --accent-light: #e6f4f1;
  --surface: #ffffff;
  --border: #e8e3db;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}
.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 2.5rem 4rem;
  min-height: 88vh;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero__headline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__glass-block {
  position: relative;
  width: 320px;
  height: 380px;
}
.glass-pane {
  position: absolute;
  top: 0; left: 0;
  width: 240px;
  height: 320px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(10,110,92,0.08) 0%, rgba(10,110,92,0.02) 100%);
}
.glass-pane--offset {
  top: 40px; left: 40px;
  background: linear-gradient(135deg, rgba(10,110,92,0.15) 0%, rgba(10,110,92,0.04) 100%);
  z-index: 1;
}
.glass-pane--offset2 {
  top: 80px; left: 80px;
  background: linear-gradient(135deg, rgba(10,110,92,0.22) 0%, rgba(10,110,92,0.06) 100%);
  z-index: 2;
}

/* Section label */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Services */
.services {
  padding: 6rem 2.5rem;
  background: var(--surface);
}
.services__header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.services__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}
.services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.service-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(10,110,92,0.1);
}
.service-card__icon {
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding: 6rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.process__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 3rem;
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step__number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  min-width: 2.5rem;
}
.step h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.process__quote-block {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 2.5rem;
  border-radius: 0 8px 8px 0;
}
.process__quote-block blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--fg);
}
.process__quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
}

/* Coverage */
.coverage {
  padding: 6rem 2.5rem;
  background: var(--surface);
}
.coverage__content {
  max-width: 1200px;
  margin: 0 auto;
}
.coverage__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}
.coverage__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.city-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.coverage__note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.coverage__phone {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.coverage__phone:hover { opacity: 0.75; }

/* Vision */
.vision {
  padding: 8rem 2.5rem;
  background: var(--fg);
}
.vision__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.vision__headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--bg);
  font-weight: 700;
  margin-bottom: 2rem;
}
.vision__body {
  font-size: 1.05rem;
  color: rgba(250,248,244,0.65);
  line-height: 1.8;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.footer p {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.footer__right a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.footer__right a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 4rem;
    min-height: auto;
  }
  .hero__visual { display: none; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.25rem; }
  .footer { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer__right { align-items: flex-start; }
}
@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}