:root {
  --navy: #163a6c;
  --deep-navy: #0b2341;
  --blue: #356eb5;
  --teal: #16858d;
  --amber: #f2a93b;
  --ink: #122033;
  --soft-ink: #33465c;
  --muted: #647386;
  --line: #dce4ec;
  --paper: #f2f5f8;
  --pale-blue: #eaf1fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgb(17 32 51 / 0.12);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgb(242 169 59 / 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  color: var(--deep-navy);
  background: var(--amber);
  border-radius: 8px;
  font-weight: 800;
}

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

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

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--amber {
  color: var(--amber);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgb(255 255 255 / 0.97);
  border-bottom: 1px solid rgb(220 228 236 / 0.85);
  backdrop-filter: blur(12px);
}

.header-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--navy);
}

.brand__block {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand__word {
  margin-left: 0.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.site-nav > a:not(.button) {
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav > a[aria-current="page"] {
  color: var(--navy);
}

.site-nav > a:not(.button):hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  width: 25px;
  height: 2px;
  display: block;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-8px) rotate(-45deg);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgb(11 35 65 / 0.18);
}

.button--amber {
  color: var(--deep-navy);
  background: var(--amber);
  border-color: var(--amber);
}

.button--white {
  color: var(--deep-navy);
  background: var(--white);
  border-color: var(--white);
}

.button--outline {
  color: var(--navy);
  background: transparent;
}

.button--teal {
  background: var(--teal);
  border-color: var(--teal);
}

.button--blue {
  background: var(--blue);
  border-color: var(--blue);
}

.button--block {
  width: 100%;
}

.home-hero {
  width: min(100%, 1440px);
  min-height: 540px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  background: var(--deep-navy);
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.25rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.home-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 2rem 0 0;
  color: #d9e5f2;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.5;
}

.home-hero h1 {
  font-size: clamp(2.65rem, 4vw, 3.5rem);
  line-height: 1.08;
}

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

.home-hero__media {
  min-height: 540px;
  position: relative;
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(11 35 65 / 0.12), transparent 35%);
  pointer-events: none;
}

.home-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

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

.section--pale {
  background: var(--pale-blue);
}

.section--dark {
  color: var(--white);
  background: var(--deep-navy);
}

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

.section-heading h2,
.content-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.content-heading p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section--dark .section-heading p {
  color: #c7d6e6;
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card__icon,
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--pale-blue);
  border-radius: 14px;
}

.service-card__icon svg,
.feature-icon svg {
  width: 30px;
  height: 30px;
}

.service-card--teal .service-card__icon {
  color: var(--teal);
}

.service-card--blue .service-card__icon {
  color: var(--blue);
}

.service-card--amber .service-card__icon {
  color: #da8d12;
}

.service-card h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.5;
}

.text-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 800;
}

.service-card--teal .text-link {
  color: var(--teal);
}

.service-card--blue .text-link {
  color: var(--blue);
}

.service-card--amber .text-link {
  color: #c67700;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split__media {
  min-height: 460px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.content-heading p + .button,
.prose .button {
  margin-top: 1.25rem;
}

.feature-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 850;
}

.step:last-child::before {
  color: var(--deep-navy);
  background: var(--amber);
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

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

.audience-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--navy);
}

.audience-card--teal::before {
  background: var(--teal);
}

.audience-card h2,
.audience-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.audience-card p {
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-navy);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -140px;
  width: 440px;
  height: 440px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgb(255 255 255 / 0.05), 0 0 0 76px rgb(255 255 255 / 0.03);
}

.page-hero--teal {
  background: var(--teal);
}

.page-hero--blue {
  background: var(--blue);
}

.page-hero--amber {
  color: var(--deep-navy);
  background: var(--amber);
}

.page-hero--amber .eyebrow {
  color: var(--deep-navy);
}

.page-hero__inner {
  min-height: 440px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 3rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-hero__copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 0.82);
  font-size: 1.14rem;
}

.page-hero--amber .page-hero__copy p:not(.eyebrow) {
  color: rgb(11 35 65 / 0.8);
}

.page-hero__image {
  width: min(100%, 360px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 10px solid rgb(255 255 255 / 0.12);
  border-radius: 50%;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.25);
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__icon {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  justify-self: end;
  color: var(--white);
  background: rgb(255 255 255 / 0.14);
  border-radius: 30px;
}

.page-hero--amber .page-hero__icon {
  color: var(--deep-navy);
  background: rgb(255 255 255 / 0.22);
}

.page-hero__icon svg {
  width: 72px;
  height: 72px;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 2.5rem 0 0.8rem;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}

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

.prose p,
.prose li {
  color: var(--soft-ink);
}

.prose a:not(.button) {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.notice {
  padding: 1rem 1.2rem;
  color: var(--soft-ink);
  background: var(--pale-blue);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.48rem 0.85rem;
  color: var(--navy);
  background: var(--pale-blue);
  border: 1px solid #cfdef0;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin: 0 0 0.45rem;
  font-size: 2rem;
  line-height: 1.15;
}

.form-card > p {
  margin: 0 0 1.6rem;
  color: var(--muted);
}

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bac7d5;
  border-radius: 10px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1.3rem;
  background: var(--paper);
  border-radius: 14px;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--deep-navy);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.28;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.site-footer {
  color: #c7d6e6;
  background: #071a31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  padding: 4.5rem 0 3rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p,
.site-footer ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-bottom {
  padding: 1.3rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #8fa5bb;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  font-size: 0.85rem;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .header-row {
    min-height: 72px;
    position: relative;
  }

  .brand__block {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .brand__word {
    font-size: 1.35rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: -20px;
    right: -20px;
    display: none;
    align-items: stretch;
    padding: 1.25rem 20px 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgb(11 35 65 / 0.12);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding: 0.55rem 0;
    font-size: 1rem;
  }

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

  .home-hero__copy {
    min-height: 470px;
  }

  .home-hero__media {
    min-height: 360px;
  }

  .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .page-hero__image,
  .page-hero__icon {
    justify-self: start;
  }

  .page-hero__image {
    width: 260px;
  }

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

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 660px) {
  .site-nav {
    left: -14px;
    right: -14px;
    max-height: calc(100dvh - 73px);
    overflow-y: auto;
  }
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .home-hero__copy {
    min-height: auto;
    padding: 3.5rem 1.4rem 4rem;
  }

  .home-hero__media {
    min-height: 290px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .hero-actions .button {
    flex: 1 1 140px;
  }

  .section {
    padding: 4rem 0;
  }

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

  .field--full {
    grid-column: auto;
  }

  .service-card {
    min-height: 250px;
  }

  .page-hero__inner {
    min-height: 0;
    padding-block: 4rem;
  }

  .page-hero__image,
  .page-hero__icon {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* JS Recruitment: forest, electric chartreuse and confident editorial type. */
:root{--navy:#173d38;--deep-navy:#102b28;--blue:#245b51;--teal:#245b51;--amber:#d7f45b;--ink:#132b28;--soft-ink:#344d47;--muted:#54665f;--line:#d6dfd9;--paper:#f3f6f3;--pale-blue:#eaf1eb;--radius:4px;--max:1240px;--shadow:0 12px 32px rgb(16 43 40 / .08)}
body{font-family:Arial,Helvetica,sans-serif;line-height:1.65}
.header-row{min-height:100px}.brand{gap:.7rem}.brand__block{background:var(--deep-navy);color:var(--amber);width:58px;height:58px;font-size:1.9rem;font-weight:900;letter-spacing:-.08em;border-radius:0 16px 0 0}.brand__word{font-size:1.25rem;font-weight:800;letter-spacing:-.04em;margin:0}.site-nav>a:not(.button){font-size:.875rem;font-weight:600}.button{border-radius:3px;font-size:.9rem;padding:.95rem 1.45rem;min-height:50px;box-shadow:none!important}.button:hover{transform:translateY(-2px)}
.home-hero{max-width:none;width:100%;min-height:620px;grid-template-columns:1.12fr 1fr;background:var(--deep-navy);position:relative}.home-hero__copy{padding:5rem max(2rem,calc((100vw - 1240px)/2));padding-right:3rem;min-width:0}.home-hero h1{font-size:clamp(3.2rem,5.4vw,5.5rem);line-height:1.04;letter-spacing:-.065em;max-width:720px;font-weight:800}.hero-highlight{color:var(--amber)}.home-hero__copy>p:not(.eyebrow){color:#e0e8e3;max-width:530px;font-size:1.1rem;margin-top:1.7rem}.eyebrow{font-size:.875rem;letter-spacing:.1em;font-weight:700}.home-hero__media{min-height:620px;margin:30px 30px 30px 0;overflow:hidden;border-radius:100px 4px 4px 4px}.home-hero__media img{object-position:55% center}.hero-actions{margin-top:2rem}.hero-actions .button{min-width:145px}.home-hero__media::after{background:linear-gradient(0deg,rgba(16,43,40,.18),transparent 60%)}
.section{padding:5.5rem 0}.section-heading{max-width:900px;margin-bottom:2.5rem}.section-heading h2,.content-heading h2{font-size:clamp(2rem,3.5vw,3.3rem);letter-spacing:-.05em;line-height:1.12}.section-heading .eyebrow{color:var(--blue)}.service-grid{gap:0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.service-card{border:0;border-right:1px solid var(--line);border-radius:0;background:transparent;min-height:300px;padding:2rem 1.5rem}.service-card:last-child{border-right:0}.service-card:hover{background:white;box-shadow:none;transform:none}.service-card__icon{border-radius:50%;background:#e3ebde;color:var(--navy)!important;width:52px;height:52px}.service-card h3{font-size:1.3rem;letter-spacing:-.03em}.text-link{font-size:.9rem;color:var(--navy)!important}.split__media{border-radius:4px 70px 4px 4px;box-shadow:none}.feature-list li::before{border-radius:0;width:8px;height:8px;background:var(--blue)}.content-heading .button{margin-top:1.5rem}.steps{gap:2rem}.step{padding:1.8rem 0;border:0;border-top:2px solid var(--navy);border-radius:0;background:transparent}.step::before{border-radius:0;background:transparent!important;color:var(--navy)!important;font-size:2rem;display:block;width:auto;height:auto;font-weight:800}.step h3{font-size:1.3rem}.cta-band{border-radius:4px;padding:3.5rem}.cta-band::after{display:none}.cta-band h2{max-width:760px;font-size:clamp(2rem,3vw,2.8rem)}
.page-hero{background:var(--deep-navy)}.page-hero::after{display:none}.page-hero__inner{min-height:360px;padding-block:4.5rem;gap:3rem}.page-hero h1{font-size:clamp(2.7rem,4.6vw,4.6rem);letter-spacing:-.055em;line-height:1.07}.page-hero__image{aspect-ratio:1.25;border:0;box-shadow:none;border-radius:60px 3px 3px 3px;width:360px}.page-hero__icon{border-radius:4px;color:var(--amber);background:#214740}.page-hero--amber{color:white}.page-hero--amber .eyebrow{color:var(--amber)}.page-hero--amber .page-hero__copy p:not(.eyebrow){color:#e0e8e3}.page-hero--amber .page-hero__icon{color:var(--amber);background:#214740}.form-card{border-radius:4px;box-shadow:none;border-top:4px solid var(--navy)}.field input,.field textarea,.field select{border-radius:3px}.form-note{font-size:.875rem}.audience-card{border-radius:4px}.audience-card::before{height:4px}.tag-list li{border-radius:3px;background:var(--paper);border-color:var(--line)}.site-footer{background:#102b28;color:#dce6e0}.site-footer .brand__block{background:var(--amber);color:var(--deep-navy)}.footer-grid{gap:2rem}.footer-bottom{color:#b4c8bd}.contact-item{border-radius:3px;overflow-wrap:anywhere}:focus-visible{outline:3px solid #6c8900;outline-offset:4px}
@media(max-width:1100px){.site-nav{gap:.8rem}.brand__word{font-size:1.1rem}.header-row{gap:1rem}.home-hero__copy{padding:4rem 2rem}.home-hero h1{font-size:3.8rem}.service-card:nth-child(2){border-right:0}.service-card:nth-child(-n+2){border-bottom:1px solid var(--line)}}
@media(max-width:880px){.header-row{min-height:80px}.brand__block{width:45px;height:45px;font-size:1.5rem}.brand__word{font-size:1.15rem}.home-hero{grid-template-columns:1fr}.home-hero__copy{min-height:0;padding:3.75rem 1.5rem}.home-hero h1{font-size:clamp(3.1rem,9vw,4.5rem)}.home-hero__media{min-height:330px;margin:0 1.5rem 1.5rem;border-radius:60px 3px 3px 3px}.section{padding:4rem 0}.page-hero__inner{min-height:0}.site-nav{max-height:calc(100dvh - 81px)}.footer-grid{gap:2rem}}
@media(max-width:660px){.service-card{border-right:0;border-bottom:1px solid var(--line);min-height:0;padding:1.7rem .4rem}.service-card:last-child{border-bottom:0}.home-hero__media{min-height:260px}.home-hero__copy{padding:3.5rem 1.25rem}.eyebrow{font-size:.8rem;letter-spacing:.065em}.page-hero h1{font-size:2.8rem}.cta-band{padding:2rem}.brand__word{font-size:1.15rem}.section-heading p,.content-heading p{font-size:1rem}}
/* Keep the trading identity readable on every page. */
.company-details { padding-block: 1rem; font-size: .875rem; line-height: 1.6; }
.company-details p { margin: .35rem 0; max-width: 80ch; }
.site-footer li a, .footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; padding-block: 8px; }
.form-trap { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
[data-form-status] { margin-block:12px; }
[data-form-status][data-error="true"] { color:#a01c26; }
button:disabled { opacity:.65; cursor:wait; }
