:root {
  --ink: #102235;
  --muted: #5e6c79;
  --line: #dfe5e8;
  --paper: #f7f8f7;
  --white: #ffffff;
  --accent: #0f5f53;
  --accent-soft: #e8f0ed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 94px;
  padding: 0;
  background: rgba(247, 248, 247, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: 100%;
  max-width: 1120px;
  min-height: 94px;
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 34, 53, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  width: 320px;
  height: 72px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

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

.site-nav a:hover,
.site-nav a:focus {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  padding: clamp(56px, 7vw, 88px) 0 clamp(52px, 6vw, 80px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(27px, 3.4vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 9px;
  font-size: 19px;
  line-height: 1.25;
}

p {
  margin-top: 0;
}

.hero-subtitle {
  max-width: 720px;
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 24px);
}

.hero-copy {
  max-width: 720px;
  margin-top: 34px;
}

.hero-copy p,
.prose p,
.text-block p,
.contact-copy,
.legal-note,
.contact-form p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.74;
}

.hero-copy p {
  margin-bottom: 14px;
}

.hero-panel {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-panel-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.hero-focus-list {
  display: grid;
  gap: 12px;
}

.hero-focus-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-focus-item .block-icon {
  margin-bottom: 0;
}

.hero-focus-item strong {
  font-size: 15.5px;
  line-height: 1.25;
}

.hero-panel-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus {
  background: #0b4d43;
}

.section {
  padding: clamp(62px, 7vw, 86px) 0;
}

.alt-section,
.contact-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.simple-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(280px, 1.18fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.prose p {
  max-width: 740px;
  margin-bottom: 18px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 780px;
}

.block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 95, 83, 0.22);
  background: var(--accent-soft);
  color: var(--accent);
}

.block-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inline-intro {
  margin-bottom: 18px;
}

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

.service-list article {
  min-height: 252px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-list p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.service-list p:last-child,
.text-block p:last-child,
.prose p:last-child {
  margin-bottom: 0;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.text-block {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.alt-section .text-block {
  background: var(--paper);
}

.clean-list {
  margin: 16px 0 20px;
  padding-left: 20px;
  color: var(--muted);
}

.clean-list.columns {
  columns: 2;
  column-gap: 36px;
}

.clean-list li {
  margin-bottom: 9px;
  break-inside: avoid;
}

.chip-list,
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
  columns: initial;
}

.chip-list li,
.audience-list li {
  position: relative;
  min-height: 42px;
  margin: 0;
  padding: 10px 12px 10px 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.chip-list li::before,
.audience-list li::before {
  position: absolute;
  left: 13px;
  top: 17px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  content: "";
}

.legal-note {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 14px;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  text-underline-offset: 4px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.step-list li {
  position: relative;
  min-height: 174px;
  padding: 24px 24px 24px 82px;
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: process;
}

.step-list li::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  color: var(--accent);
  content: counter(process, decimal-leading-zero);
  font-size: 12px;
  font-weight: 800;
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.step-list span {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}

.quote-band {
  padding: 34px 0;
  background: var(--ink);
  color: var(--white);
}

.quote-band p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.28;
}

.contact-copy {
  margin-bottom: 14px;
}

.contact-details {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 26px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.contact-details a {
  color: var(--accent);
}

.contact-form {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.form-row {
  margin-bottom: 15px;
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccd5d9;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 38px 0 28px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner,
.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-inner {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0 0 6px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
}

.footer-legal {
  padding-top: 20px;
  font-size: 13px;
}

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

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 80px;
  }

  .header-inner {
    min-height: 80px;
    align-items: center;
    flex-direction: row;
    padding: 10px 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-shell {
    width: 236px;
    height: 56px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .simple-grid,
  .contact-grid,
  .hero-inner,
  .footer-inner,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .service-list,
  .step-list {
    grid-template-columns: 1fr;
  }

  .service-list article,
  .step-list li {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 14px;
  }

  .header-inner {
    padding-inline: 14px;
  }

  .brand-logo-shell {
    width: 204px;
    height: 49px;
  }

  h1 {
    font-size: 38px;
  }

  .button {
    width: 100%;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .clean-list.columns {
    columns: 1;
  }

  .chip-list,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .service-list article,
  .text-block,
  .step-list li {
    padding: 22px;
  }

  .step-list li {
    padding-left: 72px;
  }

  .step-list li::before {
    left: 22px;
  }
}
