:root {
  --page-bg: #d8dad5;
  --page-bg-soft: #cfd1cc;
  --surface: #dfe0dc;
  --surface-solid: #e8e8e4;
  --surface-muted: #c8cac5;
  --ink: #1d1d1b;
  --text: #1d1d1b;
  --text-muted: rgba(29, 29, 27, 0.68);
  --text-subtle: rgba(29, 29, 27, 0.46);
  --border: rgba(29, 29, 27, 0.42);
  --border-strong: rgba(29, 29, 27, 0.78);
  --accent: #1d1d1b;
  --accent-soft: #eeeeeb;
  --shadow: none;
  --radius: 2px;
  --content-wide: 78rem;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--page-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -18%, rgba(255, 255, 255, 0.44), transparent 30rem),
    linear-gradient(180deg, #e1e2de 0%, var(--page-bg) 52rem, #c9cbc6 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(216, 218, 213, 0.88);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  color: var(--text);
  text-decoration: none;
}

.site-brand-text {
  display: grid;
  gap: 0.08rem;
}

.site-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  font-weight: 650;
  line-height: 1;
}

.site-brand-subtitle {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 500;
}

.site-nav {
  flex: 0 0 auto;
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu-item {
  padding: 0;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.62rem;
  border: 0;
  border-radius: 0;
  color: var(--text-muted);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 160ms ease;
}

.menu-link:hover,
.menu-link:focus-visible {
  color: var(--text);
  background: transparent;
}

.site-shell,
.site-shell-wide {
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2.25rem) 1.25rem 4.5rem;
}

.hero {
  min-height: calc(100vh - 7.5rem);
  display: grid;
  align-items: stretch;
}

.hero-copy-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 38rem;
  padding: clamp(1.3rem, 6vw, 5.5rem);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.42), transparent 18rem),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--text-subtle);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8.6vw, 7.2rem);
  font-weight: 650;
  overflow-wrap: normal;
}

.hero-lede {
  max-width: 42rem;
  margin: 1.45rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.66rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--page-bg);
  background: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #000000;
}

.button-secondary {
  color: var(--text);
  border-color: var(--border-strong);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.18);
}

.section {
  margin-top: clamp(3rem, 8vw, 7rem);
  padding: clamp(1.25rem, 4vw, 2.75rem) 0 0;
  border-top: 1px solid var(--border-strong);
}

.two-column,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: start;
}

.section h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 5.2vw, 4.4rem);
  font-weight: 650;
}

.section-body {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.section-body p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 1.25rem;
}

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

.service-card {
  min-height: 17rem;
  padding: 1.25rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.service-number {
  display: block;
  margin-bottom: 3.2rem;
  color: var(--text-subtle);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 650;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.process-band {
  padding: clamp(1.25rem, 4vw, 2.75rem);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.process-band h2 {
  max-width: 18ch;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--border);
}

.process-steps div {
  min-height: 10rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
}

.process-steps span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--text-subtle);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.contact-card {
  padding: clamp(1.15rem, 3vw, 1.65rem);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  color: var(--text);
}

.contact-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-card .button {
  margin-top: 0.8rem;
}

.site-footer {
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  color: var(--text-subtle);
  font-size: 0.78rem;
  letter-spacing: 0;
}

@media (max-width: 860px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-menu {
    justify-content: flex-start;
  }

  .two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy-block {
    min-height: 30rem;
  }

  .service-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-shell,
  .site-shell-wide {
    padding-inline: 0.85rem;
  }

  .site-header-inner {
    padding-inline: 0.85rem;
  }

  .menu-link {
    min-height: 2.1rem;
    padding-inline: 0.58rem;
    font-size: 0.78rem;
  }

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

  .hero-copy-block {
    min-height: 26rem;
  }
}
