:root {
  --bg: #f4efe8;
  --bg-strong: #e6ddd1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf9;
  --text: #221d1d;
  --muted: #625654;
  --accent: #be6d34;
  --accent-dark: #6d3b1e;
  --line: rgba(34, 29, 29, 0.1);
  --shadow: 0 20px 60px rgba(44, 28, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #f7f3ed;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 12px;
  z-index: 20;
}

.brand {
  width: clamp(140px, 20vw, 190px);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  background: #f1e8dc;
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 40px 0 18px;
}

.hero-copy,
.hero-card,
.service-card,
.process-card,
.contact-card,
.stats article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 24px;
  background: #fffdf9;
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--accent-dark);
}

.card-label {
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h3 {
  font-size: 2rem;
}

.lead,
.section p,
.service-card p,
.contact-card p,
.stats p,
.process-card li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.lead {
  margin: 22px 0 0;
  max-width: 62ch;
}

.stats article,
.service-card,
.process-card,
.contact-card {
  padding: 24px;
  border-radius: 18px;
  background: #fffdf9;
}

.section {
  padding: 78px 0 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card h3,
.contact-card h3 {
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.process-card {
  background: #fffdf9;
}

.simple-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.simple-list li + li {
  margin-top: 12px;
}

.contact-section {
  padding-bottom: 32px;
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 2px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .topbar,
  .hero-copy,
  .hero-card,
  .stats article,
  .service-card,
  .process-card,
  .contact-card {
    border-radius: 20px;
  }

  h1 {
    max-width: none;
  }

  .footer {
    flex-direction: column;
  }
}
