/* =========================================================
   Efecticobros — Apple Education–inspired corporate light
   Reference: https://www.apple.com/education/
   ========================================================= */

:root {
  color-scheme: light;
  --font: 'Outfit', 'Helvetica Neue', sans-serif;

  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-elevated: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --nav: rgba(255, 255, 255, 0.72);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 980px;
  --max: 1080px;
  --max-wide: 1260px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

html.dark-mode {
  color-scheme: dark;
  --bg: #000000;
  --bg-soft: #161617;
  --bg-elevated: #1d1d1f;
  --ink: #f5f5f7;
  --muted: #a1a1a6;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #2997ff;
  --blue-hover: #54aeff;
  --nav: rgba(22, 22, 23, 0.8);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  font-weight: 400;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

::selection {
  background: rgba(0, 113, 227, 0.18);
  color: var(--ink);
}

.wrap {
  width: min(100% - 2.5rem, var(--max-wide));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 2.5rem, 720px);
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow--center {
  text-align: center;
}

/* ---------- Global nav (Apple-like) ---------- */
.global-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--nav);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.global-nav__inner {
  width: min(100% - 2rem, var(--max-wide));
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}

.logo {
  height: 1.55rem;
  width: auto;
}

.global-nav .logo {
  height: 2.15rem;
}

.logo--dark {
  display: none;
}

html.dark-mode .logo--light {
  display: none;
}

html.dark-mode .logo--dark {
  display: block;
}

.global-nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 900px) {
  .global-nav__links {
    display: flex;
  }
}

.global-nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.global-nav__links a:hover,
.global-nav__links a.is-active {
  opacity: 1;
}

.global-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  z-index: 2;
}

.theme-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-btn svg {
  width: 16px;
  height: 16px;
}

.theme-btn__moon {
  display: none;
}

html.dark-mode .theme-btn__sun {
  display: none;
}

html.dark-mode .theme-btn__moon {
  display: block;
}

.burger {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.burger[aria-expanded='true'] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.burger[aria-expanded='true'] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

@media (min-width: 900px) {
  .burger {
    display: none;
  }
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a {
  padding: 0.7rem 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .mobile-drawer,
  .mobile-drawer.open {
    display: none;
  }
}

/* ---------- Buttons / links ---------- */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: var(--blue);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.pill-btn:hover {
  background: var(--blue-hover);
}

.pill-btn--sm {
  display: none;
  padding: 0.5rem 1.05rem;
  font-size: 14px;
}

@media (min-width: 900px) {
  .pill-btn--sm {
    display: inline-flex;
  }
}

.pill-btn--block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 17px;
  font-weight: 400;
  color: var(--blue);
  text-decoration: none;
}

.text-link::after {
  content: '›';
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.text-link--light {
  color: #2997ff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 5rem;
  overflow: hidden;
  text-align: center;
  color: #f5f5f7;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/neon2.jpg') center / cover no-repeat,
    #111;
  transform: scale(1.04);
  will-change: transform;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.28) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__center {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__brand {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
}

.hero__headline {
  margin: 0 0 1.1rem;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #f5f5f7;
}

.hero__sub {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: 19px;
  line-height: 1.45;
  color: rgba(245, 245, 247, 0.82);
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

/* ---------- Statement ---------- */
.statement {
  padding: 7rem 0 5.5rem;
  background: var(--bg);
  text-align: center;
}

.statement__title {
  margin: 0 0 1.15rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.statement__copy {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- Media tiles ---------- */
.tile-section {
  padding: 0 0 4rem;
  background: var(--bg);
}

.tile-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .tile-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.media-tile {
  display: grid;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
}

.media-tile__visual {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.media-tile__visual--vision {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=900&h=700&fit=crop&q=80');
}

.media-tile__visual--legal {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=900&h=700&fit=crop&q=80');
}

.media-tile__body {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.media-tile__body h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.media-tile__body p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------- Feature band ---------- */
.feature-band {
  padding: 6.5rem 0;
  background: var(--bg-soft);
}

.feature-band__intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.feature-band__intro h2,
.pathway__head h2,
.team-band__intro h2,
.contact-band__head h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.feature-band__intro p,
.pathway__head p,
.team-band__intro p,
.contact-band__head p {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 19px;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.5rem 2rem;
  min-height: 220px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
}

.feature__num {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.feature h3 {
  margin: 0 0 0.65rem;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------- Pathway cards ---------- */
.pathway {
  padding: 6.5rem 0;
  background: var(--bg);
}

.pathway__head {
  text-align: center;
  margin-bottom: 3rem;
}

.pathway__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .pathway__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.pathway-card {
  display: grid;
  text-decoration: none;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  transition: transform 0.4s var(--ease);
}

.pathway-card:hover {
  transform: scale(1.01);
}

.pathway-card__media {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.pathway-card__media--cases {
  background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1000&h=700&fit=crop&q=80');
}

.pathway-card__media--measures {
  background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1000&h=700&fit=crop&q=80');
}

.pathway-card__copy {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pathway-card__copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.pathway-card__copy p:not(.eyebrow) {
  margin: 0 0 0.5rem;
  font-size: 16px;
  color: var(--muted);
}

.pathway-card__copy .text-link {
  margin-top: auto;
}

/* ---------- Team ---------- */
.team-band {
  padding: 6.5rem 0 0;
  background: var(--bg-soft);
}

.team-band__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.team-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  width: min(100%, var(--max-wide));
  margin: 0 auto;
  padding: 0 1.25rem 0;
}

@media (min-width: 768px) {
  .team-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    padding: 0 1.25rem;
  }
}

.team-gallery__shot {
  min-height: 280px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center top;
  filter: saturate(0.92) contrast(1.02);
  transition: filter 0.4s ease, transform 0.4s var(--ease);
}

@media (min-width: 768px) {
  .team-gallery__shot {
    min-height: 420px;
  }

  .team-gallery__shot:nth-child(2) {
    transform: translateY(1.25rem);
  }
}

.team-gallery__shot:hover {
  filter: saturate(1) contrast(1.04);
}

/* ---------- Contact ---------- */
.contact-band {
  padding: 6.5rem 0 7rem;
  background: var(--bg-soft);
}

.contact-band__head {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1.4fr 0.9fr;
    gap: 1.75rem;
    align-items: start;
  }
}

.eval-form {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .eval-form {
    padding: 2.5rem;
  }
}

.eval-form__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 700px) {
  .eval-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}

.legal-note {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
}

.contact-info {
  background: var(--ink);
  color: rgba(245, 245, 247, 0.8);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
}

html.dark-mode .contact-info {
  background: #1d1d1f;
  border: 1px solid var(--line);
}

.contact-info h3 {
  margin: 0 0 1.75rem;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.contact-info ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-info li {
  display: grid;
  gap: 0.2rem;
}

.contact-info strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.contact-info span {
  font-size: 16px;
}

.contact-info .text-link {
  color: #2997ff;
}

/* ---------- Inner pages ---------- */
.page-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 4.5rem;
  overflow: hidden;
  text-align: center;
  color: #f5f5f7;
}

.page-hero--compact {
  min-height: 58svh;
  padding-bottom: 4rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/neon2.jpg') center / cover no-repeat,
    #111;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.62) 100%);
}

.page-hero__center {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow--light {
  color: rgba(245, 245, 247, 0.72);
}

.page-hero__title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

.page-hero__sub {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: 19px;
  line-height: 1.45;
  color: rgba(245, 245, 247, 0.82);
}

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.page-section {
  padding: 5.5rem 0;
  background: var(--bg);
}

.page-section--soft {
  background: var(--bg-soft);
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.section-note {
  margin: 2.5rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}

.feature-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .feature-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.split-panel {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .split-panel {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
  }
}

.split-panel__block {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}

.split-panel__block p {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.split-panel__block p:last-child {
  margin-bottom: 0;
}

.split-panel__block h3 {
  margin: 0 0 1.1rem;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.split-panel__block--accent {
  background: var(--ink);
  color: rgba(245, 245, 247, 0.85);
}

.split-panel__block--accent h3 {
  color: #fff;
}

.split-panel__block--accent .plain-list li {
  color: rgba(245, 245, 247, 0.85);
}

.split-panel__block--accent .plain-list li::before {
  background: #2997ff;
}

html.dark-mode .split-panel__block--accent {
  background: #1d1d1f;
  border: 1px solid var(--line);
}

.info-tile {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
}

.info-tile h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.plain-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 16px;
  color: var(--muted);
}

.plain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.plain-list--light li {
  color: rgba(245, 245, 247, 0.85);
}

.plain-list--light li::before {
  background: #2997ff;
}

.cta-band {
  padding: 6.5rem 0;
  background: var(--bg);
  text-align: center;
}

.cta-band__inner h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.cta-band__inner > p {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  font-size: 19px;
  color: var(--muted);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-info__box {
  margin: 0 0 1.75rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info__box h4 {
  margin: 0 0 0.85rem;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.form-message {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 14px;
  background: rgba(0, 113, 227, 0.1);
  color: var(--blue);
}

.form-message.is-error {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
}

.page-hero [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.page-hero [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.page-hero [data-reveal]:nth-child(3) { transition-delay: 0.25s; }
.page-hero [data-reveal]:nth-child(4) { transition-delay: 0.35s; }

/* ---------- Legal document ---------- */
.legal-page {
  padding: 4.5rem 0 6.5rem;
  background: var(--bg);
}

.legal-doc {
  width: min(100% - 2.5rem, 800px);
  margin-inline: auto;
}

.legal-doc h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.legal-doc h3 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal-doc p,
.legal-doc li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.legal-doc p {
  margin: 0 0 1rem;
}

.legal-doc ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin: 0 0 0.4rem;
}

.legal-doc a {
  color: var(--blue);
}

.legal-doc__address {
  margin-top: 2.5rem;
  text-align: center;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .site-footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.site-footer__nav a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--ink);
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-footer__social a:hover {
  color: var(--ink);
}

.site-footer__social svg {
  width: 15px;
  height: 15px;
}

.site-footer__copy {
  width: min(100% - 2.5rem, var(--max-wide));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Motion ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.hero [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.hero [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.hero [data-reveal]:nth-child(3) { transition-delay: 0.25s; }
.hero [data-reveal]:nth-child(4) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .feature,
  .pathway-card,
  .team-gallery__shot {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
