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

:root {
  --night: #1a1626;
  --dusk: #4a3a6b;
  --violet-mid: #6b5b8a;
  --violet-soft: #9a8cb5;
  --violet-wash: #d8d0e6;
  --sienna: #c96b33;
  --sienna-light: #e8935e;
  --gold: #d4a039;
  --gold-light: #e8bf5a;
  --ochre: #fadb85;
  --ochre-pale: #faecd0;
  --sky: #5b8fa8;
  --sky-light: #a8ced9;
  --cream: #faf5eb;
  --cream-warm: #f5efe3;
  --white: #ffffff;
  --text-dark: #1a1626;
  --text-mid: #4a3f5c;
  --text-light: #7a7289;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Franklin', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Force light mode — override any browser/OS dark mode */
@media (prefers-color-scheme: dark) {
  html, body {
    background: #faf5eb !important;
    color: #1a1626 !important;
  }
  :root {
    --night: #1a1626 !important;
    --cream: #faf5eb !important;
    --cream-warm: #f5efe3 !important;
    --white: #ffffff !important;
    --text-dark: #1a1626 !important;
    --text-mid: #4a3f5c !important;
    --text-light: #7a7289 !important;
    --ochre-pale: #faecd0 !important;
    --violet-wash: #d8d0e6 !important;
  }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 245, 235, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ochre-pale);
  padding: 1rem 2rem;
  display: flex; justify-content: center; align-items: center;
}
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.3s;
}
nav ul a:hover { color: var(--sienna); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1494059980473-813e73ee784b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 22, 38, 0.92) 0%,
    rgba(26, 22, 38, 0.85) 40%,
    rgba(74, 58, 107, 0.75) 70%,
    rgba(201, 107, 51, 0.35) 100%
  );
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 160, 57, 0.06) 0%, transparent 60%);
  z-index: 0;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
}

.hero-text { position: relative; z-index: 2; max-width: 720px; }
.hero-text .greeting {
  font-size: 0.85rem; font-weight: 600; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 1rem;
}
.hero-text h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 11em;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-text p {
  font-size: 1.1rem;
  color: var(--violet-wash);
  max-width: 38em;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--sienna);
  color: var(--cream);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s;
  border: none; cursor: pointer;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--night);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 57, 0.35);
}
.hero-cta-secondary {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--cream);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid rgba(250, 245, 235, 0.4);
  transition: all 0.3s;
  cursor: pointer;
}
.hero-cta-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── STAT BADGES ── */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.stats-cluster { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 420px; }
.stat-card {
  background: rgba(26, 22, 38, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1.75rem;
  text-align: center;
  border: 1px solid rgba(250, 219, 133, 0.15);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.stat-card:nth-child(1)::before { background: var(--sienna); }
.stat-card:nth-child(2)::before { background: var(--gold); }
.stat-card:nth-child(3)::before { background: var(--sky); }
.stat-card:nth-child(4)::before { background: var(--violet-mid); }

.stat-card:hover { transform: translateY(-4px); border-color: rgba(250, 219, 133, 0.35); background: rgba(26, 22, 38, 0.72); }
.stat-card .number {
  font-family: 'Lora', serif;
  font-size: 2.5rem; font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-card:nth-child(1) .number { color: var(--sienna-light); }
.stat-card:nth-child(2) .number { color: var(--gold-light); }
.stat-card:nth-child(3) .number { color: var(--sky-light); }
.stat-card:nth-child(4) .number { color: var(--violet-soft); }
.stat-card .label {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(216, 208, 230, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 1400px) {
  .stats-cluster { max-width: 520px; gap: 1.75rem; }
  .stat-card { padding: 2.5rem; }
  .stat-card .number { font-size: 3rem; }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--night);
  border-bottom: 1px solid rgba(250, 219, 133, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 5%;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
  text-align: center;
}
.strip-number {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--violet-soft);
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(250, 219, 133, 0.45);
  flex-shrink: 0;
}

/* ── SECTION SHARED ── */
section { padding: 5rem 5%; }
.about { padding: 0; }
.section-label {
  font-size: 0.8rem; font-weight: 700;
  color: var(--sienna);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--night);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ── ABOUT ── */
.about { background: var(--cream); padding: 0 0 2rem; }
.about-quote {
  text-align: center;
  padding: 3.5rem 10% 3rem;
  position: relative;
}
.about-quote::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 8%;
  line-height: 1;
}
.about-quote blockquote {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--night);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-quote blockquote em {
  font-style: normal;
  color: var(--sienna);
}
.about-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sienna), var(--gold));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}
.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 0 5% 2rem;
}
.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}
.about-photo-col img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cream-warm);
  box-shadow: 0 8px 32px rgba(201, 107, 51, 0.25), 0 0 0 3px var(--sienna);
  display: block;
}
.about-text p { margin-bottom: 1.25rem; color: var(--text-mid); font-size: 1.05rem; font-weight: 300; line-height: 1.8; }
.about-text .section-label { margin-bottom: 0.5rem; }
.about-text .section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  color: var(--night);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}




/* ── SKILL CLUSTERS ── */
.skills-panel { display: flex; flex-direction: column; gap: 1.75rem; }
.skill-cluster {
  border-left: 3px solid var(--ochre-pale);
  padding-left: 1.25rem;
  transition: border-color 0.3s;
}
.skill-cluster:nth-child(1):hover { border-color: var(--sienna); }
.skill-cluster:nth-child(2):hover { border-color: var(--sky); }
.skill-cluster:nth-child(3):hover { border-color: var(--gold); }
.skill-cluster-label {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  color: var(--white);
  background: var(--sienna);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-family: 'Libre Franklin', sans-serif;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}
.skill-cluster:nth-child(2) .skill-cluster-label { background: var(--sky); }
.skill-cluster:nth-child(3) .skill-cluster-label { background: var(--dusk); }
.skill-cluster-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.2rem;
  color: var(--night);
  margin-bottom: 0.4rem;
  font-style: italic;
}
.skill-cluster-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.skill-cluster-tools {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.mini-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--ochre-pale);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}

/* ── EXPERIENCE TIMELINE ── */
.experience {
  background: var(--ochre-pale);
  padding: 5rem 5%;
}
.experience .section-label { color: var(--sienna); }
.experience .section-title { color: var(--night); }
.experience .section-subtitle { color: var(--text-mid); }

/* Horizontal track */
.htimeline {
  position: relative;
  margin-top: 1rem;
}
.htimeline-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding-bottom: 2rem;
}
.htimeline-track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 0; right: 0;
  height: 2px;
  background: rgba(201, 107, 51, 0.25);
  z-index: 0;
}

/* Each node */
.hnode {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  flex: 1;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.hnode-dot {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  margin-bottom: 0.75rem;
  position: relative;
  opacity: 0.7;
}
.hnode-dot svg {
  width: 48px; height: 48px;
  transition: all 0.3s;
  filter: drop-shadow(0 0 0px var(--sienna));
}
.hnode-year {
  font-size: 0.7rem; font-weight: 700;
  color: rgba(26, 22, 38, 0.55);
  text-transform: uppercase; letter-spacing: 1px;
  text-align: center;
  transition: color 0.3s;
  white-space: nowrap;
  line-height: 1.3;
}
.hnode-company {
  font-size: 0.75rem; font-weight: 600;
  color: rgba(26, 22, 38, 0.45);
  text-align: center;
  margin-top: 0.2rem;
  transition: color 0.3s;
  max-width: 90px;
  line-height: 1.3;
}

/* Active node */
.hnode.active .hnode-dot {
  opacity: 1;
  transform: scale(1.2);
}
.hnode.active .hnode-dot svg {
  filter: drop-shadow(0 0 8px var(--accent-color));
}
.hnode.active .hnode-year { color: var(--sienna-light); }
.hnode.active .hnode-company { color: var(--sienna); }
.hnode:hover .hnode-dot { opacity: 0.8; }
.hnode:hover .hnode-year { color: var(--night); }

/* Detail panel */
.hpanel-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
}
.hpanel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-radius: 20px;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hpanel.active {
  transform: translateX(0);
}
.hpanel.exit-left {
  transform: translateX(-100%);
}
.hpanel.exit-right {
  transform: translateX(100%);
}
.hpanel-image {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hpanel-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(26,22,38,0.6) 100%);
}
.hpanel-content {
  padding: 2rem 2.5rem 2.5rem;
  background: rgba(250, 245, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(250, 245, 235, 0.6);
  border-left: none;
  border-radius: 0 20px 20px 0;
}
.hpanel-sector {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  color: var(--night);
}
.hpanel-date {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--violet-mid);
  margin-bottom: 0.35rem;
}
.hpanel-role {
  font-family: 'Lora', serif;
  font-size: 1.5rem; color: var(--night);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.hpanel-company {
  font-weight: 600; color: var(--violet-soft);
  margin-bottom: 1rem; font-size: 0.9rem;
}
.hpanel-impact {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 2px solid currentColor;
}
.hpanel-desc {
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}
.hpanel-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 1.25rem;
}
.hpanel-tag {
  font-size: 0.7rem; font-weight: 600;
  color: var(--violet-mid);
  background: rgba(107, 91, 138, 0.08);
  border: 1px solid rgba(107, 91, 138, 0.2);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}

.hpanel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: height 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1100px) {
  .hpanel-content { padding: 1.5rem; }
  .hpanel-role { font-size: 1.25rem; }
}
@media (max-width: 900px) {
  .htimeline-track { overflow-x: auto; padding-bottom: 1rem; gap: 1rem; }
  .hnode { min-width: 80px; }
  .hpanel { grid-template-columns: 1fr; }
  .hpanel-image { min-height: 140px; max-height: 180px; }
  .hpanel-content { padding: 1.25rem; }
}
@media (max-width: 600px) {
  .hpanel-image { display: none; }
  .hpanel { grid-template-columns: 1fr; }
  .hpanel-content { padding: 1rem; border-radius: 16px; border: 1px solid rgba(250,219,133,0.1); }
  .hpanel-role { font-size: 1.1rem; }
  .hpanel-impact { font-size: 0.9rem; }
  .hpanel-desc { font-size: 0.85rem; }
}

/* ── PORTFOLIO / SHOWCASE ── */
.showcase { background: var(--night); }
.showcase .section-label { color: var(--gold); }
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.showcase-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--ochre-pale);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 22, 38, 0.1);
  border-color: var(--gold-light);
}
.showcase-card .card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.showcase-card:nth-child(1) .card-icon { background: rgba(201, 107, 51, 0.12); }
.showcase-card:nth-child(2) .card-icon { background: rgba(91, 143, 168, 0.12); }
.showcase-card:nth-child(3) .card-icon { background: rgba(212, 160, 57, 0.12); }
.showcase-card:nth-child(4) .card-icon { background: rgba(74, 58, 107, 0.12); }
.showcase-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  color: var(--night);
  margin-bottom: 0.5rem;
}
.showcase-card p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0; font-weight: 300; flex-grow: 1; }
.showcase-card .tag {
  display: inline-block;
  background: var(--cream);
  color: var(--violet-mid);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(107, 91, 138, 0.2);
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.showcase-card:nth-child(1)::before { background: var(--sienna); }
.showcase-card:nth-child(2)::before { background: var(--sky); }
.showcase-card:nth-child(3)::before { background: var(--gold); }
.showcase-card:nth-child(4)::before { background: var(--dusk); }
.coming-soon {
  display: inline-block;
  background: rgba(201, 107, 51, 0.1);
  color: var(--sienna);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.25rem;
  align-self: flex-start;
}
.card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.view-demo {
  display: inline-block;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.view-demo:hover {
  background: rgba(46, 125, 50, 0.2);
}
.how-built {
  display: inline-block;
  background: rgba(91, 143, 168, 0.1);
  color: var(--sky);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.how-built:hover {
  background: rgba(91, 143, 168, 0.2);
}

/* ── TOOLS ── */
.tools { background: var(--cream); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.tool-chip {
  background: var(--white);
  border: 1px solid var(--ochre-pale);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: center;
  transition: all 0.3s;
}
.tool-chip:hover {
  border-color: var(--gold-light);
  background: var(--ochre-pale);
  transform: translateY(-2px);
}
.tool-chip .level {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
  color: var(--sienna);
}

/* ── CONTACT ── */
.contact {
  background: var(--night);
  color: var(--cream);
  text-align: center;
  padding: 5rem 5%;
}
.contact .section-label { color: var(--gold); }
.contact .section-title { color: var(--cream); }
.contact .section-subtitle { color: var(--violet-soft); margin: 0 auto 2.5rem; }
.contact-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.contact-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(250, 219, 133, 0.1);
  border: 1px solid rgba(250, 219, 133, 0.2);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500; font-size: 0.9rem;
  transition: all 0.3s;
}
.contact-link:hover {
  background: var(--sienna);
  border-color: var(--sienna);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--night);
  border-top: 1px solid rgba(250, 219, 133, 0.1);
  text-align: center;
  padding: 1.5rem;
  color: var(--violet-soft);
  font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-photo-col { grid-column: 1 / -1; flex-direction: row; justify-content: center; }
}
@media (max-width: 768px) {
  .hero { padding-top: 6rem; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-cta { margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { grid-column: auto; }
  nav ul { display: none; }
  .timeline::before { left: 14px; }
  .timeline-item { padding-left: 48px; }
  .timeline-dot { left: 4px; }
  .stats-strip { gap: 1rem; }
  .stat-item { padding: 0.5rem 1.5rem; }
  .stat-divider { display: none; }
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
