:root {
  color-scheme: light;
  --paper: #f7f3ea;
  --paper-strong: #fffaf0;
  --ink: #17222b;
  --muted: #5d676f;
  --line: rgba(23, 34, 43, 0.14);
  --teal: #0d6d6b;
  --teal-dark: #084a49;
  --coral: #c96545;
  --gold: #e5b94d;
  --sage: #6f836f;
  --stone: #292724;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 34, 43, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), 1240px);
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  background: rgba(16, 27, 34, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border-color: rgba(23, 34, 43, 0.12);
  box-shadow: 0 18px 48px rgba(23, 34, 43, 0.12);
}

.brand {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.86rem;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.76;
  font-size: 0.76rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav a,
.footer-links a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 720;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  background: rgba(23, 34, 43, 0.06);
  border-color: rgba(23, 34, 43, 0.12);
}

.language-switch button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 760;
}

.nav-toggle svg,
.btn svg,
.value-card svg,
.service-card svg,
.check-panel svg,
.contact-points svg,
.text-link svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(13, 109, 107, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal-dark);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.46);
}

.btn-dark {
  color: var(--white);
  background: var(--stone);
}

.btn-small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 22, 27, 0.72) 0%, rgba(14, 22, 27, 0.48) 34%, rgba(14, 22, 27, 0.2) 63%, rgba(14, 22, 27, 0.04) 100%),
    linear-gradient(0deg, rgba(14, 22, 27, 0.54) 0%, rgba(14, 22, 27, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 76vh;
  margin: 0 auto;
  padding-top: 124px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 860;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 5.6rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.24rem;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.32rem;
  line-height: 1.45;
}

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

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 40px), var(--max));
  margin: -28px auto 0;
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-proof span {
  min-height: 104px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof em {
  display: block;
}

.hero-proof strong {
  font-size: 1.02rem;
}

.hero-proof em {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.intro-band {
  padding-top: 92px;
  padding-bottom: 76px;
  background: var(--paper-strong);
}

.split-intro,
.remote-layout,
.resource-layout,
.transparency-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section-lede,
.section-heading p,
.process-copy > p,
.remote-layout > div > p,
.resource-layout > div > p,
.contact-copy > p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 42px;
  max-width: none;
  align-items: end;
}

.section-heading.wide p:last-child {
  margin: 0;
}

.value-grid,
.service-grid,
.area-grid,
.do-not-grid {
  display: grid;
  gap: 16px;
}

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

.value-card,
.service-card,
.area-grid article,
.do-not-grid article,
.check-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
}

.value-card,
.service-card {
  min-height: 260px;
  padding: 26px;
}

.value-card svg,
.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--teal);
}

.value-card p,
.service-card p,
.area-grid p,
.do-not-grid p {
  color: var(--muted);
}

.process-section {
  background: #eaf1ec;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 54px;
  align-items: center;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 34, 43, 0.14);
}

.process-list li:last-child {
  border-bottom: 0;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 860;
}

.process-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.process-image {
  margin: 0;
}

.process-image img,
.area-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.areas-section {
  background: var(--paper);
}

.area-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 18px;
}

.area-feature img {
  aspect-ratio: 16 / 8.6;
}

.area-note {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 320px;
  padding: 28px;
  color: var(--white);
  background: var(--stone);
  border-radius: var(--radius);
}

.area-note p {
  color: rgba(255, 255, 255, 0.78);
}

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

.area-grid article {
  min-height: 210px;
  padding: 22px;
}

.remote-section {
  color: var(--white);
  background: var(--teal-dark);
}

.remote-section .eyebrow {
  color: var(--gold);
}

.remote-section p {
  color: rgba(255, 255, 255, 0.78);
}

.check-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--paper-strong);
}

.check-panel ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-panel li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 680;
}

.check-panel svg {
  color: var(--coral);
}

.services-section {
  background: var(--paper-strong);
}

.resources-section {
  background: #f1e7d3;
}

.resource-layout {
  align-items: center;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: var(--stone);
  font-weight: 820;
}

.transparency-section {
  background: var(--paper);
}

.do-not-grid {
  grid-template-columns: repeat(3, 1fr);
}

.do-not-grid article {
  min-height: 170px;
  padding: 24px;
  background: #fffdf7;
}

.contact-section {
  background: var(--stone);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.contact-points em {
  font-style: normal;
  font-weight: 720;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper-strong);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 34, 43, 0.18);
  border-radius: var(--radius);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 109, 107, 0.13);
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 44px 0;
  background: #111a20;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: start;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-inner p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 4px;
  }

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

  .header-actions {
    display: none;
    justify-content: space-between;
    padding-bottom: 4px;
  }

  .site-header.is-open .header-actions {
    display: flex;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .value-grid,
  .service-grid,
  .area-grid,
  .do-not-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout,
  .area-feature,
  .remote-layout,
  .resource-layout,
  .contact-layout,
  .transparency-layout,
  .section-heading.wide,
  .split-intro {
    grid-template-columns: 1fr;
  }

  .resource-actions {
    justify-content: flex-start;
  }
}

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

  .site-header {
    width: min(calc(100% - 20px), 1240px);
    margin-top: 10px;
    padding: 9px 10px;
  }

  .brand {
    min-width: 0;
    grid-template-columns: 40px auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .language-switch {
    width: 100%;
  }

  .btn-small {
    width: 100%;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    min-height: 72vh;
    padding-top: 112px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions,
  .resource-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .resource-actions .btn,
  .resource-actions .text-link {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), var(--max));
    margin-top: -18px;
  }

  .hero-proof span {
    min-height: auto;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .value-grid,
  .service-grid,
  .area-grid,
  .do-not-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .value-card,
  .service-card,
  .area-grid article,
  .do-not-grid article {
    min-height: auto;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
  }

  .process-list span {
    width: 38px;
    height: 38px;
  }

  .area-note {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), var(--max));
  }
}

@media (max-width: 390px) {
  .nav-toggle span {
    display: none;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
