:root {
  --bg:#0a0a0b;
  --bg-soft:#0d0d0e;
  --panel:#15151a;
  --border:#26262a;
  --accent:#aee438;
  --accent-hover:#bdf04a;
  --text:#f4f5f1;
  --muted:#9a9b96;
  --muted-2:#cfd0cb;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  overflow-x:hidden;
}
a { color:inherit; }
::selection { background:var(--accent); color:var(--bg); }
::-webkit-scrollbar { width:10px; }
::-webkit-scrollbar-track { background:#111; }
::-webkit-scrollbar-thumb { background:#2c2c30; border-radius:6px; }
input::placeholder, textarea::placeholder { color:#6d6d6f; }

.wrap { max-width:1240px; margin:0 auto; padding:0 36px; }

/* ---- Image slots (drop real photos into assets/) ---- */
.imgslot {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(120% 120% at 30% 20%, #20202a 0%, #15151a 60%, #101015 100%);
  color:#5a5b62; font-size:13px; font-weight:600; text-align:center;
  letter-spacing:.02em; padding:10px;
}
.imgslot img { width:100%; height:100%; object-fit:cover; display:block; }
/* Photos dropped straight into a frame (replacing a .imgslot placeholder) */
.ring .photo img, .about-photo .frame img, .masonry .cell img, .testi-top .av img {
  width:100%; height:100%; object-fit:cover; display:block;
}
/* Tall portrait: focus the crop near the top so the face centers in the ring */
.ring .photo img { object-position:50% 34%; }
/* About frame (4:5): anchor toward the top so her face/upper body sits in view */
.about-photo .frame img { object-position:50% 22%; }

/* ---- Nav ---- */
.nav {
  position:sticky; top:0; z-index:100;
  background:rgba(10,10,11,.85);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid #1a1a1d;
}
.nav-inner {
  max-width:1240px; margin:0 auto; padding:20px 36px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand { text-decoration:none; color:var(--accent); font-weight:800; font-size:24px; letter-spacing:-.01em; }
.nav-links { display:flex; gap:34px; align-items:center; }
.nav-links a { text-decoration:none; color:var(--muted-2); font-weight:500; font-size:15px; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--accent); }
.btn-pill {
  text-decoration:none; background:var(--accent); color:var(--bg);
  font-weight:700; font-size:15px; padding:12px 24px; border-radius:30px;
  transition:background .2s, transform .2s;
}
.btn-pill:hover { background:var(--accent-hover); transform:translateY(-1px); }
.nav-toggle { display:none; background:none; border:0; color:var(--text); font-size:26px; cursor:pointer; }

.eyebrow { display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.eyebrow span.line { width:36px; height:2px; background:var(--accent); }
.eyebrow span.txt { color:var(--accent); font-weight:600; font-size:15px; letter-spacing:.04em; }

/* ---- Hero ---- */
.hero { padding:70px 0 90px; }
.hero-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center; }
.hero h1 { font-weight:800; font-size:clamp(52px,8vw,104px); line-height:.95; letter-spacing:-.03em; margin:6px 0 0; }
.hello { font-size:clamp(26px,3vw,38px); font-weight:500; color:var(--muted-2); line-height:1; }
.hero p { font-size:clamp(16px,1.4vw,18px); line-height:1.6; color:var(--muted); max-width:30em; margin:26px 0 30px; }
.cta {
  text-decoration:none; display:inline-flex; align-items:center; gap:9px;
  background:var(--accent); color:var(--bg); font-weight:700; font-size:16px;
  padding:15px 28px; border-radius:32px; transition:background .2s, transform .2s;
}
.cta:hover { background:var(--accent-hover); transform:translateY(-1px); }
.stats { display:flex; gap:44px; margin-top:46px; flex-wrap:wrap; }
.stat .num { font-weight:800; font-size:clamp(32px,4vw,46px); line-height:1; }
.stat .lbl { font-size:14px; color:var(--muted); margin-top:4px; }

.portrait-box { display:flex; justify-content:center; }
.ring { position:relative; width:min(440px,84vw); aspect-ratio:1; }
.ring .outer { position:absolute; inset:4%; border-radius:50%; border:18px solid var(--accent); }
.ring .photo { position:absolute; inset:13%; border-radius:50%; overflow:hidden; background:var(--panel); }
.badge {
  position:absolute; display:flex; align-items:center; gap:9px;
  background:var(--panel); border:1px solid #2a2a2e; border-radius:16px;
  padding:9px 13px; box-shadow:0 12px 26px -14px rgba(0,0,0,.8);
}
.badge .ic { width:30px; height:30px; border-radius:9px; background:var(--accent); color:var(--bg); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:13px; }
.badge .v { font-size:13px; font-weight:600; }
.badge.ig { top:8%; left:-3%; }
.badge.tt { bottom:9%; right:-5%; }

/* ---- Sections ---- */
.section { padding:90px 0; }
.section.soft { background:var(--bg-soft); border-top:1px solid #1a1a1d; border-bottom:1px solid #1a1a1d; }
h2.title { font-weight:800; font-size:clamp(30px,4vw,50px); line-height:1.08; letter-spacing:-.02em; margin:0 0 24px; }

/* About */
.about-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center; }
.about-photo { position:relative; }
.about-photo .accent-block { position:absolute; left:-14px; bottom:-14px; width:62%; height:78%; background:var(--accent); border-radius:18px; z-index:0; }
.about-photo .frame { position:relative; z-index:1; aspect-ratio:4/5; overflow:hidden; border-radius:18px; background:var(--panel); }
.about-grid p { font-size:16px; line-height:1.7; color:var(--muted); margin:0 0 18px; }
.link-pill { text-decoration:none; display:inline-block; background:var(--accent); color:var(--bg); font-weight:700; font-size:15px; padding:13px 26px; border-radius:30px; transition:background .2s, transform .2s; }
.link-pill:hover { background:var(--accent-hover); transform:translateY(-1px); }

/* Strengths */
.skills-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center; }
.skills-grid > div p { font-size:16px; line-height:1.7; color:var(--muted); margin:0; max-width:30em; }
.bar-row { padding:20px 0; border-top:1px solid #1f1f22; }
.bar-row:last-child { border-bottom:1px solid #1f1f22; }
.bar-head { display:flex; justify-content:space-between; margin-bottom:12px; }
.bar-head .name { font-weight:600; font-size:16px; }
.bar-head .pct { font-weight:700; color:var(--accent); }
.bar-track { height:8px; background:#1c1c1f; border-radius:20px; overflow:hidden; }
.bar-fill { height:100%; width:0; background:var(--accent); border-radius:20px; transition:width 1.3s cubic-bezier(.2,.7,.2,1); }

/* Journey */
.journey-head { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:end; margin-bottom:50px; }
.journey-head p { font-size:16px; line-height:1.7; color:var(--muted); margin:0; }
.journey-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.milestone { padding-left:26px; border-left:1px solid #26262a; position:relative; }
.milestone .dot { position:absolute; left:-6px; top:4px; width:11px; height:11px; border-radius:50%; background:var(--accent); }
.milestone .yr { font-size:13px; color:var(--accent); font-weight:600; margin-bottom:6px; }
.milestone .h { font-weight:700; font-size:21px; margin-bottom:10px; }
.milestone p { font-size:15px; line-height:1.6; color:var(--muted); margin:0; }

/* Showcase */
.showcase-head { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:40px; }
.ghost-pill { text-decoration:none; color:var(--text); border:1px solid #2c2c30; font-weight:600; font-size:15px; padding:12px 22px; border-radius:30px; transition:border-color .2s, color .2s; }
.ghost-pill:hover { border-color:var(--accent); color:var(--accent); }
.masonry { columns:3; column-gap:18px; }
.masonry .cell { break-inside:avoid; margin-bottom:18px; overflow:hidden; border-radius:14px; background:var(--panel); }

/* Testimonials */
.testi-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.testi { background:var(--text); color:#15150f; border-radius:22px; padding:34px; }
.testi-top { display:flex; gap:14px; align-items:center; margin-bottom:18px; }
.testi-top .av { width:54px; height:54px; border-radius:50%; overflow:hidden; flex:none; background:#ddd; }
.testi-top .who { font-weight:700; font-size:17px; }
.testi-top .role { font-size:14px; color:#6b6b62; }
.testi p { font-size:16px; line-height:1.65; color:#3a3a32; margin:0; }

/* Contact */
.contact-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:60px; }
.contact-grid h2 { font-weight:800; font-size:clamp(32px,5vw,58px); line-height:1.02; letter-spacing:-.02em; margin:0 0 18px; }
.contact-grid .lead { font-size:16px; line-height:1.7; color:var(--muted); margin:0 0 36px; max-width:30em; }
.info-list { display:flex; flex-direction:column; gap:18px; }
.info-row { display:flex; align-items:center; gap:14px; }
.info-row .ic { width:44px; height:44px; border-radius:12px; background:var(--panel); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--accent); font-weight:800; }
.info-row .k { font-size:13px; color:var(--muted); }
.info-row .vlink { text-decoration:none; color:var(--text); font-weight:600; }
.social-row { display:flex; gap:12px; margin-top:6px; }
.social-row a { text-decoration:none; color:var(--muted-2); border:1px solid var(--border); border-radius:30px; padding:9px 18px; font-size:14px; font-weight:600; transition:border-color .2s, color .2s; }
.social-row a:hover { border-color:var(--accent); color:var(--accent); }

.form { background:var(--bg-soft); border:1px solid #1f1f22; border-radius:22px; padding:32px; }
.field { margin-bottom:18px; }
.field label { display:block; font-size:13px; color:var(--muted); margin-bottom:8px; }
.field input, .field textarea {
  width:100%; box-sizing:border-box; background:var(--panel);
  border:1px solid var(--border); border-radius:12px; padding:14px 16px;
  color:var(--text); font-family:inherit; font-size:15px; outline:none;
  transition:border-color .2s;
}
.field textarea { resize:vertical; }
.field input:focus, .field textarea:focus { border-color:var(--accent); }
.submit { width:100%; background:var(--accent); color:var(--bg); font-family:inherit; font-weight:700; font-size:16px; padding:15px; border:none; border-radius:30px; cursor:pointer; transition:background .2s; }
.submit:hover { background:var(--accent-hover); }
.form-note { margin:14px 0 0; font-size:13px; color:var(--muted); text-align:center; min-height:1em; }

/* Footer */
.footer { background:var(--bg-soft); border-top:1px solid #1a1a1d; }
.footer-inner { max-width:1240px; margin:0 auto; padding:56px 36px 32px; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; }
.footer .logo { color:var(--accent); font-weight:800; font-size:22px; margin-bottom:14px; }
.footer p { font-size:15px; line-height:1.6; color:#8a8b86; margin:0 0 18px; max-width:24em; }
.footer .soc { display:flex; gap:10px; }
.footer .soc a { text-decoration:none; width:38px; height:38px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--muted-2); font-size:13px; font-weight:700; transition:border-color .2s, color .2s; }
.footer .soc a:hover { border-color:var(--accent); color:var(--accent); }
.footer .col-h { font-size:14px; color:#6d6e69; margin-bottom:16px; }
.footer .col-links { display:flex; flex-direction:column; gap:11px; font-size:15px; }
.footer .col-links a { text-decoration:none; color:var(--muted-2); transition:color .2s; }
.footer .col-links a:hover { color:var(--accent); }
.footer .col-info { display:flex; flex-direction:column; gap:11px; font-size:15px; }
.footer .col-info span { color:var(--muted-2); }
.footer .bottom { display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; margin-top:40px; padding-top:24px; border-top:1px solid #1a1a1d; font-size:13px; color:#6d6e69; }

/* Reveal animation */
[data-reveal] { opacity:0; transform:translateY(26px); transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].shown { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity:1; transform:none; transition:none; }
  html { scroll-behavior:auto; }
}

/* ---- Responsive ---- */
@media (max-width:980px) {
  .hero-grid, .about-grid, .skills-grid, .contact-grid { grid-template-columns:1fr; gap:44px; }
  .journey-head { grid-template-columns:1fr; gap:18px; }
  .hero .portrait-box, .about-photo { order:-1; }
  .masonry { columns:2; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:680px) {
  .wrap, .nav-inner, .footer-inner { padding-left:22px; padding-right:22px; }
  .nav-links {
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:rgba(10,10,11,.97); border-bottom:1px solid #1a1a1d;
    padding:8px 22px 18px; display:none;
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 0; width:100%; }
  .nav-toggle { display:block; }
  .nav .btn-pill { display:none; }
  .section { padding:64px 0; }
  .hero { padding:48px 0 64px; }
  .stats { gap:28px; }
  .journey-grid, .testi-grid, .masonry { grid-template-columns:1fr; columns:1; }
  .footer-grid { grid-template-columns:1fr; }
}
