:root {
  --green: #2F6B4F;
  --green-dark: #1F4D39;
  --green-deep: #125238;
  --green-soft: #8EB69B;
  --surface: #F8FAF8;
  --surface-2: #F2F4F2;
  --surface-3: #EEF5F0;
  --surface-glass: rgba(255, 255, 255, .78);
  --text: #1F2722;
  --muted: #66756C;
  --line: rgba(112, 121, 114, .14);
  --shadow: 0 12px 32px rgba(31, 39, 34, .06);
  --shadow-hover: 0 20px 52px rgba(31, 39, 34, .10);
  --radius: 24px;
  --container: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(142, 182, 155, .18), transparent 32%),
    radial-gradient(circle at 88% 6%, rgba(238, 245, 240, .9), transparent 30%),
    linear-gradient(180deg, #FBFCFB 0%, #F8FAF8 42%, #F3F7F4 100%);
  color: var(--text);
  font-family: Manrope, Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 14%, rgba(142, 182, 155, .16), transparent 31%),
    radial-gradient(circle at 84% 8%, rgba(238, 245, 240, .9), transparent 29%),
    linear-gradient(180deg, #FBFCFB 0%, #F8FAF8 42%, #F3F7F4 100%);
}

.ambient-bg span {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.ambient-bg__image {
  inset: -8vh -8vw;
  background-image: url("assets/animated-background.webp");
  background-size: cover;
  background-position: center;
  opacity: .42;
  transform: translate3d(0, 0, 0) scale(1.05);
}

.ambient-bg__wash {
  inset: 0;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, .36) 42%, rgba(238, 245, 240, .62) 100%),
    radial-gradient(circle at 48% 18%, rgba(255, 255, 255, .66), transparent 34%),
    radial-gradient(circle at 72% 68%, rgba(255, 255, 255, .32), transparent 34%);
  opacity: .95;
}

.ambient-bg__pattern {
  inset: -8vh -8vw;
  background-image: url("assets/site-pattern.svg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: min(1520px, 116vw) auto;
  opacity: .24;
  transform: translate3d(0, 0, 0) scale(1.01);
}

.ambient-bg__dots {
  inset: -14vh -10vw;
  background-image: radial-gradient(circle, rgba(47, 107, 79, .15) 1px, transparent 1.8px);
  background-size: 34px 34px;
  opacity: .22;
}

.ambient-bg__wave {
  left: -28vw;
  right: -28vw;
  height: 44vh;
  min-height: 360px;
  background-image: url("assets/ambient-waves.svg");
  background-repeat: repeat-x;
  background-size: 1200px 100%;
  opacity: .34;
}

.ambient-bg__wave--front {
  bottom: -13vh;
  transform: translate3d(0, 0, 0);
}

.ambient-bg__wave--back {
  top: -10vh;
  opacity: .15;
  transform: rotate(180deg);
}

.ambient-bg__orb {
  border-radius: 999px;
  opacity: .46;
}

.ambient-bg__orb--one {
  width: clamp(320px, 38vw, 640px);
  height: clamp(320px, 38vw, 640px);
  left: -16vw;
  top: 10vh;
  background: radial-gradient(circle at 44% 42%, rgba(142, 182, 155, .24), rgba(238, 245, 240, .16) 50%, transparent 68%);
}

.ambient-bg__orb--two {
  width: clamp(280px, 32vw, 560px);
  height: clamp(280px, 32vw, 560px);
  right: -12vw;
  top: -7vh;
  background: radial-gradient(circle at 52% 46%, rgba(47, 107, 79, .12), rgba(142, 182, 155, .12) 48%, transparent 70%);
}

.ambient-bg__orb--three {
  width: clamp(240px, 26vw, 480px);
  height: clamp(240px, 26vw, 480px);
  right: 10vw;
  bottom: 8vh;
  background: radial-gradient(circle at 45% 42%, rgba(142, 182, 155, .17), rgba(255, 255, 255, .18) 48%, transparent 72%);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--green-dark);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  transition: transform .2s var(--ease);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 248, .76);
  border-bottom: 1px solid rgba(112, 121, 114, 0);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.topbar.is-scrolled {
  background: rgba(248, 250, 248, .92);
  border-color: rgba(112, 121, 114, .10);
  box-shadow: 0 12px 32px rgba(31, 39, 34, .055);
}

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

.logo {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-deep);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.logo__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(31, 77, 57, .13));
}

.logo span { font-size: 18px; }

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

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-deep);
  transform: scaleX(0);
  transition: transform .2s var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active { color: var(--green-deep); }

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after { transform: scaleX(1); }

.topbar__button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(47, 107, 79, .14);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.topbar__button {
  justify-self: end;
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
}

.button {
  min-height: 56px;
  padding: 0 28px;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(47, 107, 79, .16);
}

.topbar__button:hover,
.topbar__button:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 19px 40px rgba(47, 107, 79, .20);
}

.menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(238, 245, 240, .86);
  color: var(--green-deep);
  cursor: pointer;
}

.menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s var(--ease);
}

.menu[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  padding: 54px 0 78px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px max(24px, calc((100vw - var(--container)) / 2)) auto auto;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  border-radius: 44% 56% 46% 54%;
  background: radial-gradient(circle at 50% 50%, rgba(142, 182, 155, .20), rgba(238, 245, 240, .05) 64%, transparent 72%);
  filter: blur(12px);
  opacity: .64;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 6.4vw, 92px);
}

.hero__text {
  max-width: 530px;
  padding-top: clamp(48px, 8vw, 124px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(142, 182, 155, .16);
  vertical-align: 1px;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 430px;
  margin-bottom: 24px;
  font-size: clamp(30px, 3.15vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.065em;
}

.hero p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -.01em;
}

.hero__image {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(255, 255, 255, .76);
  box-shadow: inset 0 0 0 1px rgba(31, 39, 34, .035), 0 28px 72px rgba(31, 39, 34, .10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .62);
  pointer-events: none;
}

.hero__image picture,
.hero__image img {
  width: 100%;
  height: 100%;
}

.hero__image picture { display: block; }

.hero__image img {
  object-fit: cover;
  border-radius: 24px;
}

.directions {
  position: relative;
  padding: 76px 0 72px;
  overflow: hidden;
}

.directions::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(242, 244, 242, .46), rgba(248, 250, 248, .08) 68%, rgba(248, 250, 248, 0)),
    radial-gradient(circle at 8% 20%, rgba(238, 245, 240, .78), transparent 28%),
    radial-gradient(circle at 92% 24%, rgba(142, 182, 155, .14), transparent 26%);
  pointer-events: none;
}

.directions > .container,
.about > .container { position: relative; z-index: 1; }

.section-head {
  max-width: 620px;
  margin-bottom: 40px;
}

.section-head h2,
.about__text h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.055em;
}

.section-head p,
.about__text p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px 30px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(242, 244, 242, .72)),
    rgba(255, 255, 255, .66);
  border: 1px solid rgba(112, 121, 114, .09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .60), 0 10px 30px rgba(31, 39, 34, .035);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -76px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, rgba(142, 182, 155, .32), rgba(238, 245, 240, .72) 58%, transparent 72%);
  opacity: .42;
  transform: scale(.7);
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(47, 107, 79, .13) 1px, transparent 1.5px),
    linear-gradient(135deg, transparent 0, transparent 72%, rgba(238, 245, 240, .52));
  background-size: 28px 28px, 100% 100%;
  background-position: right 20px bottom 18px, 0 0;
  opacity: .16;
  pointer-events: none;
}

.card--active {
  background: rgba(255, 255, 255, .90);
  border-color: rgba(47, 107, 79, .12);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .70);
}

.card:hover,
.card:focus-visible {
  outline: 0;
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .94);
  border-color: rgba(47, 107, 79, .16);
  box-shadow: var(--shadow-hover), inset 0 0 0 1px rgba(255, 255, 255, .76);
}

.card:hover::before,
.card:focus-visible::before {
  opacity: .72;
  transform: scale(1);
}

.status {
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.status--muted {
  background: rgba(230, 233, 231, .86);
  color: var(--muted);
}

.icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: inset 0 0 0 1px rgba(112, 121, 114, .08);
  transition: transform .24s var(--ease), background .24s var(--ease);
}

.card:hover .icon { transform: scale(1.05); background: var(--surface-3); }

.card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.035em;
}

.card p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -.015em;
}

.about {
  position: relative;
  padding: 74px 0 96px;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 20px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 182, 155, .16), transparent 68%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(420px, 1.12fr);
  gap: clamp(40px, 7vw, 94px);
  align-items: start;
}

.about__text { max-width: 540px; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(242, 244, 242, .66);
  border: 1px solid rgba(112, 121, 114, .10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.principles div {
  min-height: 210px;
  padding: 26px 22px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 0 0 0 1px rgba(112, 121, 114, .08);
}

.principles span {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
}

.principles strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.04em;
}

.principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer {
  background: rgba(242, 244, 242, .74);
  border-top: 1px solid rgba(112, 121, 114, .10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer__inner {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__brand img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.footer p {
  margin: 0;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
}

.footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer a {
  color: var(--muted);
  font-size: 13px;
  transition: color .2s var(--ease);
}

.footer a:hover,
.footer a:focus-visible { color: var(--green-deep); }

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.cards .reveal:nth-child(2) { transition-delay: .04s; }
.cards .reveal:nth-child(3) { transition-delay: .08s; }
.cards .reveal:nth-child(4) { transition-delay: .12s; }
.cards .reveal:nth-child(5) { transition-delay: .16s; }
.cards .reveal:nth-child(6) { transition-delay: .20s; }
.cards .reveal:nth-child(7) { transition-delay: .24s; }
.cards .reveal:nth-child(8) { transition-delay: .28s; }
.cards .reveal:nth-child(9) { transition-delay: .32s; }
.cards .reveal:nth-child(10) { transition-delay: .36s; }

@media (prefers-reduced-motion: no-preference) {
  .ambient-bg__image { animation: ambient-image 38s ease-in-out infinite alternate; }
  .ambient-bg__pattern { animation: ambient-pattern 46s linear infinite; }
  .ambient-bg__dots { animation: ambient-dots 54s linear infinite; }
  .ambient-bg__wave--front { animation: ambient-wave-front 42s ease-in-out infinite alternate; }
  .ambient-bg__wave--back { animation: ambient-wave-back 56s ease-in-out infinite alternate; }
  .ambient-bg__orb--one { animation: ambient-orb-one 34s var(--ease) infinite alternate; }
  .ambient-bg__orb--two { animation: ambient-orb-two 40s var(--ease) infinite alternate; }
  .ambient-bg__orb--three { animation: ambient-orb-three 36s var(--ease) infinite alternate; }
  .hero__image { animation: soft-float 8s ease-in-out infinite; }
}

@keyframes ambient-image {
  from { transform: translate3d(-1.6vw, -1vh, 0) scale(1.05); }
  to { transform: translate3d(1.8vw, 1.2vh, 0) scale(1.085); }
}

@keyframes ambient-pattern {
  from { transform: translate3d(0, -24px, 0) scale(1.01); }
  to { transform: translate3d(-34px, 48px, 0) scale(1.02); }
}

@keyframes ambient-dots {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(68px, 42px, 0); }
}

@keyframes ambient-wave-front {
  from { transform: translate3d(-80px, 0, 0); }
  to { transform: translate3d(80px, -10px, 0); }
}

@keyframes ambient-wave-back {
  from { transform: rotate(180deg) translate3d(-70px, 0, 0); }
  to { transform: rotate(180deg) translate3d(70px, 10px, 0); }
}

@keyframes ambient-orb-one {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, 3vh, 0) scale(1.08); }
}

@keyframes ambient-orb-two {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4vw, 5vh, 0) scale(1.06); }
}

@keyframes ambient-orb-three {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2vw, -4vh, 0) scale(1.05); }
}

@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1060px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .hero__text { padding-top: 44px; }
  .hero__image { border-radius: 26px; padding: 8px; }
  .hero__image img,
  .hero__image::after { border-radius: 20px; }
  .hero__image::after { inset: 8px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__grid,
  .principles { grid-template-columns: 1fr; }
  .principles div { min-height: auto; }
  .principles span { margin-bottom: 18px; }
}

@media (max-width: 820px) {
  .ambient-bg__image { inset: -5vh -34vw; opacity: .34; }
  .ambient-bg__pattern { background-size: 1120px auto; opacity: .20; }
  .ambient-bg__dots { opacity: .15; }
  .ambient-bg__wave { min-height: 280px; height: 34vh; opacity: .22; }
  .ambient-bg__wave--back { opacity: .10; }
  .ambient-bg__orb--one { left: -34vw; top: 16vh; }
  .ambient-bg__orb--two { right: -30vw; top: -6vh; }
  .ambient-bg__orb--three { right: -18vw; bottom: 18vh; opacity: .34; }

  .container { width: min(calc(100% - 32px), var(--container)); }
  .topbar__inner { min-height: 68px; display: flex; justify-content: space-between; }
  .logo__mark { width: 36px; height: 36px; flex-basis: 36px; }
  .logo span { font-size: 17px; }
  .menu { display: block; }
  .topbar__button { display: none; }

  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 8px;
    border-radius: 22px;
    background: rgba(248, 250, 248, .94);
    box-shadow: var(--shadow-hover);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 15px;
  }

  .nav a::after { display: none; }
  .nav a:hover,
  .nav a:focus-visible,
  .nav a.is-active { background: var(--surface-3); }

  .hero { min-height: auto; padding: 44px 0 42px; }
  .hero::before { width: 420px; height: 420px; right: -140px; top: 40px; }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__text { max-width: 100%; padding-top: 0; }
  h1 { max-width: 620px; font-size: clamp(32px, 8vw, 48px); }
  .hero__image { justify-self: stretch; max-width: 100%; aspect-ratio: 16 / 9; }
  .directions { padding: 54px 0; }
  .section-head { margin-bottom: 28px; }
  .about { padding: 54px 0 70px; }
  .footer__inner { min-height: auto; padding: 34px 0; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .eyebrow { margin-bottom: 16px; font-size: 12px; }
  h1 { margin-bottom: 18px; font-size: clamp(30px, 11vw, 44px); }
  .hero p { font-size: 15px; line-height: 1.68; }
  .button { width: 100%; min-height: 54px; }
  .hero__image { border-radius: 20px; padding: 6px; }
  .hero__image img,
  .hero__image::after { border-radius: 16px; }
  .hero__image::after { inset: 6px; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { min-height: 218px; padding: 30px 24px 25px; border-radius: 16px; }
  .status { top: 22px; right: 20px; }
  .icon { width: 56px; height: 56px; margin-bottom: 26px; }
  .card h3 { font-size: 18px; }
  .card p { font-size: 14px; }
  .principles { padding: 12px; border-radius: 22px; }
  .principles div { padding: 22px 20px 20px; border-radius: 16px; }
  .footer nav { flex-wrap: wrap; gap: 16px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .ambient-bg span { will-change: auto; }
  .ambient-bg__image,
  .ambient-bg__pattern,
  .ambient-bg__dots,
  .ambient-bg__wave,
  .ambient-bg__orb { transform: none !important; }
}
