/* ==========================================================================
   Ndè Nàowò Environmental Ltd — naowo.ca
   Fonts : self-hosted Charis SIL (body) + Noto Sans (headings/UI)
   Palette: #0d2c1c structure · #0b4c6f interaction · #ffffff ground
   Rule   : green / blue never adjacent; logo strips on white only
   ========================================================================== */

/* --- Font Faces --------------------------------------------------------- */
/* Subsetted for Tłı̨chǫ diacritics:
   U+0131 ı  U+0328 ̨  U+01EB ǫ  U+01EA Ǫ
   U+0300 ̀  U+0141 Ł  U+012E Į  U+0142 ł                                  */

@font-face {
  font-family: 'Charis SIL';
  src: url('fonts/CharisSIL-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Charis SIL';
  src: url('fonts/CharisSIL-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Charis SIL';
  src: url('fonts/CharisSIL-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties -------------------------------------------------- */
:root {
  --clr-structure: #0d2c1c;
  --clr-structure-light: #163d2a;
  --clr-interaction: #0b4c6f;
  --clr-interaction-hover: #0d5f8a;
  --clr-ground: #ffffff;
  --clr-text: #1c1c1c;
  --clr-text-secondary: #4a4a4a;
  --clr-border: #d9ddd8;
  --clr-bg-soft: #f5f7f4;

  --ff-body: 'Charis SIL', Georgia, 'Times New Roman', serif;
  --ff-heading: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1200px;
  --gutter: 1.5rem;
  --section-gap: 5rem;
  --radius: 4px;
  --speed: 0.35s;
}

/* --- Reset -------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-ground);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--clr-interaction);
  text-decoration: none;
  transition: color var(--speed);
}
a:hover,
a:focus-visible {
  color: var(--clr-interaction-hover);
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  color: var(--clr-structure);
  line-height: 1.25;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-gap) 0;
}
.section--alt {
  background: var(--clr-bg-soft);
}
.section__heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.section__intro {
  max-width: 720px;
  margin-bottom: 2.5rem;
  color: var(--clr-text-secondary);
  font-size: 1.1rem;
}

/* --- Header & Nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-structure);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-ground);
  border-radius: 1px;
  transition: transform var(--speed), opacity var(--speed);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-list {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--clr-structure);
  padding: 1rem 0 2rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.nav-list.is-open {
  display: flex;
}
.nav-list a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--clr-ground);
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 1rem;
  transition: opacity var(--speed);
}
.nav-list a:hover,
.nav-list a:focus-visible {
  opacity: 0.8;
  text-decoration: none;
}
.nav-list a[aria-current="page"] {
  border-bottom: 2px solid var(--clr-ground);
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0;
  background-color: var(--clr-structure);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 44, 28, 0.92) 0%,
    rgba(13, 44, 28, 0.5) 50%,
    rgba(13, 44, 28, 0.2) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--clr-ground);
}
.hero__flag {
  height: 36px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-ground);
  margin-bottom: 1rem;
}
.hero__caption {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}
.hero__statement {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero .photo-credit {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Page Hero (inner pages) ------------------------------------------- */
.page-hero {
  background: var(--clr-structure);
  padding: 3.5rem 0 2.5rem;
  color: var(--clr-ground);
}
.page-hero__title {
  font-size: 2.5rem;
  color: var(--clr-ground);
  margin-bottom: 0.5rem;
}
.page-hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background var(--speed), transform var(--speed);
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--clr-interaction);
  color: var(--clr-ground);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--clr-interaction-hover);
  color: var(--clr-ground);
}
.btn--outline {
  border: 2px solid var(--clr-ground);
  color: var(--clr-ground);
  background: transparent;
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-ground);
}

/* --- Marquee ------------------------------------------------------------ */
.marquee-section {
  background: var(--clr-bg-soft);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee__item {
  flex-shrink: 0;
  padding: 0 2rem;
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--clr-structure);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.marquee__item::after {
  content: '·';
  margin-left: 2rem;
  opacity: 0.4;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Services Grid (Home) ---------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-tile {
  background: var(--clr-ground);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: box-shadow var(--speed), transform var(--speed);
}
.service-tile:hover {
  box-shadow: 0 6px 24px rgba(13, 44, 28, 0.08);
  transform: translateY(-2px);
}
.service-tile__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.service-tile__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.service-tile__text {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}
.service-tile__link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Ownership Strip --------------------------------------------------- */
.ownership {
  background: var(--clr-ground);
  padding: 3rem 0;
  text-align: center;
}
.ownership__label {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-secondary);
  margin-bottom: 1.5rem;
}
.ownership__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.ownership__logos img {
  height: 56px;
  width: auto;
}

/* --- Certifications ---------------------------------------------------- */
.certifications {
  background: var(--clr-ground);
  padding: 3rem 0;
  border-top: 1px solid var(--clr-border);
  text-align: center;
}
.certifications__label {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-secondary);
  margin-bottom: 1.5rem;
}
.certifications__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.certifications__logos img {
  height: 52px;
  width: auto;
}

/* --- CTA --------------------------------------------------------------- */
.cta {
  background: var(--clr-structure);
  padding: 4rem 0;
  text-align: center;
  color: var(--clr-ground);
}
.cta__heading {
  font-size: 2rem;
  color: var(--clr-ground);
  margin-bottom: 1rem;
}
.cta__text {
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.85;
  font-size: 1.1rem;
}

/* --- About Sections ---------------------------------------------------- */
.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-block + .about-block {
  margin-top: 4rem;
}
.about-block__image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-block__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.about-block__body h2 {
  margin-bottom: 1rem;
}
.about-block__body p {
  margin-bottom: 1rem;
  color: var(--clr-text-secondary);
}
.about-block__body p:last-child {
  margin-bottom: 0;
}

/* --- Government Partners Data List ------------------------------------- */
/* Delete this entire rule set AND the #gov-partners HTML to remove */
.gov-partners {
  background: var(--clr-ground);
  padding: 2rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-top: 2rem;
}
.gov-partners__heading {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-secondary);
  margin-bottom: 1.25rem;
}
.gov-partners__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.gov-partners__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gov-partners__item img {
  height: 48px;
  width: auto;
}
.gov-partners__item span {
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  color: var(--clr-text);
}

/* --- Services Sub-Nav (Sticky) ----------------------------------------- */
.services-subnav {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: var(--clr-ground);
  border-bottom: 1px solid var(--clr-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.subnav-list {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.subnav-list a {
  display: block;
  padding: 1rem 1.25rem;
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--speed), border-color var(--speed);
}
.subnav-list a:hover,
.subnav-list a:focus-visible {
  color: var(--clr-structure);
  text-decoration: none;
}
.subnav-list a.is-active {
  color: var(--clr-structure);
  border-bottom-color: var(--clr-structure);
}

/* --- Service Detail Sections ------------------------------------------- */
.service-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.service-section:last-child {
  border-bottom: none;
}
.service-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.service-section__image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.service-section__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.service-section__body h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-section__body > p {
  color: var(--clr-text-secondary);
  margin-bottom: 1.5rem;
}
.service-section__body ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.service-section__body li {
  margin-bottom: 0.5rem;
  color: var(--clr-text);
}

/* --- Team -------------------------------------------------------------- */
/* Repeatable card — copy .team-card block to add directors */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.team-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--clr-border);
}
.team-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.team-card__portrait {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.team-card__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.team-card__info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.team-card__title {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--clr-text-secondary);
  margin-bottom: 1.25rem;
}
.team-card__bio {
  margin-bottom: 1.5rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
}
.team-card__contact {
  margin-bottom: 1rem;
}
.team-card__contact p {
  margin-bottom: 0.35rem;
  font-family: var(--ff-heading);
  font-size: 0.95rem;
}
.team-card__registry {
  margin-top: 0.75rem;
}
.team-card__registry a {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Contact Form ------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-form {
  background: var(--clr-bg-soft);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--clr-structure);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  background: var(--clr-ground);
  color: var(--clr-text);
  transition: border-color var(--speed);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-interaction);
  box-shadow: 0 0 0 3px rgba(11, 76, 111, 0.15);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-status {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  margin-top: 1rem;
}
.form-status--success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}
.form-status--error {
  display: block;
  background: #fbe9e7;
  color: #c62828;
}

/* --- Contact Director Cards -------------------------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--clr-text);
  transition: box-shadow var(--speed), transform var(--speed);
}
.contact-card:hover {
  box-shadow: 0 4px 16px rgba(13, 44, 28, 0.08);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--clr-text);
}
.contact-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.contact-card__name {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--clr-structure);
}
.contact-card__role {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
}

/* --- Credits ----------------------------------------------------------- */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.credits-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.credits-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.credits-item figcaption {
  padding: 0.75rem;
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  color: var(--clr-text-secondary);
}

/* --- Photo Credit Overlay ---------------------------------------------- */
.photo-frame {
  position: relative;
}
.photo-credit {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 3px 8px;
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
}

/* --- Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--clr-structure);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.95rem;
  max-width: 300px;
}
.site-footer h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-ground);
  margin-bottom: 1rem;
}
.site-footer ul li {
  margin-bottom: 0.5rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color var(--speed);
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--clr-ground);
  text-decoration: none;
}
.footer-contact p {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

/* --- Reveal Animation -------------------------------------------------- */
/* Without JS: content fully visible */
.reveal {
  opacity: 1;
  transform: none;
}
/* With JS: animate on intersection */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Address ----------------------------------------------------------- */
.address-block {
  margin-bottom: 2rem;
}
.address-block h3 {
  color: var(--clr-structure);
  margin-bottom: 0.75rem;
}
.address-block address {
  font-style: normal;
  line-height: 1.8;
  color: var(--clr-text-secondary);
}

/* --- Responsive -------------------------------------------------------- */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --gutter: 2rem;
  }
  .hero__title {
    font-size: 3rem;
  }
  .section__heading {
    font-size: 2.5rem;
  }
  .about-block {
    grid-template-columns: 1fr 1fr;
  }
  .about-block--reverse .about-block__image {
    order: 2;
  }
  .service-section__inner {
    grid-template-columns: 2fr 3fr;
  }
  .team-card {
    grid-template-columns: 1fr 2fr;
  }
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .nav-list {
    display: flex;
    position: static;
    background: none;
    padding: 0;
    flex-direction: row;
    gap: 0;
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-card__portrait img {
    max-height: 500px;
  }
  .hero__title {
    font-size: 3.25rem;
  }
  .page-hero__title {
    font-size: 3rem;
  }
}

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