:root {
  --bg: #f5efe4;
  --bg-strong: #e3d4bb;
  --paper: #fffaf1;
  --ink: #1c251d;
  --muted: #5b675d;
  --line: rgba(28, 37, 29, 0.12);
  --accent: #b94d2d;
  --accent-soft: #f1c09d;
  --forest: #284736;
  --shadow: 0 20px 60px rgba(35, 36, 24, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185, 77, 45, 0.14), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(40, 71, 54, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f1e8 0%, #efe4d2 100%);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 241, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d97d47);
}

.site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 26px;
}

.hero-copy,
.hero-panel,
.section,
.signal-strip {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  padding: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(255, 245, 229, 0.96));
  border: 1px solid rgba(28, 37, 29, 0.08);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero-text {
  max-width: 42rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.button-secondary {
  background: rgba(255, 250, 241, 0.65);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 37, 29, 0.08);
  background: rgba(255, 250, 241, 0.88);
  box-shadow: var(--shadow);
}

.hero-card-accent {
  color: #fff;
  background: linear-gradient(140deg, var(--forest), #3b664f 58%, #c96d41 120%);
}

.hero-card h2 {
  margin: 10px 0 0;
  font-family: "Newsreader", serif;
  font-size: 2rem;
  line-height: 1;
}

.card-label,
.metric,
.service-number,
.process-grid span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.metric {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 26px;
}

.signal-strip div {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.84);
  border: 1px solid var(--line);
  font-weight: 700;
}

.section {
  margin-top: 24px;
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 37, 29, 0.08);
  background: rgba(255, 250, 241, 0.9);
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.service-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
}

.service-card h3,
.process-grid h3 {
  margin: 10px 0;
  font-size: 1.35rem;
}

.service-card p,
.service-card li,
.results-copy p,
.contact-card p,
.process-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.section-dark {
  color: #f9f4ea;
  background:
    radial-gradient(circle at top right, rgba(241, 192, 157, 0.12), transparent 30%),
    linear-gradient(160deg, #20372a 0%, #182b21 100%);
}

.section-dark .eyebrow,
.section-dark .process-grid span {
  color: var(--accent-soft);
}

.section-dark .process-grid article {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.section-dark .process-grid p {
  color: rgba(249, 244, 234, 0.8);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.results-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.results-panel {
  display: grid;
  gap: 12px;
}

.result-stat {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f4ead8, #fff8ee);
}

.result-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.contact-section {
  margin-bottom: 36px;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(140deg, var(--accent), #8d3e24);
}

.contact-card a {
  font-weight: 800;
}

.contact-note {
  opacity: 0.86;
}

@media (max-width: 980px) {
  .hero,
  .results-layout,
  .service-grid,
  .process-grid,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 24px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 16px;
  }

  .site-header,
  .hero-copy,
  .section {
    padding: 22px;
  }

  .site-header {
    position: static;
  }

  .site-nav {
    gap: 12px 18px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }
}
