:root {
  --ink: #14213d;
  --ink-soft: #34445f;
  --paper: #fbfaf7;
  --white: #ffffff;
  --mist: #eef3f2;
  --line: #d8e0dc;
  --green: #1f6f5b;
  --green-dark: #154f41;
  --gold: #c88a2d;
  --coral: #b85b4b;
  --shadow: 0 20px 60px rgba(20, 33, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 224, 220, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 260px;
}

.brand picture {
  display: block;
  width: 48px;
  height: 58px;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 58px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.12;
}

.brand small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 10px 12px;
  text-decoration: none;
  color: var(--ink-soft);
  border-radius: 6px;
}

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

.nav .nav-cta {
  background: var(--green);
  color: var(--white);
  margin-left: 6px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.97) 0%, rgba(251, 250, 247, 0.86) 44%, rgba(251, 250, 247, 0.22) 78%),
    linear-gradient(0deg, rgba(20, 33, 61, 0.18), rgba(20, 33, 61, 0));
}

.hero-content {
  padding: 170px 0 68px;
}

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

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: 56px 0 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 224, 220, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 18px 20px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip dt {
  font-weight: 800;
}

.trust-strip dd {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.prose p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.services {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.service-card {
  display: block;
  min-height: 260px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(20, 33, 61, 0.1);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 14px;
}

.service-card p,
.steps p,
.resource-panel p,
.contact p,
.site-footer p {
  color: var(--ink-soft);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--coral);
  font-weight: 800;
}

.industries {
  background: #f1f6f4;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.industry-list li {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-weight: 700;
}

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

.steps article {
  padding: 28px;
  border-top: 4px solid var(--green);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(20, 33, 61, 0.08);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.resources {
  padding: 36px 0;
}

.resource-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 38px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.resource-panel h2 {
  max-width: 760px;
}

.resource-panel p,
.resource-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 54px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 7px;
  font-weight: 800;
}

.form-status.is-success {
  display: block;
  color: var(--green-dark);
  background: #e5f3ee;
  border: 1px solid #b8dacf;
}

.form-status.is-error {
  display: block;
  color: #7c2f26;
  background: #f8e7e4;
  border: 1px solid #e1bbb4;
}

.contact-details,
.sister-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-details a,
.sister-links a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-details address {
  color: var(--ink-soft);
  font-style: normal;
}

.sister-links {
  margin-top: 26px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7d3cf;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus,
.nav a:focus,
.menu-button:focus {
  outline: 3px solid rgba(200, 138, 45, 0.35);
  outline-offset: 2px;
}

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

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 5px 0 0;
}

.footer-logo {
  width: 96px;
  height: auto;
  margin-bottom: 12px;
}

.footer-grid div:last-child {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-grid a {
  color: var(--white);
}

.footer-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 90px 0 68px;
  background: #eef3f2;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 6vw, 68px);
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--green-dark);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: start;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin: 50px 0 18px;
  font-size: clamp(28px, 4vw, 40px);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin-top: 28px;
}

.article-content p,
.article-content li {
  color: var(--ink-soft);
  font-size: 17px;
}

.article-content li + li {
  margin-top: 8px;
}

.article-content a {
  color: var(--green-dark);
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sidebar h2 {
  font-size: 24px;
}

.sidebar p {
  color: var(--ink-soft);
}

.link-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.link-list a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 700;
}

.notice {
  margin: 32px 0;
  padding: 20px;
  background: #f1f6f4;
  border-left: 4px solid var(--gold);
  color: var(--ink-soft);
}

.faq {
  margin-top: 50px;
}

.faq details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

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

.directory-card {
  display: block;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.directory-card p {
  color: var(--ink-soft);
}

.directory-card strong {
  color: var(--green-dark);
}

.legal-note {
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 14px;
}

.brand-showcase {
  padding: 56px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand-showcase .wrap {
  display: grid;
  place-items: center;
}

.brand-showcase picture,
.brand-showcase img {
  display: block;
  width: min(330px, 72vw);
  height: auto;
}

.location-section {
  background: #f1f6f4;
  border-top: 1px solid var(--line);
}

.location-heading {
  margin-bottom: 36px;
}

.map-frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(20, 33, 61, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .nav a {
    padding: 14px;
  }

  .nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 680px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.95) 0%, rgba(251, 250, 247, 0.84) 56%, rgba(251, 250, 247, 0.64) 100%),
      linear-gradient(0deg, rgba(20, 33, 61, 0.15), rgba(20, 33, 61, 0));
  }

  .hero-content {
    padding-top: 128px;
  }

  .trust-strip,
  .split,
  .service-grid,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-card {
    min-height: auto;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand picture,
  .brand-logo {
    width: 42px;
    height: 50px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 112px 0 42px;
  }

  h1 {
    font-size: 41px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .section {
    padding: 62px 0;
  }

  .industry-list {
    grid-template-columns: 1fr;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .map-frame {
    aspect-ratio: 4 / 5;
    min-height: 420px;
  }

  .resource-panel {
    display: grid;
    padding: 26px;
  }

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

  .contact-form {
    padding: 20px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid div:last-child {
    text-align: left;
  }
}
