:root{
  /* Light */
  --bg:#f6f8f7;
  --card:#ffffff;
  --text:#0e1b14;
  --muted:#5b6b63;
  --border:rgba(20, 35, 28, .10);
  --shadow: 0 20px 50px rgba(16, 30, 22, .08);
  --green:#2e63ff;
  --green2:#1f4fd6;
  --chip:#eef3f1;
  --radius:22px;
  --radius2:28px;
  --surface: rgba(255,255,255,.70);        /* cards softer */
  --surface-2: rgba(246,248,247,.65);      /* inner rows */
  --ring: rgba(46,99,255,.22);
  --placeholder: rgba(91,107,99,.70);
  --gold:#d8b45a;
  --portrait-border: rgba(255,255,255,.92);
  --blue-1:rgba(60,125,255,.14);
  --blue-2:rgba(120,170,255,.12);
  --blue-3:rgba(60,125,255,.08);

  /* extras */
  --header:rgba(246,248,247,.70);
  --input-bg:rgba(255,255,255,.85);
}

.i,
.pi,
.ei{
  color:var(--green);
}

body[data-theme="dark"]{
  --bg:#0b1210;
  --card:#101c18;
  --text:#ecf4f0;
  --muted:#b7c8c0;
  --border:rgba(255,255,255,.14);
  --shadow: 0 24px 70px rgba(0,0,0,.45);
  --green:#5b86ff;
  --green2:#3f6bff;
  --chip:rgba(255,255,255,.08);
  --surface: rgba(16,28,24,.88);
  --surface-2: rgba(255,255,255,.06);
  --ring: rgba(91,134,255,.28);
  --placeholder: rgba(183,200,192,.70);
  --gold:#f1c76a;
  --portrait-border: rgba(0,0,0,.75);
  --blue-1:rgba(90,150,255,.14);
  --blue-2:rgba(120,185,255,.12);
  --blue-3:rgba(90,150,255,.08);
  --header:rgba(11,18,16,.85);
  --input-bg:rgba(255,255,255,.08);
}

body{
  margin:0;
  font-family:"Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  position:relative;
  isolation:isolate;
  background:
    radial-gradient(900px 400px at 70% 10%, var(--blue-1), transparent 60%),
    radial-gradient(800px 400px at 25% 10%, var(--blue-2), transparent 60%),
    var(--bg);
}
body::before{
  content:"";
  position:fixed;
  inset:-20% -10%;
  background:
    radial-gradient(60px 60px at 12% 18%, rgba(90,150,255,.18), transparent 60%),
    radial-gradient(90px 90px at 78% 22%, rgba(120,175,255,.16), transparent 60%),
    radial-gradient(70px 70px at 30% 72%, rgba(80,140,255,.14), transparent 60%),
    radial-gradient(110px 110px at 88% 78%, rgba(100,160,255,.12), transparent 60%);
  opacity:.6;
  z-index:-1;
  pointer-events:none;
  animation: bubble-float 26s ease-in-out infinite;
}
body::after{
  content:"";
  position:fixed;
  inset:-15% -5%;
  background:
    radial-gradient(40px 40px at 20% 35%, rgba(120,180,255,.16), transparent 60%),
    radial-gradient(70px 70px at 65% 60%, rgba(90,150,255,.14), transparent 60%),
    radial-gradient(55px 55px at 45% 15%, rgba(110,170,255,.12), transparent 60%),
    radial-gradient(85px 85px at 10% 80%, rgba(80,140,255,.10), transparent 60%);
  opacity:.5;
  z-index:-1;
  pointer-events:none;
  animation: bubble-drift 32s ease-in-out infinite;
}
*,
*::before,
*::after{
  box-sizing:border-box;
}
.theme-btn{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--card);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  cursor:pointer;
}

body[data-theme="dark"] .theme-btn{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.theme-btn:hover{transform:translateY(-2px)}
.theme-btn:active{transform:translateY(0)}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
ul{margin:0; padding-left:18px}
.container{
  width:min(1120px, 92%);
  margin:0 auto;
}

/* Icons */
.i{
  width:18px;
  height:18px;
  stroke-width:2.2;
}
.pi{
  width:46px;
  height:46px;
  stroke-width:1.8;
  color:rgba(14,91,63,.55);
}
.ei{
  width:44px;
  height:44px;
  stroke-width:1.8;
  color:rgba(14,91,63,.55);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(160%) blur(12px);
  background:var(--header);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:16px;
}
.brand{
  font-weight:800;
  letter-spacing:-0.02em;
  font-size:22px;
  color:var(--text);
}
.brand span{color:var(--gold)}

.nav__links{
  display:flex;
  align-items:center;
  gap:22px;
}
.nav__link{
  font-size:14px;
  color:var(--muted);
  transition:color .2s ease;
}
.nav__link:hover{color:var(--text)}
.nav__link.is-active{color:var(--green); font-weight:700}

.nav__cta{display:inline-flex}

.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--card);
  box-shadow: 0 10px 25px rgba(16,30,22,.06);
  cursor:pointer;
  padding:10px;
}
.nav__toggle span{
  display:block;
  height:2px;
  background:rgba(14,27,20,.7);
  border-radius:99px;
  margin:6px 0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(180deg, var(--green2), var(--green));
  color:#fff;
  box-shadow:0 18px 35px rgba(14,91,63,.18);
}
.btn--primary:hover{box-shadow:0 22px 50px rgba(14,91,63,.22)}
.btn--ghost{
  background:rgba(255,255,255,.8);
  border-color:rgba(20,35,28,.14);
  color:var(--text);
}
.btn--ghost:hover{transform:translateY(-1px)}
.btn--small{padding:10px 14px; font-size:13px}
.btn--block{width:100%}
.arrow{opacity:.9}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow: var(--shadow);
}

body[data-theme="dark"] .card,
body[data-theme="dark"] .float-card{
  background:rgba(16,28,24,.92);
  border-color:rgba(255,255,255,.12);
}

.card:hover{
  box-shadow:0 26px 60px rgba(16,30,22,.10);
}

/* Hero */
.hero{padding:64px 0 40px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap:44px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(14,91,63,.18);
  background:rgba(14,91,63,.06);
  color:var(--green);
  font-weight:700;
  font-size:13px;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(14,91,63,.12);
}
.hero h1{
  font-size:64px;
  line-height:1.02;
  letter-spacing:-.03em;
  margin:18px 0 10px;
}
.accent{color:var(--gold)}
.hero__roles{
  display:flex;
  align-items:center;
  gap:16px;
  margin:10px 0 18px;
  color:var(--muted);
  font-weight:700;
}
.role{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:16px;
}
.hero__desc{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  max-width:520px;
  margin:0 0 22px;
}
.hero__actions{display:flex; gap:14px; flex-wrap:wrap}
.hero__social{
  display:flex;
  gap:10px;
  margin-top:18px;
}
.social{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:16px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(20,35,28,.12);
  box-shadow:0 16px 35px rgba(16,30,22,.06);
  transition:transform .15s ease;
}
.social:hover{transform:translateY(-2px)}
.social .i{width:20px;height:20px}

/* Portrait area */
.portrait-wrap{
  position:relative;
  width:min(420px, 92%);
  margin-left:auto;
  aspect-ratio: 1/1;
  overflow:visible;
}
.glow{
  position:absolute;
  inset:-18px;
  background:
    radial-gradient(50% 45% at 75% 35%, rgba(90,150,255,.36), transparent 62%),
    radial-gradient(50% 45% at 25% 35%, rgba(90,150,255,.26), transparent 62%),
    radial-gradient(55% 50% at 70% 75%, rgba(120,175,255,.30), transparent 68%),
    radial-gradient(55% 50% at 30% 75%, rgba(120,175,255,.24), transparent 68%);
  filter: blur(9px);
  transform: translate3d(0,0,0);
  pointer-events:none;
  z-index:0;
  animation: halo-pulse 4.2s ease-in-out infinite;
}
.blob{
  position:absolute;
  inset:-10px;
  border-radius:999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(90,150,255,.18), transparent 58%),
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(120,175,255,.22) 50%, transparent 52%),
    radial-gradient(circle at 50% 50%, transparent 0 62%, rgba(90,150,255,.18) 64%, transparent 66%),
    radial-gradient(circle at 50% 50%, transparent 0 76%, rgba(120,175,255,.14) 78%, transparent 80%);
  opacity:.6;
  pointer-events:none;
  z-index:1;
  filter: blur(1.5px);
  animation: ripple-pulse 5.4s ease-in-out infinite;
}
.portrait{
  position:absolute;
  inset:40px;
  border-radius:999px;
  overflow:hidden;
  border:6px solid var(--portrait-border);
  box-shadow: 0 30px 80px rgba(16,30,22,.18);
  z-index:3;
}
.portrait__ring{
  position:absolute;
  inset:18px;
  border-radius:999px;
  border:2px solid var(--ring);
  box-shadow: inset 0 0 0 6px rgba(14,91,63,.05);
  pointer-events:none;
}
.portrait__inner{
  width:100%;
  height:100%;
  border-radius:999px;
  overflow:hidden;
}
.photo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.float-card{
  position:absolute;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(20,35,28,.12);
  box-shadow:0 20px 55px rgba(16,30,22,.10);
  backdrop-filter: blur(10px);
  animation: floaty 3.4s ease-in-out infinite;
  z-index:5;
}
.float-card .i{width:20px;height:20px}
.fc__icon{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:14px;
  background:rgba(14,91,63,.08);
  border:1px solid rgba(14,91,63,.14);
  color:var(--green);
}
.fc__small{color:var(--muted); font-weight:700; font-size:12px; line-height:1.1}
.fc__big{font-weight:900; font-size:14px; letter-spacing:-.02em}
.fc--top{top:28px; right:10px}
.fc--mid{bottom:80px; left:6px; animation-delay:.6s}

@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
@keyframes halo-pulse{
  0%,100%{
    opacity:.7;
    transform:scale(.98);
  }
  50%{
    opacity:1;
    transform:scale(1.04);
  }
}
@keyframes geo-spin{
  0%{
    transform:rotate(0deg);
    background-position:0 0, 0 0, 0 0;
  }
  50%{
    background-position:18px -12px, -12px 18px, 10px 10px;
  }
  100%{
    transform:rotate(360deg);
    background-position:0 0, 0 0, 0 0;
  }
}
@keyframes wave-flow{
  0%,100%{
    transform:translate3d(0,0,0) scale(1);
    background-position:0 0, 0 0;
  }
  50%{
    transform:translate3d(-2%, 1%, 0) scale(1.02);
    background-position:24px -18px, 0 0;
  }
}
@keyframes ripple-pulse{
  0%,100%{
    transform:scale(.98);
    opacity:.55;
  }
  50%{
    transform:scale(1.03);
    opacity:.7;
  }
}
@keyframes bubble-float{
  0%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(-3%, 2%, 0)}
  100%{transform:translate3d(0,0,0)}
}
@keyframes bubble-drift{
  0%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(2%, -2%, 0)}
  100%{transform:translate3d(0,0,0)}
}

/* Sections */
.section{padding:56px 0}
.section__head{
  text-align:center;
  margin-bottom:26px;
}
.section__head h2{
  margin:0;
  font-size:42px;
  letter-spacing:-.03em;
}
.section__head p{
  margin:8px 0 0;
  color:var(--muted);
  font-weight:700;
}

/* About */
.about__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
.about__text{padding:26px}
.about__text h3{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.02em;
}
.about__text p{
  color:var(--muted);
  line-height:1.75;
  margin:0 0 12px;
}
.about__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.stat{
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(20,35,28,.10);
  background:rgba(53, 243, 240, 0.55);
}
.stat__icon{
  width:40px;height:40px;
  border-radius:14px;
  display:grid;place-items:center;
  background:rgba(14,91,63,.08);
  border:1px solid rgba(14,91,63,.14);
  color:var(--green);
  margin-bottom:10px;
}
.stat__label{font-weight:800; font-size:12px; color:rgba(14,27,20,.72)}
.stat__value{font-weight:800; font-size:13px; color:var(--muted); margin-top:4px}

.quote{
  padding:26px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:center;
  min-height:320px;
}
.quote__icon{
  width:54px;height:54px;
  border-radius:18px;
  display:grid;place-items:center;
  background:rgba(14,91,63,.08);
  border:1px solid rgba(14,91,63,.14);
  color:var(--green);
}
.quote__icon .i{width:24px;height:24px}
.quote__text{
  margin:0;
  color:rgba(91, 213, 15, 0.78);
  font-weight:800;
  font-size:18px;
  line-height:1.65;
}
.quote__line{
  width:56px;
  height:4px;
  border-radius:99px;
  background:var(--gold);
}

/* Skills */
.skills__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.skill{padding:20px}
.skill__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.skill__icon{
  width:46px;height:46px;
  border-radius:16px;
  display:grid;place-items:center;
  background:rgba(14,91,63,.08);
  border:1px solid rgba(14,91,63,.14);
  color:var(--green);
}
.skill h3{
  margin:0;
  font-size:16px;
  letter-spacing:-.01em;
}
.chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  font-size:12px;
  font-weight:800;
  color:rgba(14,27,20,.72);
  background:var(--chip);
  border:1px solid rgba(20,35,28,.10);
  padding:8px 10px;
  border-radius:999px;
  
}
.chip{
  color:var(--text);
  background:var(--chip);
  border:1px solid var(--border);
}

/* Timeline */
.timeline{
  position:relative;
  padding:18px 0;
}
.timeline__line{
  position:absolute;
  left:50%;
  top:0; bottom:0;
  width:2px;
  transform:translateX(-50%);
  background:linear-gradient(180deg, rgba(14,91,63,.0), rgba(14,91,63,.30), rgba(14,91,63,.0));
}
.timeline__item{
  display:grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items:center;
  gap:18px;
  padding:18px 0;
}
.timeline__item--alt .timeline__card{grid-column:1}
.timeline__item--alt .timeline__date{grid-column:3; justify-self:start}
.timeline__date{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(14,91,63,.18);
  background:rgba(14,91,63,.06);
  color:var(--green);
  font-weight:800;
  font-size:13px;
}
.timeline__dot{
  width:14px;height:14px;border-radius:99px;
  background:var(--green);
  box-shadow:0 0 0 10px rgba(14,91,63,.10);
  justify-self:center;
}
.timeline__card{
  padding:20px;
  grid-column:3;
}
.timeline__card h3{margin:0 0 8px; letter-spacing:-.02em}
.timeline__meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
  margin-bottom:10px;
}
.timeline__meta span{display:inline-flex; align-items:center; gap:8px}
.timeline__card ul{color:var(--muted); line-height:1.75}
.timeline__card li{margin:6px 0}

/* Projects */
.projects__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.project{
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
}
.project:hover{transform:translateY(-3px)}
.project__img{
  height:160px;
  background:linear-gradient(180deg, rgba(14,91,63,.08), rgba(14,91,63,.02));
  display:grid;
  place-items:center;
}
.project__body{padding:18px 18px 20px}
.project__body h3{
  margin:0 0 8px;
  letter-spacing:-.02em;
}
.project__body p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.7;
}
.project__actions{
  display:flex;
  gap:12px;
  margin-top:14px;
}

/* Education */
.edu__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}
.edu{
  padding:22px;
  display:flex;
  gap:16px;
  align-items:center;
}
.edu__icon{
  width:62px;height:62px;
  border-radius:22px;
  display:grid;place-items:center;
  background:rgba(14,91,63,.08);
  border:1px solid rgba(14,91,63,.14);
}
.edu__pill{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(20,35,28,.12);
  background:rgba(246,248,247,.60);
  color:rgba(14,27,20,.68);
  font-weight:900;
  font-size:12px;
  margin-bottom:8px;
}
.edu__body h3{margin:0 0 6px; letter-spacing:-.02em}
.edu__body p{margin:0; color:var(--muted); font-weight:700}

/* Contact */
#contact .section__head{
  margin-bottom: 30px;
}

.contact__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

.contact__left{
  padding: 2px;
}

.contact__left h3{
  margin:0 0 10px;
  letter-spacing:-.02em;
  font-size:18px;
}

.contact__left p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.7;
  font-weight:700;
}

/* left info card */
.contact__card{
  padding:18px;
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius2);
}

/* each row */
.contact__row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid var(--border);
  background: var(--surface-2);
  margin-bottom:12px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.contact__row:last-child{margin-bottom:0}
.contact__row:hover{
  transform: translateY(-1px);
  border-color: var(--ring);
}

.contact__icon{
  width:46px;height:46px;
  border-radius:16px;
  display:grid;place-items:center;
  background:rgba(14,91,63,.10);
  border:1px solid var(--ring);
  color:var(--green);
  flex:0 0 auto;
}

.contact__label{
  font-weight:900;
  font-size:12px;
  color:rgba(14,27,20,.72);
}
body[data-theme="dark"] .contact__label{
  color:rgba(236,244,240,.72);
}

.contact__value{
  font-weight:900;
  color:var(--text);
  margin-top:5px;
  display:inline-block;
}
.contact__value:hover{color:var(--green)}

/* form card */
.contact__form{
  padding:18px;
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius2);
}

.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.field{
  margin-bottom:16px;
  min-width:0;
}

label{
  display:block;
  font-weight:900;
  font-size:12px;
  color:rgba(14,27,20,.72);
  margin:0 0 8px;
}
body[data-theme="dark"] label{
  color:rgba(236,244,240,.72);
}

input, textarea{
  width:100%;
  border:1px solid var(--border);
  background: var(--input-bg);
  border-radius:16px;
  padding:14px 12px;
  outline:none;
  font:inherit;
  color:var(--text);
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
  display:block;
}

input::placeholder,
textarea::placeholder{
  color: var(--placeholder);
  font-weight:700;
}

input:focus, textarea:focus{
  border-color: var(--ring);
  box-shadow:0 0 0 6px rgba(14,91,63,.12);
}
body[data-theme="dark"] input:focus,
body[data-theme="dark"] textarea:focus{
  box-shadow:0 0 0 6px rgba(47,227,155,.10);
}

/* button spacing */
.contact__form .btn--block{
  margin-top: 10px;
}

/* responsive */
@media (max-width: 980px){
  .contact__grid{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .form__row{grid-template-columns:1fr}
}

.form__note{
  margin:10px 0 0;
  font-weight:800;
  color:rgba(14,91,63,.85);
  min-height:18px;
}

/* Footer */
.footer{
  padding:26px 0 40px;
  border-top:1px solid rgba(20,35,28,.06);
  margin-top:20px;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer__brand{font-weight:900}
.footer__muted{color:var(--muted); font-weight:800; font-size:13px}
.footer__link{
  color:var(--muted);
  font-weight:900;
}
.footer__link:hover{color:var(--green)}

/* Reveal Animations */
.reveal{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:30px}
  .portrait-wrap{margin:0 auto}
  .about__grid{grid-template-columns:1fr}
  .skills__grid{grid-template-columns: repeat(2, 1fr)}
  .projects__grid{grid-template-columns: repeat(2, 1fr)}
  .edu__grid{grid-template-columns:1fr}
  .contact__grid{grid-template-columns:1fr}
  .hero h1{font-size:52px}
}
@media (max-width: 760px){
  .nav__toggle{display:block}
  .nav__links{
    position:fixed;
    inset:70px 14px auto 14px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(20,35,28,.12);
    border-radius:22px;
    padding:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    box-shadow:0 26px 60px rgba(16,30,22,.12);
  }
  .nav__links.is-open{display:flex}
  .nav__link{padding:12px 10px; border-radius:16px}
  .nav__link:hover{background:rgba(14,91,63,.06)}
  .nav__cta{display:none}

  .about__stats{grid-template-columns:1fr}
  .timeline__line{left:12px; transform:none}
  .timeline__item{
    grid-template-columns: 24px 1fr;
    gap:12px;
    align-items:start;
  }
  .timeline__date{
    grid-column:2;
    justify-self:start;
    margin-bottom:10px;
  }
  .timeline__dot{
    grid-column:1;
    margin-top:14px;
  }
  .timeline__card{grid-column:2}
  .timeline__item--alt .timeline__card{grid-column:2}
  .timeline__item--alt .timeline__date{grid-column:2}

  .projects__grid{grid-template-columns:1fr}
  .skills__grid{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}
}
