@font-face {
  font-family: "Neutra Text";
  src: url("/assets/fonts/neutra-text.otf") format("opentype");
  font-display: swap;
}

:root {
  --teal: #11575a;
  --teal-dark: #083f42;
  --plum: #8c1f5f;
  --gold: #bd8534;
  --blush: #fbefec;
  --cream: #fffaf6;
  --paper: #ffffff;
  --ink: #243536;
  --muted: #5b6a69;
  --line: rgba(17, 87, 90, 0.18);
  --shadow: 0 20px 70px rgba(8, 63, 66, 0.12);
  --content: 1180px;
  --reading: 760px;
  --header-height: 127px;
  --step--1: clamp(0.94rem, 0.9rem + 0.15vw, 1.02rem);
  --step-0: clamp(1.05rem, 0.99rem + 0.22vw, 1.18rem);
  --step-1: clamp(1.32rem, 1.18rem + 0.55vw, 1.65rem);
  --step-2: clamp(1.72rem, 1.42rem + 1.1vw, 2.42rem);
  --step-3: clamp(2.3rem, 1.72rem + 2.1vw, 3.65rem);
  --step-4: clamp(3rem, 2rem + 3.4vw, 5.35rem);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Neutra Text", "Trebuchet MS", sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button,
.button {
  min-height: 48px;
}

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

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

h1,
h2,
h3 {
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-4);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--step-3);
  font-weight: 500;
  letter-spacing: -0.018em;
}

h3 {
  font-size: var(--step-1);
  font-weight: 600;
}

.visually-hidden {
  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;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--teal-dark);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0.35rem max(1.25rem, calc((100vw - var(--content)) / 2));
  background: #054f52;
  color: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: block;
  width: 205px;
  height: 115px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.primary-navigation ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.15rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a,
.cart-link {
  position: relative;
  text-decoration: none;
  font-size: var(--step--1);
  letter-spacing: 0.03em;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-dark);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  padding: 0.6rem;
}

.menu-toggle > span:not(.visually-hidden) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--plum);
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  background: var(--plum);
  color: white;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(140, 31, 95, 0.2);
}

.button--outline {
  background: transparent;
  color: var(--plum);
}

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

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: end;
  background-color: var(--blush);
  background-image: linear-gradient(90deg, rgba(255, 250, 246, 0.98) 0%, rgba(255, 250, 246, 0.84) 48%, rgba(255, 250, 246, 0.1) 78%), url("/assets/images/pattern.webp");
  background-size: auto, 1050px auto;
  background-position: center, center;
}

.hero__content {
  align-self: center;
  min-width: 0;
  max-width: 760px;
  padding: clamp(4rem, 9vw, 8rem) 2rem clamp(4rem, 8vw, 7rem) max(1.25rem, calc((100vw - var(--content)) / 2));
  animation: hero-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 1.35rem;
  color: var(--teal-dark);
}

.hero__content > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: var(--step-1);
  line-height: 1.45;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__portrait {
  align-self: end;
  justify-self: center;
  width: min(100%, 650px);
  max-height: calc(100svh - var(--header-height));
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 35px 40px rgba(17, 87, 90, 0.16));
  animation: portrait-in 850ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 1200px) {
  .hero {
    height: min(700px, calc(100svh - var(--header-height)));
    min-height: 600px;
  }

  .hero__content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 2.3rem + 2.4vw, 4.75rem);
  }

  .hero__portrait {
    max-height: 100%;
  }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
}

@keyframes portrait-in {
  from { opacity: 0; transform: translateY(35px) scale(0.98); }
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) max(1.25rem, calc((100vw - var(--content)) / 2));
}

.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--blush { background: var(--blush); }
.section--teal { background: var(--teal); color: white; }

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: var(--step-1);
  line-height: 1.45;
}

.section--teal .section-heading p:last-child,
.section--teal .eyebrow {
  color: #f2cf96;
}

.program-list {
  border-top: 1px solid var(--line);
}

.program {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.program img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.program h3 {
  margin-bottom: 0.5rem;
}

.program p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  color: var(--plum);
  font-weight: 700;
  white-space: nowrap;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

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

.feature-split__image {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-split__content {
  max-width: 610px;
}

.feature-split__content h2 {
  margin-bottom: 1.4rem;
}

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

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 4rem;
  padding-top: 2rem;
}

.proof-logos img {
  width: auto;
  max-width: 210px;
  max-height: 85px;
  object-fit: contain;
  filter: saturate(0.75);
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.testimonial {
  margin: 0;
  padding-top: 1.4rem;
  border-top: 2px solid var(--gold);
}

.testimonial blockquote {
  margin: 0 0 1.5rem;
  font-size: var(--step-1);
  line-height: 1.45;
}

.testimonial figcaption {
  color: var(--muted);
  font-size: var(--step--1);
}

.testimonial strong {
  display: block;
  color: var(--teal-dark);
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  background: var(--teal);
  color: white;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0 0 0 58%;
  background: url("/assets/images/pattern.webp") center / 760px auto;
  opacity: 0.08;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0.6rem;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  min-height: 48vh;
  display: grid;
  align-items: end;
  padding: clamp(5rem, 11vw, 9rem) max(1.25rem, calc((100vw - var(--content)) / 2)) clamp(3.5rem, 7vw, 6rem);
  background-color: var(--blush);
  background-image: linear-gradient(90deg, rgba(251, 239, 236, 0.94), rgba(255, 250, 246, 0.74)), url("/assets/images/pattern.webp");
  background-position: center;
  background-size: auto, 1100px auto;
}

.page-hero--image {
  position: relative;
  min-height: min(70vh, 720px);
  background-image: linear-gradient(90deg, rgba(8, 63, 66, 0.9) 0%, rgba(8, 63, 66, 0.65) 47%, rgba(8, 63, 66, 0.12) 85%), var(--hero-image);
  background-position: center;
  background-size: cover;
  color: white;
}

.page-hero--school { --hero-image: url("/assets/images/school-hero.jpg"); }
.page-hero--community { --hero-image: url("/assets/images/community-hero.jpg"); }
.page-hero--aged-care { --hero-image: url("/assets/images/aged-care-hero.jpg"); }

.page-hero__inner {
  max-width: 820px;
  animation: hero-in 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero__inner h1 {
  margin-bottom: 1.1rem;
}

.page-hero__inner > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: var(--step-1);
  line-height: 1.45;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.prose {
  max-width: var(--reading);
}

.prose h2 {
  margin-top: 2.8rem;
}

.prose h2:first-child { margin-top: 0; }

.prose li + li { margin-top: 0.55rem; }

.side-note {
  align-self: start;
  padding: 1.7rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--line);
}

.side-note h2 {
  font-size: var(--step-2);
}

.program-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: steps;
}

.program-step {
  position: relative;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}

.program-step::before {
  content: "0" counter(steps);
  position: absolute;
  top: 0.7rem;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-list {
  border-top: 1px solid var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr) minmax(180px, 0.35fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.2rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.product-row__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-row:hover .product-row__image {
  transform: rotate(-1.5deg) scale(1.025);
}

.product-row h2 {
  margin-bottom: 0.8rem;
  font-size: var(--step-2);
}

.product-row__meta,
.product-detail__meta {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-row__buy {
  justify-self: end;
  text-align: right;
}

.price {
  display: block;
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-size: var(--step-2);
  font-weight: 600;
}

.shipping-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: var(--step--1);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
}

.product-detail__image {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(8, 63, 66, 0.15));
}

.product-detail h1 {
  font-size: var(--step-3);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.cart-items {
  border-top: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 1.3rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.cart-item h2 {
  margin-bottom: 0.35rem;
  font-size: var(--step-1);
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.quantity-button {
  width: 38px;
  height: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal-dark);
  cursor: pointer;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--plum);
  cursor: pointer;
  text-decoration: underline;
}

.order-summary {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: 2rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.summary-line--total {
  font-size: var(--step-1);
  font-weight: 700;
}

.order-summary .button {
  width: 100%;
  margin-top: 1.25rem;
}

.empty-state {
  padding: 3rem 0;
  text-align: center;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--wide { grid-column: 1 / -1; }

.field label {
  color: var(--teal-dark);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 87, 90, 0.35);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: 0;
}

.form-status[data-state="error"] { color: #9c1d24; }
.form-status[data-state="success"] { color: #176f47; }

.legal-draft {
  padding: 1rem 1.25rem;
  border: 2px solid #9c1d24;
  background: #fff4f4;
  color: #73151a;
}

.site-footer {
  padding: clamp(3.5rem, 7vw, 6rem) max(1.25rem, calc((100vw - var(--content)) / 2)) 2rem;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-inner a {
  margin-bottom: 0.45rem;
}

.footer-brand,
.footer-heading {
  margin-bottom: 0.9rem;
  color: white;
  font-size: var(--step-1);
}

.footer-inner > div:first-child p:last-child {
  max-width: 440px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.footer-legal a + a { margin-left: 1rem; }

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 340px;
  padding: 0.9rem 1.1rem;
  border-radius: 4px;
  background: var(--teal-dark);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  :root { --header-height: 78px; }

  .site-header {
    grid-template-columns: 125px 1fr auto auto;
    gap: 0.6rem;
    padding: 0.35rem 1rem;
  }

  .brand { width: 122px; height: 68px; }
  .menu-toggle { display: block; justify-self: end; }
  .menu-toggle { grid-column: 3; grid-row: 1; }

  .primary-navigation {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    padding: 2rem 1.25rem;
    background: var(--teal-dark);
  }

  .primary-navigation.is-open { display: block; }

  .primary-navigation ul {
    display: block;
  }

  .primary-navigation li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .primary-navigation a {
    display: block;
    padding: 1rem 0;
    font-size: var(--step-1);
  }

  .cart-link {
    grid-column: 4;
    grid-row: 1;
    padding-left: 0.7rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr minmax(240px, 0.62fr);
  }

  .hero__content { padding-left: 1.25rem; }

  .program {
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  }

  .program .text-link {
    grid-column: 2;
  }

  .testimonial-list,
  .program-steps {
    grid-template-columns: 1fr;
  }

  .testimonial-list { gap: 2.5rem; }

  .product-row {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .product-row__buy {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .cart-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .order-summary { position: static; }
}

@media (max-width: 680px) {
  .site-header { grid-template-columns: 105px 1fr auto auto; }
  .brand { width: 100px; height: 58px; }
  .cart-link { font-size: 0; }
  .cart-count { font-size: 0.9rem; }

  .hero {
    display: flex;
    min-height: calc(100svh - var(--header-height));
    flex-direction: column;
    justify-content: space-between;
    background-image: linear-gradient(rgba(255, 250, 246, 0.93), rgba(255, 250, 246, 0.64)), url("/assets/images/pattern.webp");
    background-size: auto, 760px auto;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.25rem 0;
    width: 100%;
    min-width: 0;
  }

  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero h1 { overflow-wrap: break-word; }

  .hero__content > p:not(.eyebrow) { font-size: 1.08rem; }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__portrait {
    align-self: center;
    width: min(90%, 430px);
    max-height: 47svh;
    margin-top: -1rem;
  }

  .program,
  .feature-split,
  .product-row,
  .product-detail,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .program .text-link,
  .product-row__buy {
    grid-column: 1;
  }

  .program img { max-height: 260px; }
  .feature-split--reverse > :first-child { order: 0; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .button { justify-self: start; }
  .page-hero--image { min-height: 62vh; background-position: 58% center; }

  .product-row__image {
    max-width: 300px;
    justify-self: center;
  }

  .cart-item {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .cart-item img { width: 70px; height: 70px; }
  .cart-controls { grid-column: 1 / -1; justify-content: flex-start; }
  .contact-form { grid-template-columns: 1fr; }
  .field--wide { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-direction: column; gap: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
