:root {
  --teal: #1d9e75;
  --teal-dark: #1a3a3a;
  --teal-mid: #2a5c5c;
  --teal-light: #5dcaa5;
  --mint: #e1f5ee;
  --slate: #475158;
  --slate-soft: #dfe4e6;
  --slate-wash: #e9edef;
  --charcoal: #1a1a1a;
  --ink: #3d3d3d;
  --muted: #6f7776;
  --line: #e2e3de;
  --soft: #f4f4f4;
  --white: #ffffff;
  --shadow-1: 0 2px 10px rgba(26, 58, 58, 0.08);
  --shadow-2: 0 6px 20px rgba(26, 58, 58, 0.13);
  --shadow-3: 0 10px 28px rgba(26, 58, 58, 0.18);
  --radius: 8px;
  --container: min(1200px, calc(100vw - 64px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(71, 81, 88, 0.16), transparent 28rem),
    linear-gradient(180deg, #f3f5f5 0%, #e5e9eb 100%);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--charcoal);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

small {
  font-size: 14px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  isolation: isolate;
  padding: 80px 0;
  position: relative;
}

.section:not(.section-soft):not(.section-mint):not(.section-dark) {
  background:
    linear-gradient(135deg, rgba(250, 251, 251, 0.97), rgba(228, 233, 235, 0.98)),
    radial-gradient(circle at 86% 14%, rgba(71, 81, 88, 0.14), transparent 21rem);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(218, 224, 227, 0.99), rgba(240, 243, 244, 0.97)),
    radial-gradient(circle at 1px 1px, rgba(71, 81, 88, 0.15) 1px, transparent 0) 0 0 / 18px 18px;
}

.section-mint {
  background:
    linear-gradient(135deg, rgba(213, 220, 223, 0.99), rgba(234, 239, 240, 0.98)),
    radial-gradient(circle at 1px 1px, rgba(71, 81, 88, 0.16) 1px, transparent 0) 0 0 / 20px 20px;
}

.section-dark {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.9);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: linear-gradient(90deg, var(--teal), var(--slate));
  content: "";
  display: inline-block;
  height: 2px;
  width: 28px;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--teal);
}

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

.lead {
  color: var(--ink);
  font-size: 18px;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.text-button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg,
.icon-button svg,
.text-link svg,
.inline-icon svg {
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.button-primary {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #167a5c;
  border-color: #167a5c;
  box-shadow: 0 14px 28px rgba(17, 73, 62, 0.22);
  transform: translateY(-2px);
}

.button-secondary {
  background: var(--teal-dark);
  border: 1px solid var(--teal-dark);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #0e2424;
  border-color: #0e2424;
  box-shadow: 0 14px 28px rgba(8, 25, 25, 0.22);
  transform: translateY(-2px);
}

.button-ghost {
  background: transparent;
  border: 1.5px solid var(--teal-dark);
  color: var(--teal-dark);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(26, 58, 58, 0.08);
  transform: translateY(-2px);
}

.button-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.text-link,
.text-button {
  color: var(--teal);
  font-weight: 700;
}

.text-button {
  background: transparent;
  border: 0;
  min-height: auto;
  padding: 0;
}

.text-link {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.text-link:hover,
.text-link:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  color: var(--teal-dark);
}

.card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 248, 0.98)),
    var(--white);
  border: 1px solid rgba(201, 211, 207, 0.88);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 14px 38px rgba(21, 44, 44, 0.08),
    0 3px 10px rgba(21, 44, 44, 0.07);
  min-width: 0;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.card::before {
  background: linear-gradient(90deg, rgba(92, 102, 108, 0.5), rgba(29, 158, 117, 0.18), transparent 72%);
  content: "";
  height: 2px;
  inset: 0 0 auto;
  position: absolute;
}

.card:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 22px 52px rgba(21, 44, 44, 0.14),
    0 5px 18px rgba(21, 44, 44, 0.09);
  transform: translateY(-4px);
}

main {
  animation: page-arrive 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.icon-chip,
.service-icon,
.value-icon {
  align-items: center;
  background: linear-gradient(145deg, #f2f4f4, #dfe5e7);
  border-radius: 8px;
  color: var(--slate);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.service-icon,
.value-icon {
  margin-bottom: 20px;
}

.service-icon svg,
.icon-chip svg,
.value-icon svg {
  height: 24px;
  width: 24px;
}

.privacy-banner {
  align-items: center;
  background: var(--mint);
  border-bottom: 1px solid rgba(26, 58, 58, 0.12);
  color: var(--teal-dark);
  display: none;
  gap: 20px;
  justify-content: space-between;
  padding: 12px max(16px, calc((100vw - 1200px) / 2));
  position: relative;
  z-index: 40;
}

.privacy-banner.visible {
  display: flex;
}

.privacy-copy {
  margin: 0;
}

.privacy-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-button {
  border-radius: 4px;
  min-height: 38px;
  padding: 7px 16px;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  color: inherit;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(26, 58, 58, 0.08);
}

.site-header {
  background:
    linear-gradient(90deg, rgba(18, 91, 82, 0.96), rgba(18, 114, 96, 0.93)),
    rgba(26, 58, 58, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 34px rgba(8, 28, 28, 0.12);
  height: 72px;
  left: 0;
  position: fixed;
  right: 0;
  top: var(--header-offset, 0px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  z-index: 30;
}

.site-header.scrolled {
  background:
    linear-gradient(90deg, rgba(22, 52, 53, 0.98), rgba(42, 58, 63, 0.96)),
    rgba(26, 58, 58, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(8, 23, 24, 0.26);
}

.nav-shell {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(170px, 250px) 1fr auto;
  height: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 0;
}

.brand img {
  filter: brightness(0) invert(1);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  width: min(100%, 230px);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  min-width: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  min-height: 72px;
  place-items: center;
  position: relative;
  transition: color 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

.nav-link::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.96), var(--teal-light), transparent);
  bottom: 16px;
  content: "";
  height: 2px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scaleX(0.18);
  transition: opacity 220ms ease, transform 300ms ease;
  width: calc(100% + 18px);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--white);
  transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-tools {
  align-items: center;
  display: flex;
  gap: 10px;
}

.nav-portal {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  padding-inline: 18px;
  white-space: nowrap;
}

.nav-portal:hover,
.nav-portal:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.78);
  transform: translateY(-2px);
}

.language-select {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: var(--ink);
  height: 42px;
  max-width: 120px;
  padding: 0 34px 0 12px;
}

.menu-toggle {
  display: none;
}

.mobile-drawer {
  background: var(--teal-dark);
  color: var(--white);
  inset: 0;
  opacity: 0;
  padding: 20px 16px 32px;
  pointer-events: none;
  position: fixed;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.drawer-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer-brand img {
  filter: brightness(0) invert(1);
  height: 50px;
  object-fit: contain;
  width: min(240px, 62vw);
}

.drawer-links {
  display: grid;
  gap: 4px;
}

.drawer-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  padding: 14px 0;
}

.drawer-controls {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.drawer-controls .language-select {
  max-width: none;
  width: 100%;
}

.hero {
  background:
    linear-gradient(90deg, rgba(26, 58, 58, 0.94) 0%, rgba(26, 58, 58, 0.79) 48%, rgba(26, 58, 58, 0.58) 100%),
    linear-gradient(135deg, rgba(193, 201, 205, 0.11), transparent 42%),
    url("../images/hero-audit-team.png") center / cover;
  color: var(--white);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero::before,
.page-hero::before {
  animation: hero-grid-drift 30s linear infinite;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 64px,
      rgba(205, 213, 217, 0.17) 64px 65px,
      transparent 65px 130px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 64px,
      rgba(174, 184, 189, 0.14) 64px 65px,
      transparent 65px 130px
    ),
    linear-gradient(112deg, transparent 10%, rgba(225, 230, 232, 0.09) 48%, transparent 78%);
  content: "";
  inset: -16%;
  mask-image: linear-gradient(90deg, black 0%, black 82%, transparent 100%);
  opacity: 0.68;
  pointer-events: none;
  position: absolute;
  transform: translate3d(0, 0, 0) scale(1.05);
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 82%, transparent 100%);
  z-index: 0;
}

.hero .container {
  align-items: center;
  display: grid;
  min-height: 100svh;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
  padding: 72px 0 96px;
}

.hero h1 {
  color: var(--white);
  font-size: 52px;
  max-width: 760px;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 670px;
}

.team-accreditation-strip {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  padding: 8px 0;
}

.team-accreditation-strip > span {
  color: var(--slate);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.membership-marquee {
  max-width: 100%;
  margin-inline: -8px;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.membership-track {
  align-items: center;
  animation: membership-scroll 30s linear infinite;
  display: flex;
  gap: 34px;
  width: max-content;
}

.membership-track:hover {
  animation-play-state: paused;
}

.membership-track img {
  filter: grayscale(1) brightness(0.46) contrast(1.18);
  flex: 0 0 auto;
  max-height: 38px;
  max-width: 132px;
  object-fit: contain;
  opacity: 0.9;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.membership-track img:first-child,
.membership-track img:nth-child(7) {
  max-height: 50px;
}

.membership-track img:nth-child(4),
.membership-track img:nth-child(10) {
  max-height: 46px;
}

.membership-track:hover img {
  opacity: 0.98;
}

.membership-track img:hover {
  filter: grayscale(1) brightness(0.32) contrast(1.28);
  transform: translateY(-2px);
}

@keyframes membership-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 17px));
  }
}

.hero-logo-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.hero-logo-row img {
  max-height: 32px;
  max-width: 112px;
  object-fit: contain;
  opacity: 0.95;
}

.team-accreditation-strip .hero-logo-row img:first-child {
  max-height: 38px;
}

.license-band {
  background:
    linear-gradient(135deg, rgba(231, 235, 237, 0.98), rgba(248, 249, 249, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(71, 81, 88, 0.16), transparent 25rem);
  padding: 28px 0;
  scroll-margin-top: 96px;
}

.license-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(162, 173, 179, 0.45);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(21, 44, 44, 0.1);
  display: grid;
  gap: 28px;
  grid-template-columns: 170px 1fr;
  padding: 28px;
}

.license-card h2,
.license-card p {
  max-width: 760px;
}

.license-card h2 {
  margin-bottom: 10px;
}

.license-logo {
  align-items: center;
  background: linear-gradient(145deg, #f5f7f7, #dde4e6);
  border: 1px solid rgba(162, 173, 179, 0.5);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 150px;
  padding: 18px;
}

.license-logo img {
  display: block;
  height: auto;
  max-width: 142px;
  width: 100%;
}

.trust-strip {
  background: linear-gradient(180deg, #e5eaec, #d7dde0);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 22px;
  min-height: 108px;
  padding: 20px 28px;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--charcoal);
  display: block;
  font-size: 18px;
}

.approach-layout,
.split-layout,
.contact-layout {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.approach-pillars {
  display: grid;
  gap: 18px;
}

.pillar {
  align-items: center;
  display: flex;
  gap: 22px;
}

.pillar strong {
  color: var(--charcoal);
  display: block;
  font-size: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 272px;
}

.service-card p {
  color: var(--muted);
  flex: 1;
}

.service-card.future {
  background: linear-gradient(135deg, #e5eaec, var(--white));
  border-style: dashed;
}

.section-cta {
  margin-top: 36px;
  text-align: center;
}

.values-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 32px;
}

.value-pill {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  min-width: 0;
  padding-left: 18px;
}

.value-pill strong {
  color: var(--white);
  display: block;
}

.value-pill span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 14px;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(26, 58, 58, 0.99), rgba(71, 82, 88, 0.96)),
    linear-gradient(112deg, rgba(220, 225, 228, 0.1), transparent 54%);
  color: var(--white);
  min-height: 40vh;
  overflow: hidden;
  position: relative;
}

.page-hero .container {
  display: grid;
  min-height: 40vh;
  place-items: center start;
  padding-block: calc(64px + 72px) 64px;
  position: relative;
  z-index: 1;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
  max-width: 760px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.service-detail-list {
  display: grid;
  gap: 28px;
}

.service-detail {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  padding: 12px 0;
}

.service-detail:nth-child(even) .detail-visual {
  order: 2;
}

.detail-visual {
  background:
    linear-gradient(145deg, rgba(231, 235, 237, 0.92), rgba(247, 248, 248, 0.96)),
    radial-gradient(circle at 1px 1px, rgba(92, 102, 108, 0.12) 1px, transparent 0) 0 0 / 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  min-height: 320px;
  overflow: hidden;
  padding: 32px;
  place-items: center;
}

.detail-visual svg {
  color: var(--teal-dark);
  height: 96px;
  width: 96px;
}

.benefits {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.benefits li {
  display: flex;
  gap: 10px;
  margin-bottom: 9px;
}

.benefits svg {
  color: var(--teal);
  height: 19px;
  margin-top: 3px;
  width: 19px;
}

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

.media-frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  min-height: 460px;
  overflow: hidden;
}

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

.vision-quote {
  border-left: 4px solid var(--slate);
  color: var(--teal-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 34px;
  line-height: 1.35;
  margin-bottom: 0;
  max-width: 940px;
  padding-left: 28px;
}

.value-card {
  min-height: 248px;
}

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

.expertise-list li {
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  padding: 18px;
}

.expertise-list svg {
  color: var(--teal);
  flex: 0 0 auto;
  height: 20px;
  margin-top: 3px;
  width: 20px;
}

.team-card {
  min-height: 316px;
  text-align: center;
}

.accreditation-layout {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
}

.accreditation-layout > * {
  min-width: 0;
}

.accreditation-layout .section-heading {
  margin-bottom: 0;
}

.team-portrait {
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 235, 237, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(232, 236, 238, 0.94),
    0 18px 36px rgba(26, 58, 58, 0.18);
  height: 148px;
  margin: 0 auto 24px;
  overflow: hidden;
  width: 148px;
}

.team-portrait img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-portrait.derrick img {
  object-position: center 24%;
}

.team-portrait.richard img {
  object-position: center 16%;
}

.team-portrait.ernestina img {
  object-position: center 24%;
}

@keyframes hero-grid-drift {
  0% {
    background-position: 0 0, 0 0, -18% 0;
    opacity: 0.54;
    transform: translate3d(-1.5%, -1%, 0) scale(1.05);
  }

  50% {
    background-position: 65px 0, 0 65px, 8% 0;
    opacity: 0.72;
    transform: translate3d(1%, 1%, 0) scale(1.08);
  }

  100% {
    background-position: 130px 0, 0 130px, 30% 0;
    opacity: 0.54;
    transform: translate3d(-1.5%, -1%, 0) scale(1.05);
  }
}

@keyframes page-arrive {
  0% {
    opacity: 0.72;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.role {
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.article-card p {
  color: var(--muted);
  flex: 1;
}

.article-meta,
.article-header-meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px;
}

.badge {
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.article-shell {
  max-width: 720px;
}

.article-shell p,
.article-shell li {
  line-height: 1.8;
}

.article-shell blockquote {
  border-left: 4px solid var(--teal);
  color: var(--teal-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 28px;
  line-height: 1.4;
  margin: 36px 0;
  padding-left: 22px;
}

.related-grid {
  margin-top: 40px;
}

.contact-form,
.contact-panel {
  min-width: 0;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field span {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid #cdd3d0;
  border-radius: 4px;
  color: var(--charcoal);
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.14);
  outline: 0;
}

.form-status {
  color: var(--teal-dark);
  font-weight: 700;
  min-height: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.contact-list li {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.contact-list svg {
  color: var(--teal);
  height: 20px;
  margin-top: 3px;
  width: 20px;
}

.portal-callout {
  align-items: flex-start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 235, 237, 0.9));
  border: 1px solid rgba(201, 211, 207, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 22px;
}

.portal-callout h3 {
  margin-bottom: 8px;
}

.portal-callout p {
  margin-bottom: 16px;
}

.map-frame {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  height: 330px;
  width: 100%;
}

.policy-shell {
  max-width: 880px;
}

.policy-shell h2 {
  margin-top: 36px;
}

.site-footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.35fr 0.78fr 1fr 1.08fr;
}

.footer-brand {
  filter: brightness(0) invert(1);
  height: 56px;
  object-fit: contain;
  object-position: left;
  width: min(250px, 100%);
}

.footer-title {
  color: var(--white);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.social-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.social-links svg {
  height: 18px;
  width: 18px;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 48px;
  padding: 20px 0 28px;
}

.footer-bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  align-items: center;
  background: var(--teal-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  bottom: 16px;
  box-shadow: var(--shadow-3);
  color: var(--white);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 50%;
  max-width: min(1120px, calc(100vw - 32px));
  opacity: 0;
  padding: 14px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 110%);
  transition: opacity 220ms ease, transform 220ms ease;
  width: 100%;
  z-index: 55;
}

.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (max-width: 1023px) {
  :root {
    --container: min(100vw - 40px, 1200px);
  }

  .section {
    padding: 60px 0;
  }

  .desktop-nav,
  .nav-tools .language-select,
  .nav-tools .button {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .hero .container {
    min-height: 100svh;
  }

  .hero-copy {
    padding: 64px 0 80px;
  }

  .hero h1 {
    font-size: 44px;
  }

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

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

  .approach-layout,
  .split-layout,
  .contact-layout {
    gap: 32px;
  }

  .service-detail {
    gap: 28px;
  }

  .service-detail .detail-visual {
    min-height: 260px;
  }
}

@media (max-width: 639px) {
  :root {
    --container: calc(100vw - 32px);
  }

  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    font-size: 15px;
  }

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

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .section {
    padding: 48px 0;
  }

  .privacy-banner {
    gap: 10px;
    max-width: 100vw;
    overflow: hidden;
    padding: 10px 16px 12px;
  }

  .privacy-copy {
    font-size: 13px;
    line-height: 1.45;
    max-width: 100%;
    white-space: normal;
  }

  .privacy-banner,
  .cookie-banner,
  .cta-band,
  .footer-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-actions,
  .cookie-actions {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
    width: 100%;
  }

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

  .privacy-actions .button,
  .cookie-actions .button,
  .privacy-actions .text-link,
  .cookie-actions .text-link {
    min-width: 0;
    width: 100%;
  }

  .cookie-actions .text-link {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 36px;
  }

  .privacy-actions .icon-button {
    display: none;
  }

  .site-header {
    height: 66px;
    overflow: hidden;
  }

  .nav-shell {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 42px;
    min-width: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand img {
    height: 46px;
    width: min(100%, 174px);
  }

  .nav-tools {
    display: grid;
    justify-content: end;
    min-width: 42px;
  }

  .menu-toggle {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--white);
    flex: 0 0 42px;
    position: relative;
    z-index: 1;
  }

  .mobile-drawer {
    overflow-y: auto;
  }

  .drawer-link {
    font-size: 27px;
  }

  .drawer-controls .button {
    width: 100%;
  }

  .hero {
    background-position: 64% center;
  }

  .hero,
  .hero .container {
    min-height: 100svh;
  }

  .hero-copy {
    max-width: 100%;
    padding: 42px 0 52px;
  }

  .team-accreditation-strip {
    padding: 4px 0;
  }

  .membership-marquee {
    margin-inline: 0;
  }

  .membership-track {
    animation-duration: 24s;
    gap: 24px;
  }

  .membership-track img {
    max-height: 30px;
    max-width: 104px;
  }

  .membership-track img:first-child,
  .membership-track img:nth-child(7) {
    max-height: 40px;
  }

  .membership-track img:nth-child(4),
  .membership-track img:nth-child(10) {
    max-height: 36px;
  }

  .hero-logo-row {
    gap: 14px 18px;
  }

  .hero-logo-row img {
    max-height: 26px;
    max-width: 94px;
  }

  .hero h1 {
    font-size: 34px;
    max-width: 100%;
  }

  .hero .cluster,
  .cta-band .button {
    display: grid;
    width: 100%;
  }

  .hero .button,
  .cta-band .button {
    width: 100%;
  }

  .hero p,
  .page-hero p,
  .lead {
    font-size: 16px;
    max-width: 100%;
  }

  .page-hero,
  .page-hero .container {
    min-height: 0;
  }

  .page-hero .container {
    padding-block: calc(52px + 66px) 52px;
  }

  .page-hero h1 {
    font-size: 29px;
    max-width: 100%;
  }

  .page-hero p {
    max-width: 100%;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .approach-layout,
  .accreditation-layout,
  .split-layout,
  .contact-layout,
  .service-detail,
  .expertise-list,
  .footer-grid,
  .field-grid,
  .values-strip {
    grid-template-columns: 1fr;
  }

  .container,
  .section-heading,
  .article-shell,
  .policy-shell,
  .contact-form,
  .contact-panel,
  .service-detail > *,
  .split-layout > *,
  .approach-layout > * {
    max-width: 100%;
    min-width: 0;
  }

  .page-hero .container > div {
    max-width: 100%;
    min-width: 0;
  }

  .trust-item {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 88px;
    padding-inline: 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .card,
  .portal-callout,
  .expertise-list li,
  .license-card {
    padding: 20px;
  }

  .license-card {
    grid-template-columns: 1fr;
  }

  .license-logo {
    min-height: 132px;
  }

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

  .service-detail {
    gap: 20px;
  }

  .service-detail:nth-child(even) .detail-visual {
    order: 0;
  }

  .detail-visual {
    min-height: 220px;
  }

  .media-frame,
  .media-frame img {
    min-height: 340px;
  }

  .contact-list a,
  .footer-links a {
    word-break: break-word;
  }

  .portal-callout {
    display: grid;
    gap: 14px;
  }

  .portal-callout .button {
    width: 100%;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  .map-frame {
    height: 280px;
  }

  .vision-quote {
    font-size: 27px;
    padding-left: 18px;
  }

  .article-shell blockquote {
    font-size: 24px;
  }

  .button {
    padding-inline: 22px;
  }

  .cookie-banner {
    bottom: 10px;
    gap: 12px;
    max-width: calc(100vw - 20px);
    padding: 14px;
  }

  .cookie-banner p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero::before,
  .page-hero::before,
  .membership-track {
    animation: none;
  }

  main {
    animation: none;
  }
}
