/* =============================================================
   Consuming Carbon Corp — Design Tokens
   Per brand guide: Carbon Black #1D1D1B · Golden Yellow #FFD700
   Secondary: Ocean Blue #0077B6 · Aquamarine #32E89D
   Type: Manrope (display) · Helvetica (body) · Lora (editorial italic)
   ============================================================= */

:root {
  /* Brand — exact hex from guide */
  --carbon: #1D1D1B;
  --yellow: #FFD700;
  --yellow-warm: #FFC700;
  --ocean: #0077B6;
  --aqua: #32E89D;

  /* Surface scale (warm darks, not pure black) */
  --bg: #161513;
  --surface-1: #1D1D1B;
  --surface-2: #26241F;
  --surface-3: #32302A;
  --border: rgba(255, 215, 0, 0.12);
  --border-soft: rgba(250, 250, 247, 0.08);

  /* Text */
  --ink: #FAFAF7;
  --ink-2: #C8C5BB;
  --ink-3: #8B8780;
  --ink-4: #5A574F;

  /* Type stacks (per brand guide) */
  --display: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Spacing */
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(80px, 12vw, 160px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--carbon); }

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

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  line-height: 1;
}

p { margin: 0; text-wrap: pretty; }

/* Emphasis — never italic; use color + weight per user direction */
em {
  font-style: normal;
  font-weight: 600;
  color: var(--yellow);
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----- Eyebrow / utility ----- */
.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-block;
}
.eyebrow--muted { color: var(--ink-3); }

/* ============================================================= */
/* NAV                                                            */
/* ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: 1600px;
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s var(--ease);
}
.nav-logo:hover img { filter: none; }
.nav-logo .wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active {
  color: var(--yellow);
}
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1.5px;
  background: var(--yellow);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  background: var(--yellow);
  color: var(--carbon);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  border: none;
}
.nav-cta:hover { background: #fff; transform: translateY(-1px); }
.nav-cta .pip {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ocean);
}

/* Pamoja nav CTA — icon + brand name */
.nav-cta--pamoja {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-soft);
  padding: 6px 16px 6px 6px;
}
.nav-cta--pamoja:hover {
  background: var(--surface-2);
  border-color: color-mix(in srgb, var(--yellow) 50%, transparent);
}
.nav-cta--pamoja img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}

/* Pamoja button — icon + label inside any .btn */
.btn--pamoja {
  padding-left: 8px;
  gap: 14px;
}
.btn--pamoja img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}

/* Pamoja lockup — used inside the ribbon */
.pamoja-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px;
  border-radius: 12px;
  transition: background 0.2s var(--ease);
}
.pamoja-lockup:hover { background: color-mix(in srgb, var(--ink) 8%, transparent); }
.pamoja-lockup img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: block;
}
.pamoja-wordmark {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.pamoja-wordmark strong {
  font-weight: 800;
  color: var(--yellow);
  margin-left: 2px;
}

/* Mobile nav CTA — icon + label */
.nav-mobile-cta img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

/* Mobile burger */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  content: '';
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.nav-burger span::before { position: absolute; top: -5px; left: 0; }
.nav-burger span::after  { position: absolute; top: 5px;  left: 0; }
.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { transform: translateY(5px) rotate(45deg); }
.nav-burger.is-open span::after  { transform: translateY(-5px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  height: calc(100dvh - 65px);
  background: var(--bg);
  z-index: 49;
  padding: 32px var(--gutter);
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--border-soft);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 16px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile a small {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-mobile .nav-mobile-cta {
  margin-top: 24px;
  background: var(--yellow);
  color: var(--carbon);
  padding: 20px;
  border-radius: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  border-bottom: none;
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================================= */
/* HERO                                                           */
/* ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
}

/* Hero photo — real image fills the section, sits under the gradient overlay */
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -3;
  display: block;
}
/* Hero photo overlay — stronger gradient for legibility over photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg,
      rgba(22, 21, 19, 0.55) 0%,
      rgba(22, 21, 19, 0.3) 50%,
      rgba(22, 21, 19, 0.85) 100%),
    linear-gradient(90deg,
      rgba(22, 21, 19, 0.65) 0%,
      rgba(22, 21, 19, 0.25) 60%,
      transparent 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: clamp(60px, 8vw, 120px) clamp(60px, 8vw, 120px);
  opacity: 0.35;
  z-index: -2;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 8px 14px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  margin-bottom: 36px;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(44px, 8.5vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 22ch;
  text-wrap: balance;
}
.hero h1 .yellow { color: var(--yellow); }
.hero h1 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--yellow);
}

.hero-sub {
  margin-top: 36px;
  max-width: 52ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 88%, transparent);
  font-weight: 400;
}
.hero-sub em {
  font-family: var(--display);
  font-style: normal;
  color: var(--yellow);
  font-weight: 600;
}

.hero-ctas {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================= */
/* BUTTONS                                                        */
/* ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--carbon);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform 0.2s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translate(3px, -3px); }
.btn--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--carbon);
}
.btn--yellow:hover { background: #fff; border-color: #fff; }
.btn--hero {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 18px 32px;
}
.btn--hero:hover { background: var(--yellow); color: var(--carbon); border-color: var(--yellow); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-soft);
}
.btn--ghost:hover { background: var(--ink); color: var(--carbon); border-color: var(--ink); }

/* ============================================================= */
/* PAMOJA RIBBON                                                  */
/* ============================================================= */
.pamoja-ribbon {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pamoja-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px var(--gutter);
  max-width: 1600px;
  margin: 0 auto;
}
.pamoja-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--carbon);
  background: var(--aqua);
  padding: 6px 12px;
  border-radius: 4px;
}
.pamoja-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--carbon);
  border-radius: 50%;
}
.pamoja-msg {
  font-family: var(--display);
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--ink);
}
.pamoja-msg em {
  font-family: var(--display);
  font-style: normal;
  color: var(--yellow);
  font-weight: 600;
}
.pamoja-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--yellow);
  transition: gap 0.2s var(--ease);
}
.pamoja-link:hover { gap: 16px; }

/* ============================================================= */
/* SECTION SHELL                                                  */
/* ============================================================= */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head h2 {
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.section-head h2 em {
  font-family: var(--display);
  font-style: normal;
  color: var(--yellow);
  font-weight: 700;
}
.section-head .lede {
  max-width: 56ch;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============================================================= */
/* MISSION / VISION — editorial split                             */
/* ============================================================= */
.mission {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-2);
}
.mv-card {
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.mv-card + .mv-card {
  border-left: 1px solid var(--border);
}
.mv-card .num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 14px;
}
.mv-card .num span {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 500;
}
.mv-card h3 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.mv-card .body {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 38ch;
}
.mv-card .quote {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
  color: var(--yellow);
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  text-wrap: balance;
}

/* ============================================================= */
/* APPROACH — Statement + 4 pillars + buyer callout              */
/* ============================================================= */
.approach {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.approach-mark {
  position: absolute;
  left: -15%;
  bottom: -10%;
  width: 50vw;
  max-width: 600px;
  opacity: 0.04;
  pointer-events: none;
  transform: rotate(-12deg);
}
.approach-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.approach-head h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

/* 4-up pillar grid */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillar {
  padding: clamp(36px, 3.5vw, 56px) clamp(20px, 2.4vw, 36px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--surface-2); }
.pillar .p-num {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yellow);
}
.pillar h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}
.pillar p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 30ch;
}

/* Buyer callout — Pamoja statement */
.approach-buyer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(60px, 7vw, 100px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--border-soft);
}
.ab-left {
  max-width: 36ch;
}
.ab-left .eyebrow { margin-bottom: 24px; }
.ab-left h3 {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.18;
  color: var(--ink);
  text-wrap: pretty;
}
.ab-left h3 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  color: var(--yellow);
}

/* ============================================================= */
/* FOOTER                                                         */
/* ============================================================= */
.footer {
  background: var(--surface-1);
  color: var(--ink);
  padding: clamp(64px, 8vw, 100px) 0 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}
.footer-brand p {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  max-width: 32ch;
  color: var(--ink-2);
}
.footer h4 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer ul a {
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}
.footer ul a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Giant wordmark at the bottom — distinctive editorial moment */
.footer-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(60px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  text-stroke: 1px var(--border);
  margin: 40px 0 -20px;
  padding: 0 var(--gutter);
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}

/* ============================================================= */
/* RESPONSIVE                                                     */
/* ============================================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-logo .wordmark { display: none; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(42px, 11vw, 76px); max-width: none; }
  .pamoja-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px var(--gutter);
  }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card + .mv-card { border-left: none; border-top: 1px solid var(--border); }
  .mv-card { min-height: auto; padding: 36px 28px; gap: 32px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 24px;
  }
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:nth-child(odd) { border-right: 1px solid var(--border); }
  .pillar:last-child,
  .pillar:nth-last-child(2) { border-bottom: none; }
  .approach-buyer { grid-template-columns: 1fr; gap: 24px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .btn { padding: 16px 22px; font-size: 12px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: space-between; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
}

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