:root {
  --ink: #12382e;
  --muted: #60716e;
  --bg: #fffbec;
  --paper: #fffef8;
  --line: #eadfbe;
  --green: #187c38;
  --green-dark: #063f24;
  --mint: #e7f7dc;
  --coral: #7552a1;
  --coral-soft: #eee8fb;
  --sky: #dff6ff;
  --gold: #fed956;
  --blue: #0192c3;
  --yellow-soft: #fff4b8;
  --shadow: 0 14px 32px rgba(6, 63, 36, 0.14);
  --radius: 8px;
  --container: 1120px;
  --header-height: 72px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 251, 236, 0.94);
  border-bottom: 1px solid rgba(234, 223, 190, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-logo,
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(254, 217, 86, 0.72);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  padding: 1px;
  object-fit: contain;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.nav-toggle__line {
  position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  position: absolute;
  left: 0;
}

.nav-toggle__line::before {
  top: -6px;
}

.nav-toggle__line::after {
  top: 6px;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  max-height: calc(100svh - var(--header-height));
  overflow: auto;
  padding: 14px 16px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--mint);
  color: var(--green-dark);
}

.site-nav .nav-cta {
  background: var(--green);
  color: white;
}

.site-nav .nav-cta:hover {
  background: var(--green-dark);
  color: white;
}

.lang-switch {
  border: 1px solid var(--line);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--green-dark);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 45, 29, 0.94), rgba(4, 45, 29, 0.72) 42%, rgba(1, 146, 195, 0.18) 72%),
    linear-gradient(0deg, rgba(4, 45, 29, 0.58), rgba(254, 217, 86, 0.08));
}

.hero__content {
  position: relative;
  max-width: 700px;
  padding-block: 80px 48px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 2.55rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.hero__lead {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

.button--secondary {
  background: var(--coral);
  color: white;
}

.button--instagram {
  border-color: rgba(254, 217, 86, 0.92);
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 10px 22px rgba(254, 217, 86, 0.18);
}

.button--instagram:hover {
  background: #ffe47a;
  color: var(--green-dark);
}

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.button--outline {
  border-color: var(--green);
  background: transparent;
  color: var(--green-dark);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-facts span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.contact-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.contact-strip__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.contact-strip a {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 18px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.contact-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-strip strong {
  color: var(--green-dark);
}

.section {
  padding-block: 62px;
}

.section--tint {
  background: #effbef;
}

.section--warm {
  background: #fff4c8;
}

.section--trust {
  background: #eefaff;
}

.split {
  display: grid;
  gap: 32px;
}

.split > div > p + p {
  margin-top: 14px;
}

.section-lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.section-head--wide {
  align-items: start;
}

.section-head--wide .section-lead {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.value-grid,
.card-grid,
.gallery-grid,
.post-list,
.day-grid,
.activity-grid,
.faq-list,
.trust-grid,
.visit-steps {
  display: grid;
  gap: 16px;
}

.mini-card,
.group-card,
.post-card,
.day-card,
.activity-card,
.trust-card,
.visit-step,
.contact-card,
.gallery-tile,
.note-box,
.info-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.mini-card,
.group-card,
.post-card,
.day-card,
.activity-card,
.trust-card,
.visit-step,
.contact-card,
.note-box,
.map-panel {
  padding: 20px;
}

.mini-card strong,
.mini-card h2,
.group-card h2,
.group-card h3,
.post-card h2,
.post-card h3,
.gallery-tile h2 {
  margin-bottom: 10px;
}

.mini-card p,
.group-card p,
.post-card p,
.day-card p,
.activity-card p,
.trust-card p,
.visit-step p,
.gallery-tile p,
.note-box p,
.map-panel p {
  color: var(--muted);
}

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

.day-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.day-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--coral-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.day-card h3,
.activity-card h3 {
  margin-bottom: 10px;
}

.activity-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.activity-card--compact {
  min-height: 0;
}

.activity-card ul,
.photo-note ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.activity-card li,
.photo-note li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.activity-card li::before,
.photo-note li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

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

.trust-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.trust-card::before {
  width: 42px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.trust-card h3,
.visit-step h3 {
  margin-bottom: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.photo-note {
  display: grid;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(223, 246, 255, 0.84), rgba(255, 244, 184, 0.82) 56%, rgba(238, 232, 251, 0.72)),
    var(--paper);
}

.photo-note p {
  margin-top: 14px;
  color: var(--muted);
}

.photo-note__copy {
  min-width: 0;
}

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

.photo-note__media figure {
  position: relative;
  min-height: 148px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
}

.photo-note__media img,
.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-note__media img {
  position: absolute;
  inset: 0;
}

.photo-note__media figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border-radius: var(--radius);
  background: rgba(6, 63, 36, 0.84);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.visit-section {
  background: var(--green-dark);
  color: white;
}

.visit-panel {
  display: grid;
  gap: 28px;
  align-items: start;
}

.visit-panel .section-kicker {
  color: var(--gold);
}

.visit-panel__intro p,
.visit-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.visit-panel .button--outline,
.contact-section .button--outline {
  border-color: rgba(255, 255, 255, 0.58);
  color: white;
}

.visit-panel .button--outline:hover,
.contact-section .button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.visit-step {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.visit-step span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  color: var(--coral);
  font-weight: 900;
}

.visit-note {
  max-width: 560px;
  margin: 4px 0 0;
}

.group-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.group-card .text-link,
.group-card .button {
  margin-top: auto;
}

.group-card__age {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.group-card--large {
  min-height: 360px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.pill-list span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 800;
}

.page-hero {
  padding-block: 72px 46px;
  background: linear-gradient(135deg, #effbef, #dff6ff 54%, #fff4c8);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  max-width: 840px;
}

.page-hero h1 {
  color: var(--green-dark);
}

.page-hero p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.info-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.info-panel > div,
.info-panel > a {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--paper);
}

.info-panel strong {
  font-size: 1.35rem;
  color: var(--green-dark);
}

.info-panel span {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.program-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--coral-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.timeline__item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.timeline__item span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral);
  font-weight: 800;
}

.timeline__item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
}

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

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

.gallery-tile {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gallery-tile img {
  height: clamp(220px, 30vw, 340px);
}

.gallery-tile__body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.gallery-tile__body span {
  color: var(--coral);
  font-weight: 900;
}

.post-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.post-card a:hover {
  color: var(--green);
}

.post-card--wide {
  display: grid;
  gap: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag-row span {
  min-height: 32px;
  font-size: 0.86rem;
}

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

.article-body p {
  margin-top: 18px;
  color: #304c45;
  font-size: 1.05rem;
}

.contact-section {
  background: var(--green-dark);
  color: white;
}

.contact-panel {
  display: grid;
  gap: 20px;
  align-items: center;
}

.contact-panel .section-kicker {
  color: var(--gold);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-layout {
  display: grid;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.contact-list div {
  display: grid;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-list dd {
  margin: 0;
  font-weight: 800;
}

.contact-actions--left {
  justify-content: flex-start;
}

.map-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(6, 63, 36, 0.9), rgba(6, 63, 36, 0.62)),
    linear-gradient(45deg, var(--mint), var(--sky), var(--yellow-soft));
  color: white;
}

.map-panel span {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.map-panel p,
.map-panel .text-link {
  color: rgba(255, 255, 255, 0.88);
}

.note-box h2 {
  margin-bottom: 10px;
}

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

.footer-grid {
  display: grid;
  gap: 22px;
}

.brand--footer {
  color: white;
}

.brand--footer .brand-logo {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand--footer small,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer address,
.site-footer div {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding-block: 48px;
  }

  .brand {
    gap: 9px;
  }

.brand-logo {
  width: 44px;
  height: 44px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 42px);
  }

  .hero__content {
    padding-block: 38px 18px;
  }

  h1 {
    font-size: 2.1rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: 14px;
  }

  .hero-facts li {
    min-height: 62px;
    padding: 8px 6px;
  }

  .hero-facts strong {
    font-size: 1.08rem;
  }

  .hero-facts span {
    font-size: 0.72rem;
  }

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

  .button {
    width: 100%;
  }

  .hero__actions .button {
    width: auto;
    flex: 1 1 136px;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .trust-card,
  .visit-step,
  .day-card,
  .activity-card,
  .group-card {
    min-height: 0;
  }

  .photo-note__media {
    gap: 8px;
  }

  .photo-note__media figure {
    min-height: 132px;
  }
}

@media (min-width: 720px) {
  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .split,
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: start;
  }

  .split--reverse {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .split--reverse > div:first-child {
    order: 2;
  }

  .section-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .section-head--wide {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  }

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

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

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

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

  .photo-note {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    align-items: center;
    padding: 28px;
  }

  .visit-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  }

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

  .visit-note {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.8fr;
  }

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

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.92rem;
  }

  .site-nav .nav-cta {
    margin-left: 6px;
    padding-inline: 14px;
  }

  .hero__content {
    padding-block: 104px 62px;
  }

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

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