:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-muted: #ebe6dc;
  --ink: #17201c;
  --muted: #5b665f;
  --line: #d8d0c2;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --amber: #c27a25;
  --charcoal: #202421;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 32, 28, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 208, 194, 0.8);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 800;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button {
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.button:hover {
  background: #000000;
}

.text-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 44px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.4vw, 5.6rem);
  line-height: 0.95;
  font-weight: 820;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.proof-item,
.solution-card,
.contact-panel,
.placeholder,
.legal-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.proof-item {
  min-height: 118px;
  padding: 18px;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-media {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 194, 0.92);
  border-radius: 8px;
  background: #dfe7df;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 92px 24px;
}

.section.alt {
  background: var(--surface);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.solution-card {
  min-height: 280px;
  padding: 26px;
  box-shadow: 0 10px 34px rgba(23, 32, 28, 0.07);
}

.solution-card .icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--teal-dark);
  font-weight: 850;
}

.solution-card p,
.contact-panel p,
.legal-box p,
.placeholder p {
  color: var(--muted);
}

.process-band {
  background: var(--charcoal);
  color: var(--white);
}

.process-band .eyebrow,
.process-band .lead {
  color: #b9c8c3;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.2);
}

.process-step {
  min-height: 210px;
  padding: 24px;
  background: var(--charcoal);
}

.process-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #f4b35f;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.placeholder {
  padding: 18px;
  border-color: rgba(194, 122, 37, 0.5);
  background: #fff7e9;
}

.placeholder strong {
  color: #7a4610;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 74px 24px 96px;
}

.legal-box {
  padding: 28px;
}

.legal-box h2 {
  margin-top: 36px;
  font-size: 1.45rem;
}

.legal-box ul {
  padding-left: 20px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 360px;
  }

  .solutions-grid,
  .process-list,
  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 14px 18px;
  }

  .brand-text small {
    display: none;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero-grid {
    padding: 48px 18px 40px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .section {
    padding: 66px 18px;
  }

  .solutions-grid,
  .process-list,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 280px;
  }

  .footer-inner,
  .footer-links {
    flex-direction: column;
  }
}
