
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1E3A5F;
  --slate:      #2C4A6E;
  --cool-grey:  #8FA3B1;
  --light-grey: #D6E0E9;
  --surface:    #F0F4F8;
  --white:      #FFFFFF;
  --teal:       #2A9D8F;
  --teal-dark:  #1F7A6E;
  --teal-light: #3DBFB0;
  --amber:      #E9C46A;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 3px rgba(13,27,42,.08), 0 1px 2px rgba(13,27,42,.06);
  --shadow-md:  0 4px 16px rgba(13,27,42,.12), 0 2px 6px rgba(13,27,42,.08);
  --shadow-lg:  0 10px 40px rgba(13,27,42,.18);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --max-width:  1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.ph { display: inline-block; vertical-align: middle; }
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.site-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-placeholder {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1;
}

.brand-name span { color: var(--teal-light); }
.site-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-link.active { color: var(--teal-light); }

.nav-cta {
  margin-left: 8px;
  background: var(--teal);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 12px 0 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: 12px 24px;
  border-radius: 0;
  font-size: 1rem;
}
.mobile-nav .nav-cta {
  margin: 8px 24px 0;
  text-align: center;
  border-radius: var(--radius-sm);
}
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.62);
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .brand-name { font-size: 1.2rem; margin: 12px 0 10px; }
.footer-brand p { font-size: .875rem; line-height: 1.6; max-width: 280px; }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.62);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  font-size: .8rem;
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: rgba(255,255,255,.75); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 6px 20px rgba(42,157,143,.35); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy-mid); }
.btn-outline:hover { background: var(--surface); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); color: var(--white); }
.section-eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }
.section-eyebrow.light { color: var(--teal-light); }

.section-lead {
  font-size: 1.05rem;
  color: #4A6580;
  line-height: 1.7;
  max-width: 640px;
}

.section-lead.light { color: rgba(255,255,255,.72); }
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1634097537825-b446635b2f7f?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTl8fGNyeXB0b2N1cnJlbmN5JTIwY2hhcnR8ZW58MHx8MHx8fDA%3D');
  background-size: cover; background-position: center;
  opacity: .18;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(30,58,95,.75) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(42,157,143,.35);
  background: rgba(42,157,143,.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em { color: var(--teal-light); font-style: normal; }

.hero-lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-pulse {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; z-index: 2;
}
@keyframes pulse-draw {
  0% { stroke-dashoffset: 1200; }
  100% { stroke-dashoffset: 0; }
}
.pulse-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: pulse-draw 3.5s ease forwards;
  animation-delay: .5s;
}
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--light-grey);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}
.stat-value span { color: var(--teal); }
.stat-label { font-size: .82rem; color: var(--cool-grey); margin-top: 6px; font-weight: 500; letter-spacing: .03em; }
.card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(42,157,143,.12), rgba(42,157,143,.06));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.card-body {
  font-size: .9rem;
  color: #4A6580;
  line-height: 1.65;
}

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--teal);
  margin-top: 18px;
  border: none; background: none; cursor: pointer;
  transition: gap var(--transition);
  text-decoration: none;
}
.card-link:hover { gap: 10px; color: var(--teal-dark); }
.section { padding: 80px 0; }
.section-dark { background: var(--navy); }
.section-surface { background: var(--surface); }
.feature-image-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-image-wrap img { width: 100%; height: 480px; object-fit: cover; }

.feature-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(13,27,42,.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
  min-width: 200px;
}
.feature-badge-label { font-size: .75rem; color: var(--cool-grey); text-transform: uppercase; letter-spacing: .08em; }
.feature-badge-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-light); margin-top: 2px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { }
.split-content { }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: .93rem; color: #3A5470;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fl-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(42,157,143,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-top: 2px;
}
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,157,143,.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; max-width: 700px; }

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

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); margin: 40px 0 14px; }
.prose h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin: 28px 0 10px; }
.prose p { color: #3A5470; line-height: 1.75; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 12px 0 20px 24px; color: #3A5470; line-height: 1.75; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--navy); }
.prose a { color: var(--teal); }
.risk-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 28px 28px 24px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
}
.risk-card:hover { box-shadow: var(--shadow-md); }
.risk-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.risk-card-severity {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}
.severity-high { background: rgba(220,53,69,.1); color: #DC3545; }
.severity-medium { background: rgba(233,196,106,.15); color: #8B6914; }
.severity-low { background: rgba(42,157,143,.1); color: var(--teal-dark); }

.risk-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
.risk-card p { font-size: .9rem; color: #4A6580; line-height: 1.65; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: var(--light-grey);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -28px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-year { font-size: .78rem; font-weight: 700; color: var(--teal); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.timeline-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.timeline-body { font-size: .9rem; color: #4A6580; line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }

.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(42,157,143,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.contact-info-label { font-size: .78rem; font-weight: 600; color: var(--cool-grey); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-info-value { font-size: .95rem; color: var(--navy); font-weight: 500; }
.contact-info-value a { color: var(--navy); }
.contact-info-value a:hover { color: var(--teal); }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body); font-size: .93rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,.15);
}
.form-control::placeholder { color: var(--cool-grey); }
textarea.form-control { resize: vertical; min-height: 140px; }

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

.form-notice { font-size: .8rem; color: var(--cool-grey); margin-top: 14px; }

.form-success {
  display: none;
  background: rgba(42,157,143,.08);
  border: 1px solid rgba(42,157,143,.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--teal-dark);
  font-size: .93rem;
  text-align: center;
  margin-top: 16px;
}
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-card-img { height: 220px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px 22px; }
.team-card-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); }
.team-card-role { font-size: .82rem; color: var(--teal); font-weight: 600; margin: 4px 0 10px; }
.team-card-bio { font-size: .85rem; color: #4A6580; line-height: 1.6; }

.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.value-item { padding: 28px; background: var(--surface); border-radius: var(--radius-md); }
.value-item .vi-icon { color: var(--teal); margin-bottom: 14px; }
.value-item h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.value-item p { font-size: .88rem; color: #4A6580; line-height: 1.6; }
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  padding: 72px 0;
  text-align: center;
}
.cta-band .section-title.light { margin-bottom: 14px; }
.cta-band .section-lead.light { margin: 0 auto 36px; }
.cta-band .hero-actions { justify-content: center; }
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; font-size: .87rem; color: rgba(255,255,255,.7); line-height: 1.55; }
.cookie-text a { color: var(--teal-light); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--teal); color: var(--white); padding: 9px 20px; border-radius: var(--radius-sm); border: none; cursor: pointer; font-size: .87rem; font-weight: 600; font-family: var(--font-body); transition: background var(--transition); }
.btn-cookie-accept:hover { background: var(--teal-dark); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,.55); padding: 9px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.15); cursor: pointer; font-size: .87rem; font-family: var(--font-body); transition: color var(--transition), border-color var(--transition); }
.btn-cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.policy-content { padding: 64px 0 80px; }
.policy-sidebar {
  position: sticky; top: 88px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
}
.policy-sidebar h4 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cool-grey); margin-bottom: 14px; }
.policy-sidebar ul { list-style: none; }
.policy-sidebar ul li { margin-bottom: 8px; }
.policy-sidebar ul li a { font-size: .88rem; color: #4A6580; transition: color var(--transition); }
.policy-sidebar ul li a:hover, .policy-sidebar ul li a.active { color: var(--teal); }

.policy-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.tag { display: inline-block; font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: var(--surface); color: var(--slate); border: 1px solid var(--light-grey); margin: 3px; }
.img-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; gap: 16px; }
.img-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.img-mosaic .span2 { grid-row: span 2; height: 100%; }
.table-wrap { overflow-x: auto; margin: 24px 0; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th { background: var(--surface); color: var(--navy); font-weight: 600; text-align: left; padding: 12px 16px; border-bottom: 2px solid var(--light-grey); }
td { padding: 12px 16px; border-bottom: 1px solid var(--light-grey); color: #3A5470; }
tr:hover td { background: rgba(240,244,248,.6); }
.accordion-item { border-bottom: 1px solid var(--light-grey); }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 0; font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--navy);
  text-align: left;
}
.accordion-trigger .acc-icon { flex-shrink: 0; transition: transform var(--transition); }
.accordion-trigger.open .acc-icon { transform: rotate(180deg); }
.accordion-body { display: none; padding-bottom: 18px; font-size: .9rem; color: #4A6580; line-height: 1.7; }
.accordion-body.open { display: block; }
.callout {
  background: rgba(42,157,143,.07);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: .93rem; color: #2A5048; line-height: 1.65;
}
.error-page { text-align: center; padding: 120px 0; }
.error-code { font-family: var(--font-display); font-size: 8rem; color: var(--light-grey); line-height: 1; }
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-nav { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--light-grey); padding: 0 0 24px; }
  .stat-item:nth-child(2n) { padding-left: 20px; }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .split { grid-template-columns: 1fr; }
  .split .feature-image-wrap { order: -1; }
  .team-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
  .img-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .img-mosaic .span2 { grid-row: span 1; height: 240px; }
  .hero { min-height: 75vh; }
  .section { padding: 56px 0; }
  .policy-sidebar { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid var(--light-grey); border-right: none; padding: 0 0 20px; }
  .stat-item:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; gap: 14px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-line { animation: none; stroke-dashoffset: 0; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
