/* Ethical AI Solutions — design system */
@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&f[]=satoshi@400,500,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/lenis@1.1.18/dist/lenis.css");

:root {
  --green-700: #1d5c44;
  --green-600: #267353;
  --green-800: #1a4a36;
  --green-900: #142e24;
  --charcoal: #1a1e22;
  --bg: #f6f7f6;
  --surface: #ffffff;
  --ink: #121816;
  --muted: #3a4a43;
  --line: #d5dcd8;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-card: 0 4px 24px rgba(26, 64, 49, 0.08);
  --shadow-header: 0 1px 0 var(--line), 0 8px 32px rgba(26, 36, 32, 0.06);
  --font-display: "General Sans", system-ui, sans-serif;
  --font-body: "Satoshi", "Inter", system-ui, sans-serif;
  --container: min(1160px, calc(100% - 48px));
  --header-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--green-900);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  overflow: visible;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-600);
}

:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: none;
}

.site-header__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Over hero: frosted bar so nav + logo read on bright or busy photo areas */
.site-header--transparent {
  background: rgba(6, 22, 17, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-transparency: reduce) {
  .site-header--transparent {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6, 22, 17, 0.92);
  }
}

.site-header--transparent .nav__link {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.site-header--transparent .nav__link:hover,
.site-header--transparent .nav__link.is-active {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.site-header--transparent .nav__link.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.site-header--solid {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

/* Reference: forest green links; current page in black */
.site-header--solid .nav__link {
  color: var(--green-700);
}

.site-header--solid .nav__link:hover {
  color: var(--green-800);
}

.site-header--solid .nav__link.is-active {
  color: var(--ink);
  font-weight: 600;
}

.site-header--solid .nav {
  gap: clamp(0.65rem, 2vw, 1.35rem);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
  transition: filter 0.35s ease, mix-blend-mode 0.35s ease;
}

/* Dark logo asset on dark frosted bar: lighten drops pure black so it blends (no white “plate”) */
.site-header--transparent .logo img {
  mix-blend-mode: lighten;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.site-header--solid .logo img {
  filter: none;
  mix-blend-mode: normal;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header--transparent .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.site-header--transparent .nav-toggle span {
  background: #fff;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    color: var(--ink) !important;
  }

  .nav__link:hover,
  .nav__link.is-active {
    color: var(--green-700) !important;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(26, 36, 32, 0.45);
    z-index: 999;
    top: var(--header-h);
  }
}

/* —— Typography —— */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 0.75rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

.display--hero {
  font-size: clamp(2.15rem, 5.2vw, 3.75rem);
  color: #fff;
}

.hero .display--hero {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.display--page {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}

.lead--center {
  margin-inline: auto;
  text-align: center;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--green-700);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-600);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--green-900);
  /* Stronger scrim on the left under type; lighter toward the right so the photo stays visible */
  background-image: linear-gradient(
      100deg,
      rgba(6, 22, 17, 0.82) 0%,
      rgba(7, 26, 20, 0.55) 38%,
      rgba(5, 16, 12, 0.22) 58%,
      rgba(4, 12, 10, 0.38) 100%
    ),
    url("../images/scraped/5536b2a09f018199.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

/* Hero CTAs: light surfaces so they read clearly on a variable photo */
.hero .btn--primary {
  background: #fff;
  color: var(--green-800);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.hero .btn--primary:hover {
  background: #f0faf5;
  color: var(--green-900);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
}

.hero__pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.25rem;
}

@media (max-width: 900px) {
  .hero__pills {
    grid-template-columns: 1fr;
  }
}

/* Hero feature chips: light panels (only used under .hero) */
.hero .pill {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 50, 38, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hero .pill__icon {
  background: rgba(38, 115, 83, 0.14);
  color: var(--green-700);
}

.hero .pill__title {
  color: var(--ink);
}

.hero .pill__desc {
  color: var(--muted);
}

.pill {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(18, 22, 20, 0.78);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pill__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(46, 138, 100, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c4f0dc;
}

.pill__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin: 0 0 0.2rem;
}

.pill__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.45;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.section-head .lead {
  margin-top: 0.75rem;
}

/* —— Cards —— */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: rgba(38, 115, 83, 0.25);
  box-shadow: 0 12px 40px rgba(26, 64, 49, 0.1);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(38, 115, 83, 0.1);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Partner / product marks: default dark plate for light / high-chroma marks (Atelic, Airia, Younea). */
.card__brand {
  display: block;
  max-height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem;
  background: var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  box-sizing: content-box;
}

/* Dark-on-transparent or navy marks (GX1, 6clicks, certs, Kloudr): light inset plate */
.card__brand--on-light {
  background: #eef1ee;
  border: 1px solid #d8e0db;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.card__link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* —— Marquee —— */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding: 1.25rem 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-inline-end: 2.5rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  opacity: 1;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
  }

  .marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline-end: 0;
    gap: 1rem 2rem;
  }
}

/* —— Split / about —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split__text p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  color: var(--green-700);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-card__label {
  font-size: 0.88rem;
  color: #3a4540;
  line-height: 1.4;
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 48%, #0f241c 100%);
  position: relative;
  overflow: hidden;
}

/* Green .eyebrow fails on dark hero — use high-contrast light label */
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(46, 138, 100, 0.25), transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48ch;
  margin-top: 0.75rem;
}

/* —— CTA band —— */
.cta-band {
  background: var(--green-900);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin: 0 0 1.25rem;
}

/* —— Service alternating —— */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 2rem;
  background: var(--surface);
}

.alt-row:nth-child(even) .alt-row__visual {
  order: 2;
}

.alt-row:nth-child(even) .alt-row__content {
  order: 1;
}

@media (max-width: 900px) {
  .alt-row,
  .alt-row:nth-child(even) .alt-row__visual,
  .alt-row:nth-child(even) .alt-row__content {
    grid-template-columns: 1fr;
    order: unset !important;
  }
}

.alt-row__visual {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--green-900);
}

/* Split-column photo: copy sits on the white panel, not on the image — keep the photo visible */
.alt-row__visual--photo {
  background-image: url("../images/scraped/5536b2a09f018199.png");
}

.alt-row__content {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alt-row__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.alt-row__content p {
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.alt-row__content .list-check {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.alt-row__content .list-check li {
  margin-bottom: 0.4rem;
}

.card .list-check {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card .list-check li {
  margin-bottom: 0.35rem;
}

/* —— News grid —— */
.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .news-featured {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.news-card:hover {
  box-shadow: var(--shadow-card);
}

.news-card--large {
  grid-column: span 1;
}

.news-card__img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
}

.news-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.news-card--large h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.news-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.contact-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-value {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-value a {
  color: var(--green-700);
  font-weight: 600;
}

.contact-value--last {
  margin-bottom: 0;
}

/* Badge / SVG on light band */
img.credential-plate {
  margin-inline: auto;
  padding: 1rem 1.25rem;
  background: #eef1ee;
  border: 1px solid #d8e0db;
  border-radius: var(--radius-md);
  box-sizing: content-box;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(29, 92, 68, 0.12);
  border: 1px solid var(--green-700);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 600;
  margin-top: 1rem;
}

.form-success.is-visible {
  display: block;
}

/* —— Footer —— */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.84);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

/* Light plate: full-color logos stay readable on charcoal */
.site-footer .logo img {
  display: block;
  height: auto;
  max-height: 42px;
  width: auto;
  max-width: min(240px, 100%);
  object-fit: contain;
  filter: none;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.55rem;
  box-sizing: content-box;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(4, minmax(0, 1fr));
  gap: 2rem 1.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 32rem;
  }
}

@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: auto;
  }
}

.footer__brand p {
  margin: 1rem 0 0;
  line-height: 1.6;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin: 0 0 1rem;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li {
  margin-bottom: 0.55rem;
}

.footer__bottom {
  padding-top: 1.75rem;
}

.footer__legal {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  line-height: 1.5;
}

/* —— Main offset —— */
main {
  min-height: 50vh;
}

/* —— Reveal targets: stay visible by default; GSAP animates transform only —— */
[data-reveal] {
  opacity: 1;
  transform: none;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    will-change: auto;
  }

  .marquee {
    animation: none !important;
  }
}

/* —— Utilities —— */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-section {
  margin-bottom: 2.5rem;
}

.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--green-700);
  color: #fff;
  margin-bottom: 0.75rem;
}
