/* ═══════════════════════════════════════════════════
   LZNP — Lotero Zuluaga Naranjo Puyo
   Design System · Static Site CSS
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:   #10222D;
  --mint:   #ACE2C7;
  --steel:  #416C7C;
  --white:  #FFFFFF;
  --muted:  #5C7280;
  --border: #E2EAF0;
  --bg:     #FFFFFF;

  --font: 'Montserrat', 'Inter', sans-serif;
  --max-w: 1280px;

  --s4:  4px;  --s8:  8px;  --s12: 12px;
  --s16: 16px; --s20: 20px; --s24: 24px; --s32: 32px;
  --s48: 48px; --s64: 64px; --s96: 96px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s24);
}
@media (max-width: 767px) { .container { padding: 0 var(--s16); } }

/* ── NAVBAR — dark ───────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--s24);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex; align-items: center; gap: var(--s32);
}
.nav__links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  transition: color 150ms ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a.nav__cta {
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 var(--s20);
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  font-size: 13px; font-weight: 500;
  letter-spacing: .04em;
  border-radius: 4px;
  transition: background 150ms ease, border-color 150ms ease;
}
.nav__links a.nav__cta:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.nav__lang {
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45) !important;
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 8px; border-radius: 3px;
  transition: color 150ms ease, border-color 150ms ease;
}
.nav__lang:hover { color: var(--white) !important; border-color: rgba(255,255,255,.5); }
@media (max-width: 1023px) { .nav__links { gap: var(--s24); } }
@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__logo-sub { display: none; }
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: var(--s96) 0;
  min-height: 560px;
  display: flex; align-items: center;
}
.hero__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mint);
  margin-bottom: var(--s32);
}
.hero__title {
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -.02em;
  max-width: 820px; margin-bottom: var(--s32);
}
.hero__title strong { font-weight: 600; }
.hero__desc {
  font-size: 17px; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,.68);
  max-width: 540px; margin-bottom: var(--s48);
}
.hero__cta {
  display: inline-flex; align-items: center;
  height: 48px; padding: 0 var(--s32);
  background: var(--mint); color: var(--navy);
  font-size: 13px; font-weight: 600;
  letter-spacing: .03em;
  border-radius: 4px;
  transition: opacity 150ms ease;
}
.hero__cta:hover { opacity: .88; color: var(--navy); }

/* ── SECTIONS ───────────────────────────────────────── */
.section { padding: var(--s96) 0; background: var(--bg); }
.section--gray { background: #f5f7fa; }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: var(--s16);
}
.section-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300; letter-spacing: -.02em; line-height: 1.2;
  color: var(--navy); margin-bottom: var(--s24);
}
.section-title strong { font-weight: 600; }
.section-lead {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  max-width: 580px; margin-bottom: var(--s48);
}

/* ── FIRMA INTRO (home) ─────────────────────────────── */
.firma-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s64); align-items: start;
}
@media (max-width: 767px) { .firma-intro { grid-template-columns: 1fr; } }
.firma-intro__body p {
  font-size: 17px; line-height: 1.8; color: var(--navy);
  margin-bottom: var(--s24);
}
.firma-intro__body p:last-child { margin-bottom: var(--s32); }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--s8);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--steel);
  transition: gap 150ms ease, color 150ms ease;
}
.link-arrow:hover { gap: var(--s16); color: var(--navy); }
.link-arrow::after { content: '→'; }

/* ── CLIENTS STRIP (firma section) ──────────────────── */
.clients-strip {
  border-top: 1px solid var(--border);
  padding-top: var(--s48);
  margin-top: var(--s48);
}
.clients-strip__title {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: var(--s24);
}
.clients-strip__logos {
  display: flex; flex-wrap: wrap; gap: var(--s12);
  align-items: center;
}
.clients-strip__logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 200ms ease;
}
.clients-strip__logo:hover { filter: grayscale(0) opacity(1); }

/* ── CLIENTS CAROUSEL ────────────────────────────────── */
.clients-section {
  padding: var(--s64) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-section__label {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--steel);
  text-align: center; margin-bottom: var(--s32);
}
.clients-track-wrap {
  overflow: hidden;
  position: relative;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
  pointer-events: none;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.clients-track {
  display: flex; align-items: center;
  gap: var(--s32);
  animation: marquee 40s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-item {
  flex-shrink: 0;
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 200ms ease;
}
.client-item:hover { filter: grayscale(0) opacity(1); }

/* ── TEAM CARDS (home) ───────────────────────────────── */
.team-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s24);
}
@media (max-width: 1023px) { .team-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .team-grid-home { grid-template-columns: 1fr; } }

.team-card {
  border: 1px solid var(--border);
  padding: var(--s32) var(--s24);
  transition: border-color 200ms ease;
}
.team-card:hover { border-color: var(--steel); }
.team-card__photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  background: var(--border); margin-bottom: var(--s24);
}
.team-card__name {
  font-size: 16px; font-weight: 600; color: var(--navy);
  margin-bottom: var(--s4);
}
.team-card__role {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: var(--s12);
}
.team-card__area {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  margin-bottom: var(--s16);
}
.team-card__tags {
  display: flex; flex-wrap: wrap; gap: var(--s8);
  margin-bottom: var(--s16);
}
.team-card__tag {
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  color: var(--steel);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 8px;
}
.team-card__link {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel);
  transition: color 150ms ease;
}
.team-card__link:hover { color: var(--navy); }

/* ── PRACTICE AREA CARDS ────────────────────────────── */
.areas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 767px) { .areas-grid { grid-template-columns: 1fr; } }
.area-card {
  background: var(--white);
  padding: var(--s48) var(--s32);
  transition: background 200ms ease;
}
.area-card:hover { background: #f5f7fa; }
.area-card__num {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  color: var(--steel); margin-bottom: var(--s24);
  text-transform: uppercase;
}
.area-card__title {
  font-size: 20px; font-weight: 600; color: var(--navy);
  margin-bottom: var(--s12); line-height: 1.25;
}
.area-card__desc {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  margin-bottom: var(--s24);
}
.area-card__services { list-style: none; }
.area-card__services li {
  font-size: 14px; color: var(--navy);
  padding: var(--s8) 0; border-top: 1px solid var(--border);
  line-height: 1.4;
}
.area-card__services li:last-child { border-bottom: 1px solid var(--border); }

/* ── BLOG PREVIEW ───────────────────────────────────── */
.blog-intro {
  padding: var(--s64) 0;
  border-top: 1px solid var(--border);
}
.blog-intro p {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  max-width: 640px;
}

/* ── PAGE HEADER ────────────────────────────────────── */
.page-header {
  background: var(--navy); color: var(--white);
  padding: var(--s64) 0;
}
.page-header__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; letter-spacing: -.02em;
  line-height: 1.1; margin-bottom: var(--s16);
}
.page-header__subtitle {
  font-size: 17px; color: rgba(255,255,255,.65);
  max-width: 520px; line-height: 1.65;
}

/* ── FIRMA PAGE ─────────────────────────────────────── */
.firma-body p {
  font-size: 17px; line-height: 1.85; color: var(--navy);
  max-width: 760px; margin-bottom: var(--s32);
}
.firma-body p:last-child { margin-bottom: 0; }
.firma-highlight {
  font-size: 20px; font-weight: 300; line-height: 1.6;
  color: var(--navy); max-width: 720px;
  padding: var(--s48) 0; border-top: 3px solid var(--mint);
  margin-top: var(--s48);
}

/* ── EQUIPO PAGE ────────────────────────────────────── */
.equipo-intro p {
  font-size: 17px; line-height: 1.8; color: var(--navy);
  max-width: 740px; margin-bottom: var(--s24);
}
.team-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  padding-bottom: var(--s16); margin-bottom: var(--s32);
  border-bottom: 1px solid var(--border);
}
.team-grid-full {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s24); margin-bottom: var(--s64);
}
@media (max-width: 1023px) { .team-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .team-grid-full { grid-template-columns: 1fr; } }

.bio-card {
  border: 1px solid var(--border); overflow: hidden;
  transition: border-color 200ms ease;
  display: flex; flex-direction: column;
}
.bio-card:hover { border-color: var(--steel); }
.bio-card__img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  background: var(--border);
}
.bio-card__body { padding: var(--s24); flex: 1; display: flex; flex-direction: column; }
.bio-card__name {
  font-size: 16px; font-weight: 600; margin-bottom: var(--s4);
}
.bio-card__role {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel); margin-bottom: var(--s12);
}
.bio-card__summary {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  margin-bottom: var(--s16); display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.bio-card__edu {
  font-size: 13px; color: var(--muted); line-height: 1.5;
  padding-top: var(--s16); border-top: 1px solid var(--border);
  flex: 1;
}
.bio-card__edu strong {
  color: var(--steel); font-weight: 600; display: block;
  margin-bottom: var(--s8); font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase;
}
.bio-card__edu li { padding: var(--s4) 0; }
.bio-card__link {
  display: inline-flex; align-items: center; gap: var(--s8);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel);
  margin-top: var(--s20);
  transition: color 150ms ease, gap 150ms ease;
}
.bio-card__link::after { content: '→'; }
.bio-card__link:hover { color: var(--navy); gap: var(--s12); }

/* ── INDIVIDUAL PROFILE PAGE ────────────────────────── */
.profile-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: var(--s64); align-items: start;
  padding-top: var(--s64);
}
@media (max-width: 767px) { .profile-layout { grid-template-columns: 1fr; } }
.profile-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  background: var(--border);
}
.profile-name {
  font-size: clamp(26px, 3vw, 40px); font-weight: 300;
  letter-spacing: -.02em; color: var(--navy);
  margin-bottom: var(--s8);
}
.profile-role {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: var(--s32);
}
.profile-bio p {
  font-size: 17px; line-height: 1.85; color: var(--navy);
  margin-bottom: var(--s24);
}
.profile-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: var(--s16); margin-top: var(--s40, 40px);
  padding-bottom: var(--s12); border-bottom: 1px solid var(--border);
}
.profile-edu-list { list-style: none; }
.profile-edu-list li {
  font-size: 15px; color: var(--navy);
  padding: var(--s12) 0; border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.profile-areas {
  display: flex; flex-wrap: wrap; gap: var(--s8);
  margin-top: var(--s8);
}
.profile-area-tag {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  padding: var(--s8) var(--s16);
  background: #f5f7fa; color: var(--navy);
  border: 1px solid var(--border);
}
.profile-back {
  display: inline-flex; align-items: center; gap: var(--s8);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: var(--s48);
  transition: color 150ms ease;
}
.profile-back::before { content: '←'; }
.profile-back:hover { color: var(--navy); }

/* ── ÁREAS PAGE ─────────────────────────────────────── */
.areas-full { display: flex; flex-direction: column; gap: 0; }
.area-block {
  padding: var(--s64) var(--s32);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 2fr; gap: var(--s64);
  border-radius: 6px;
}
.area-block:nth-child(even) { background: #f5f6f8; }
@media (max-width: 767px) { .area-block { grid-template-columns: 1fr; gap: var(--s32); } }
.area-block:first-child { padding-top: var(--s64); }
.area-block__label {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--steel); margin-bottom: var(--s16);
}
.area-block__title {
  font-size: 26px; font-weight: 600; color: var(--navy);
  line-height: 1.2; margin-bottom: var(--s16);
}
.area-block__desc {
  font-size: 16px; color: var(--muted); line-height: 1.7;
}
.area-block__services { list-style: none; }
.area-block__services li {
  font-size: 15px; color: var(--navy);
  padding: var(--s12) 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; gap: var(--s12);
}
.area-block__services li::before {
  content: '—'; color: var(--steel); font-weight: 700; flex-shrink: 0;
}

/* ── CONTACTO PAGE ──────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s48); margin-top: var(--s48);
}
@media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }
.office-card {
  border: 1px solid var(--border); padding: var(--s32);
}
.office-card__city {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--steel); margin-bottom: var(--s16);
}
.office-card__info {
  font-size: 16px; color: var(--muted); line-height: 1.75;
}
.office-card__info p { margin-bottom: var(--s4); }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--navy); color: var(--white);
  padding: var(--s64) 0 var(--s48);
  margin-top: var(--s96);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s48); margin-bottom: var(--s48);
}
@media (max-width: 767px) { .footer__inner { grid-template-columns: 1fr; gap: var(--s32); } }
.footer__contact {
  margin-top: var(--s12);
  font-size: 13px;
}
.footer__contact a {
  color: rgba(255,255,255,.55);
  transition: color 150ms ease;
}
.footer__contact a:hover { color: var(--white); }
.footer__linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s12);
  color: rgba(255,255,255,.65);
  transition: color 150ms ease;
}
.footer__linkedin svg { width: 20px; height: 20px; fill: currentColor; }
.footer__linkedin:hover { color: var(--mint); }
.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--s16);
  filter: grayscale(1) brightness(1.2);
  opacity: .65;
}
.footer__tagline {
  font-size: 14px; color: rgba(255,255,255,.45);
  line-height: 1.65; max-width: 240px; margin-top: var(--s12);
}
.footer__col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: var(--s16);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--s6, 6px); }
.footer__col a {
  font-size: 14px; color: rgba(255,255,255,.65);
  transition: color 150ms ease;
}
.footer__col a:hover { color: var(--mint); }
.footer__col address {
  font-size: 14px; color: rgba(255,255,255,.65);
  font-style: normal; line-height: 1.75;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--s24);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s16);
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.65); }

/* ── APPROACH / ACCORDION ────────────────────────────── */
.approach-section {
  background: var(--navy);
  padding: var(--s96) 0;
}
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s64);
  align-items: start;
}
@media (max-width: 767px) { .approach-layout { grid-template-columns: 1fr; } }

.approach-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mint); margin-bottom: var(--s32);
}
.approach-title {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.15; letter-spacing: -.02em;
  color: var(--white); margin-bottom: var(--s32);
}
.approach-title strong { font-weight: 600; }
.approach-desc {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 440px; margin-bottom: 40px;
}
.approach-cta {
  display: inline-flex; align-items: center; gap: var(--s8);
  height: 44px; padding: 0 var(--s24);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-size: 13px; font-weight: 500;
  letter-spacing: .02em; border-radius: 4px;
  transition: border-color 200ms ease, background 200ms ease;
  margin-bottom: var(--s64);
}
.approach-cta:hover { border-color: var(--mint); color: var(--mint); }
.approach-cta::after { content: '↗'; }

.approach-items { display: flex; flex-direction: column; }
.approach-item {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: var(--s24) 0; cursor: pointer;
}
.approach-item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.approach-item__header {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s16);
}
.approach-item__title {
  font-size: 18px; font-weight: 400; color: rgba(255,255,255,.5);
  letter-spacing: -.01em; line-height: 1.3;
  transition: color 200ms ease;
}
.approach-item.active .approach-item__title,
.approach-item:hover .approach-item__title { color: var(--white); }
.approach-item__arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,.4);
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.approach-item.active .approach-item__arrow {
  border-color: var(--mint); color: var(--mint); transform: rotate(45deg);
}
.approach-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4,0,0.2,1),
              opacity 200ms ease, margin-top 200ms ease;
  opacity: 0; margin-top: 0;
}
.approach-item.active .approach-item__body {
  max-height: 160px; opacity: 1; margin-top: var(--s16);
}
.approach-item__body p {
  font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.55);
}
.approach-item__progress {
  height: 2px; background: rgba(255,255,255,.08);
  margin-top: var(--s16); border-radius: 1px; overflow: hidden;
}
.approach-item__progress::after {
  content: ''; display: block; height: 100%;
  width: 0; background: var(--mint); border-radius: 1px;
}
.approach-item.active .approach-item__progress::after {
  animation: approach-progress 5s linear forwards;
}
@keyframes approach-progress {
  from { width: 0; }
  to   { width: 100%; }
}

.approach-images { position: relative; aspect-ratio: 4/3; }
.approach-img {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 400ms cubic-bezier(0.4,0,0.2,1);
}
.approach-img.active { opacity: 1; }
.approach-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.approach-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,34,45,.85) 0%, transparent 50%);
}
.approach-stat-card {
  position: absolute; bottom: var(--s32); left: var(--s32); right: var(--s32);
}
.approach-stat-value {
  font-size: clamp(28px, 4vw, 48px); font-weight: 300;
  color: var(--white); line-height: 1; margin-bottom: var(--s8);
  letter-spacing: -.02em;
}
.approach-stat-label {
  font-size: 14px; color: rgba(255,255,255,.6);
  font-weight: 400; letter-spacing: .02em;
}

/* ── BLOG PAGE ──────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s32);
}
@media (max-width: 1023px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  border: 1px solid var(--border); padding: var(--s32) var(--s24);
  transition: border-color 200ms ease;
}
.blog-card:hover { border-color: var(--steel); }
.blog-card__meta {
  display: flex; gap: var(--s16); align-items: center;
  margin-bottom: var(--s16);
}
.blog-card__date {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.blog-card__category {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--steel);
}
.blog-card__title {
  font-size: 18px; font-weight: 600; color: var(--navy);
  line-height: 1.3; margin-bottom: var(--s12);
}
.blog-card__excerpt {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  margin-bottom: var(--s24);
}
.blog-card__link {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel);
  transition: color 150ms ease;
}
.blog-card__link:hover { color: var(--navy); }

/* ── MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── SCROLL REVEAL ──────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="up"] { transform: translateY(28px); }
[data-reveal="fade"] { transform: none; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal].revealed + [data-reveal] { transition-delay: 80ms; }
[data-reveal].revealed + [data-reveal] + [data-reveal] { transition-delay: 160ms; }
[data-reveal].revealed + [data-reveal] + [data-reveal] + [data-reveal] { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
