:root {
  --navy-950: #081a29;
  --navy-900: #0d2438;
  --navy-800: #17364e;
  --navy-700: #27516c;
  --green-700: #13724d;
  --green-600: #18865b;
  --green-500: #27a871;
  --green-300: #70d6a2;
  --green-100: #dff6e9;
  --ink: #142536;
  --muted: #586a79;
  --line: #dce5e9;
  --surface: #ffffff;
  --surface-soft: #f4f7f5;
  --warm: #f7f4ee;
  --shadow-sm: 0 12px 35px rgba(13, 36, 56, 0.08);
  --shadow-lg: 0 28px 70px rgba(8, 26, 41, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --wrap: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--green-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-900);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e49a22;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55em;
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 19ch;
  font-size: clamp(2.25rem, 8vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 3.2vw, 1.55rem);
  letter-spacing: -0.02em;
}

p,
ul,
ol,
blockquote,
figure,
table {
  margin: 0 0 1.35rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

.wrap {
  width: min(calc(100% - 36px), var(--wrap));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--green-300);
}

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 0.65rem 1rem;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 10px 25px rgba(19, 114, 77, 0.2);
}

.button--primary:hover {
  color: #fff;
  background: var(--navy-900);
}

.button--secondary,
.button--ghost {
  color: var(--navy-900);
  background: transparent;
  border-color: #afbec7;
}

.button--secondary:hover,
.button--ghost:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button--light {
  color: var(--navy-900);
  background: #fff;
}

.button--accent {
  color: var(--navy-950);
  background: var(--green-300);
}

.button--dark-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.button--dark-outline:hover {
  color: var(--navy-950);
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--green-600);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.topbar {
  display: none;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
  font-size: 0.78rem;
}

.topbar p {
  margin: 0;
}

.topbar__inner,
.topbar__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.topbar__inner {
  min-height: 38px;
}

.topbar__contact a {
  color: #fff;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 233, 0.9);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  min-height: 76px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  width: min(196px, 52vw);
  align-items: center;
}

.brand img {
  width: 100%;
}

.nav-toggle {
  display: inline-flex;
  min-width: 48px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--navy-900);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.nav-toggle__label {
  display: none;
}

.nav-toggle__icon {
  display: grid;
  width: 20px;
  gap: 4px;
}

.nav-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  grid-column: 1 / -1;
  padding-bottom: 1rem;
}

.js .main-nav {
  display: none;
}

.js .main-nav.is-open {
  display: block;
}

.no-js .nav-toggle {
  display: none;
}

.main-nav .menu,
.main-nav .sub-menu {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .sub-menu {
  margin: 0.1rem 0 0.35rem 0.65rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--green-300);
}

.main-nav a {
  display: block;
  padding: 0.62rem 0;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav .sub-menu a {
  padding: 0.5rem 0;
  color: var(--navy-700);
  border-bottom: 0;
  font-size: 0.87rem;
  font-weight: 650;
}

.main-nav .menu > .menu-item-has-children > a::after {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin: 0 0 0.18rem 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.main-nav .current-menu-item > a,
.main-nav .current-menu-parent > a,
.main-nav a:hover {
  color: var(--green-700);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(4.5rem, 9vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(112, 214, 162, 0.17), transparent 27rem),
    linear-gradient(145deg, #fbfcfa 0%, #f2f6f3 100%);
}

.hero::before {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(19, 114, 77, 0.14);
  border-radius: 50%;
  content: "";
  left: -160px;
  top: 40px;
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__lead {
  max-width: 63ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0;
}

.hero__points {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: var(--navy-700);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.hero__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__points li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
}

.hero__visual {
  position: relative;
  width: min(100%, 530px);
  margin-inline: auto;
  isolation: isolate;
}

.hero__visual picture {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 40% 40% 22px 22px;
  box-shadow: var(--shadow-lg);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 800 / 729;
  object-fit: cover;
}

.hero__shape {
  position: absolute;
  z-index: 0;
  width: 88%;
  aspect-ratio: 1;
  right: -5%;
  bottom: -5%;
  background: var(--green-300);
  border-radius: 50%;
}

.hero__card {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(92%, 350px);
  align-items: center;
  gap: 0.8rem;
  margin: -1.5rem auto 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.hero__card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  font-weight: 900;
}

.hero__card strong,
.hero__card span {
  display: block;
}

.hero__card strong {
  color: var(--navy-900);
  font-size: 0.9rem;
  line-height: 1.3;
}

.hero__card div > span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.intro-band {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.intro-band__grid {
  display: grid;
  gap: 1.25rem;
}

.intro-band h2 {
  max-width: 13ch;
}

.intro-band__grid > div:last-child {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.services-section,
.articles-section,
.blog-listing {
  background: var(--surface-soft);
}

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

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  gap: 1rem;
}

.section-heading--split > p {
  max-width: 48ch;
  color: var(--muted);
}

.service-grid,
.content-cards,
.post-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.post-card,
.content-cards article {
  min-width: 0;
  padding: clamp(1.35rem, 4vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.post-card:hover,
.content-cards article:hover {
  border-color: #b8cbc3;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card__number {
  display: inline-flex;
  margin-bottom: 2.1rem;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card p,
.post-card p,
.content-cards p {
  color: var(--muted);
}

.service-card > a:not(.button),
.content-cards article > a {
  display: inline-flex;
  gap: 0.4rem;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
}

.service-card--featured {
  background: var(--green-100);
  border-color: #c1ead3;
}

.service-card--cta {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.service-card--cta h3,
.service-card--cta p {
  color: #fff;
}

.method-section,
.final-cta {
  color: #fff;
  background: var(--navy-950);
}

.method-grid {
  display: grid;
  gap: 3rem;
}

.method-intro h2,
.final-cta h2 {
  color: #fff;
}

.method-intro > p:not(.eyebrow),
.final-cta p {
  color: rgba(255, 255, 255, 0.73);
}

.method-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: 46px 1fr;
  gap: 1rem;
}

.method-steps > li > span {
  color: var(--green-300);
  font-size: 0.78rem;
  font-weight: 900;
}

.method-steps h3,
.method-steps p {
  color: #fff;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.about-visual {
  position: relative;
  width: min(100%, 500px);
  padding: 1rem 0 0 1rem;
}

.about-visual::before {
  position: absolute;
  inset: 0 2.2rem 2.2rem 0;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  content: "";
}

.about-visual picture {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 800 / 729;
  object-fit: cover;
}

.about-content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.13rem;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.geo-section {
  padding-top: 0;
}

.geo-card {
  display: grid;
  padding: clamp(1.6rem, 6vw, 4.2rem);
  color: #fff;
  background:
    radial-gradient(circle at 95% 0%, rgba(112, 214, 162, 0.25), transparent 24rem),
    var(--navy-900);
  border-radius: var(--radius-lg);
  gap: 2.5rem;
}

.geo-card h2,
.geo-card p {
  color: #fff;
}

.geo-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.73);
}

.geo-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo-list li {
  display: grid;
  padding: 1rem 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 42px 1fr;
  font-weight: 750;
}

.geo-list span {
  color: var(--green-300);
  font-size: 0.75rem;
}

.post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.post-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.post-card__meta span {
  color: var(--green-700);
}

.post-card h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: -0.025em;
}

.post-card h2 a {
  color: inherit;
  text-decoration: none;
}

.post-card .text-link {
  margin-top: auto;
}

.final-cta__inner {
  display: grid;
  align-items: end;
  gap: 2rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #06131f;
}

.footer-grid {
  display: grid;
  padding-block: 4rem 2.5rem;
  gap: 2.5rem;
}

.footer-brand img {
  width: 210px;
  padding: 0.35rem;
  background: #fff;
  border-radius: 10px;
}

.footer-brand p {
  max-width: 33ch;
  margin-top: 1.2rem;
}

.site-footer h2 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a,
.footer-link-button {
  color: rgba(255, 255, 255, 0.74);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer a:hover,
.footer-link-button:hover {
  color: var(--green-300);
}

.footer-link-button {
  padding: 0;
  text-align: left;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  padding-block: 1.1rem;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.breadcrumbs {
  padding-block: 0.85rem;
  font-size: 0.76rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.4rem;
  color: #93a2ac;
  content: "/";
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs span {
  color: var(--navy-900);
}

.page-hero,
.article-hero {
  padding-block: clamp(3.2rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(112, 214, 162, 0.18), transparent 22rem),
    var(--surface-soft);
}

.page-hero__inner,
.article-hero__inner {
  max-width: 920px;
}

.page-hero h1,
.article-hero h1 {
  max-width: 22ch;
}

.page-hero__inner > p:not(.eyebrow),
.page-hero__inner > div,
.article-standfirst {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}

.page-hero--compact {
  padding-block: 3rem;
}

.page-layout,
.article-layout {
  display: grid;
  padding-block: clamp(3rem, 7vw, 6rem);
  gap: 3rem;
}

.page-content,
.article-content,
.legal-content {
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-content > :first-child,
.article-content > :first-child {
  margin-top: 0;
}

.page-content h2,
.article-content h2 {
  margin-top: 1.7em;
  font-size: clamp(1.6rem, 4vw, 2.35rem) !important;
}

.page-content h3,
.article-content h3 {
  margin-top: 1.5em;
  font-size: clamp(1.2rem, 3vw, 1.55rem) !important;
}

.article-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.35rem) !important;
}

.page-content p,
.page-content li,
.article-content p,
.article-content li {
  color: #334b5d;
}

.article-content > p,
.article-content > ul,
.article-content > ol,
.article-content > blockquote,
.article-content > h2,
.article-content > h3,
.article-content > figure,
.article-content > table,
.article-content > div,
.article-content > section {
  max-width: 780px;
}

.page-content img,
.article-content img {
  width: auto;
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--radius-sm);
}

.page-content table,
.article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.page-content th,
.page-content td,
.article-content th,
.article-content td {
  padding: 0.75rem;
  border: 1px solid var(--line);
  text-align: left;
}

.page-content blockquote,
.article-content blockquote {
  padding: 1.2rem 1.4rem;
  background: var(--green-100);
  border-left: 4px solid var(--green-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.content-section {
  margin-bottom: 3.5rem;
}

.content-section--lead > p {
  font-size: 1.08rem;
}

.content-section--tint {
  padding: clamp(1.3rem, 5vw, 2.4rem);
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}

.content-cards {
  margin-top: 1.5rem;
}

.content-cards article h3 {
  margin-top: 0;
}

.aside-card {
  padding: clamp(1.35rem, 4vw, 2rem);
  background: var(--warm);
  border: 1px solid #e5ddd0;
  border-radius: var(--radius-md);
}

.aside-card h2 {
  font-size: 1.55rem;
}

.aside-card .text-link {
  margin-top: 1rem;
}

.article-hero .eyebrow {
  text-decoration: none;
}

.article-meta {
  margin: 1.3rem 0 0;
}

.article-image {
  margin-top: 2.5rem;
}

.article-image img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.article-sources {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}

.article-sources h2 {
  margin-top: 0;
  font-size: 1.5rem !important;
}

.archive-notice,
.form-notice {
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
}

.archive-notice {
  background: var(--warm);
  border: 1px solid #e3dacb;
}

.archive-notice p {
  margin: 0.2rem 0 0;
}

.related-posts {
  background: var(--surface-soft);
}

.category-nav {
  display: flex;
  margin-bottom: 2rem;
  padding-bottom: 0.65rem;
  gap: 0.55rem;
  overflow-x: auto;
}

.category-nav a {
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.category-nav a[aria-current="page"],
.category-nav a:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.pagination {
  margin-top: 2.5rem;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pagination .page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  padding: 0.4rem;
  place-items: center;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
}

.pagination .current {
  color: #fff;
  background: var(--green-700);
  border-color: var(--green-700);
}

.contact-section {
  background: var(--surface-soft);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-form-wrap {
  padding: clamp(1.25rem, 5vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-900);
  font-size: 1.25rem;
  font-weight: 850;
}

.contact-form legend span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.78rem;
}

.js .contact-form .form-step[data-form-step="2"] {
  display: none;
}

.js .contact-form[data-current-step="2"] .form-step[data-form-step="1"] {
  display: none;
}

.js .contact-form[data-current-step="2"] .form-step[data-form-step="2"] {
  display: block;
}

.form-progress {
  height: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
  background: var(--line);
  border-radius: 99px;
}

.form-progress span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--green-600);
  transition: width 180ms ease;
}

.contact-form[data-current-step="2"] .form-progress span {
  width: 100%;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 750;
}

.label-optional {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.field input,
.field textarea,
.search-form input {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #afbec7;
  border-radius: 10px;
}

.field input,
.search-form input {
  min-height: 50px;
  padding: 0 0.85rem;
}

.field textarea {
  min-height: 160px;
  padding: 0.75rem 0.85rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.search-form input:focus {
  border-color: var(--green-600);
  outline: 3px solid rgba(39, 168, 113, 0.17);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b43636;
}

.consent-field label {
  display: grid;
  align-items: start;
  grid-template-columns: 22px 1fr;
  gap: 0.55rem;
  font-weight: 500;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  justify-content: space-between;
  gap: 0.75rem;
}

.form-actions--end {
  justify-content: flex-end;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.form-privacy {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-notice--success {
  color: #0f5d3f;
  background: #e4f7ec;
  border: 1px solid #b8e5ca;
}

.form-notice--error {
  color: #742a2a;
  background: #fff0f0;
  border: 1px solid #efc5c5;
}

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

.contact-option {
  display: grid;
  padding: 1.25rem;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  grid-template-columns: 38px 1fr;
  gap: 0.75rem;
}

.contact-option > span {
  color: var(--green-300);
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-option h2,
.contact-option p,
.contact-option a {
  color: #fff;
}

.contact-option h2 {
  font-size: 1.2rem;
}

.contact-option p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-option a {
  font-size: 0.9rem;
  font-weight: 800;
}

.legal-content code {
  padding: 0.15rem 0.35rem;
  background: var(--surface-soft);
  border-radius: 5px;
  overflow-wrap: anywhere;
}

.search-form {
  max-width: 720px;
  margin-bottom: 2rem;
}

.search-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.search-form > div {
  display: grid;
  gap: 0.6rem;
}

.empty-state,
.not-found__inner {
  max-width: 760px;
  padding: clamp(1.5rem, 6vw, 4rem);
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
}

.not-found {
  min-height: 60vh;
}

.cookie-banner {
  position: fixed;
  z-index: 9999;
  right: 12px;
  bottom: 12px;
  left: 12px;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  color: #fff;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-banner__content {
  display: grid;
  padding: 1.2rem;
  gap: 1rem;
}

.cookie-banner h2 {
  color: #fff;
  font-size: 1.4rem;
}

.cookie-banner p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.cookie-banner a {
  color: var(--green-300);
  font-size: 0.84rem;
}

.cookie-banner__actions {
  display: grid;
  align-content: center;
  gap: 0.6rem;
}

.button--consent {
  width: 100%;
  color: var(--navy-950);
  background: #fff;
  border-color: #fff;
}

.button--consent:hover {
  color: var(--navy-950);
  background: var(--green-300);
}

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

@media (min-width: 560px) {
  .nav-toggle__label {
    display: inline;
  }

  .hero__points,
  .form-grid,
  .search-form > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field--full,
  .search-form input {
    grid-column: 1 / -1;
  }

  .search-form > div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .search-form input {
    grid-column: auto;
  }

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

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

@media (min-width: 768px) {
  .topbar {
    display: block;
  }

  .intro-band__grid,
  .section-heading--split,
  .final-cta__inner,
  .geo-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .section-heading--split > p,
  .section-heading--split > .text-link {
    justify-self: end;
  }

  .method-grid,
  .about-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

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

  .contact-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }

  .cookie-banner {
    right: 22px;
    bottom: 22px;
    left: auto;
    width: min(720px, calc(100% - 44px));
  }

  .cookie-banner__content {
    grid-template-columns: minmax(0, 1.5fr) minmax(210px, 0.7fr);
    padding: 1.5rem;
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(130px, 1fr));
  }

  .site-header__inner {
    min-height: 86px;
    grid-template-columns: 190px minmax(0, 1fr) auto;
  }

  .brand {
    width: 190px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav,
  .js .main-nav {
    display: block;
    grid-column: auto;
    padding: 0;
  }

  .main-nav .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.9rem, 1.8vw, 1.8rem);
  }

  .main-nav .menu > li > a {
    padding: 0.45rem 0;
    border: 0;
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    white-space: nowrap;
  }

  .main-nav .menu-item-has-children {
    position: relative;
  }

  .main-nav .menu-item-has-children::before {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 0.7rem;
    content: "";
  }

  .main-nav .sub-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 0.55rem);
    left: 50%;
    display: grid;
    min-width: 250px;
    margin: 0;
    padding: 0.55rem;
    gap: 0.1rem;
    visibility: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(13, 36, 56, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -0.35rem);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .main-nav .menu-item-has-children:hover > .sub-menu,
  .main-nav .menu-item-has-children:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .main-nav .sub-menu a {
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .main-nav .sub-menu a:hover,
  .main-nav .sub-menu a:focus-visible {
    background: var(--surface-soft);
  }

  .header-cta {
    display: inline-flex;
    min-height: 43px;
    padding: 0 1rem;
    align-items: center;
    color: #fff;
    background: var(--green-700);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
  }

  .header-cta:hover {
    color: #fff;
    background: var(--navy-900);
  }

  .hero__grid {
    min-height: 620px;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.78fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

  .hero__card {
    position: absolute;
    left: -10%;
    bottom: 7%;
    margin: 0;
  }

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

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

  .service-card--cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-layout,
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(3rem, 6vw, 6rem);
  }

  .page-aside,
  .article-aside {
    display: block;
  }

  .aside-card--sticky,
  .page-aside .aside-card {
    position: sticky;
    top: 120px;
  }
}

@media (min-width: 1200px) {
  .site-header__inner {
    grid-template-columns: 210px minmax(0, 1fr) auto;
  }

  .brand {
    width: 205px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .hero__actions .button,
  .final-cta__actions .button,
  .form-actions .button {
    width: 100%;
  }

  .page-hero h1,
  .article-hero h1,
  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }
}
