/* ============================================================
   AKSHAY KOKANE PORTFOLIO — V7
   Palette: Rich Dark Brown × Warm Amber × Cream × Gold
   Font: Poppins (all weights)
   ============================================================ */

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

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%;}
body{min-height:100svh;}
img,video,svg{display:block;max-width:100%;height:auto;}
a{text-decoration:none;color:inherit;}
button{font-family:inherit;cursor:pointer;}
ul,ol{list-style:none;}
input,textarea,select{font-family:inherit;font-size:inherit;}

:root {
  /* ── RICH DARK BROWN PALETTE ── */
  --bg:        #1a1008;
  --bg2:       #221508;
  --bg3:       #2a1c0d;
  --bg4:       #321f0d;
  --surface:   rgba(255,220,160,0.04);
  --surface2:  rgba(255,220,160,0.08);

  /* ── AMBER / GOLD ACCENT ── */
  --am:        #f59e0b;
  --am2:       #fbbf24;
  --am3:       #d97706;
  --am4:       #fef3c7;
  --am-glow:   rgba(245,158,11,0.18);
  --am-border: rgba(245,158,11,0.28);

  /* ── CREAM ACCENT ── */
  --cream:     #fdf6ec;
  --cream2:    #faebd7;
  --cream3:    #f5deb3;

  /* ── WARM TONES ── */
  --rust:      #c2410c;
  --rust2:     #ea580c;
  --sienna:    #92400e;
  --copper:    #b45309;

  /* ── TEXT ── */
  --t1:   #fdf6ec;
  --t2:   #d4b896;
  --t3:   #9a7c5e;
  --t4:   #5c4030;

  /* ── BORDERS ── */
  --b1:   rgba(245,158,11,0.12);
  --b2:   rgba(245,158,11,0.22);
  --b3:   rgba(245,158,11,0.06);

  /* ── FONT ── */
  --fp: 'Poppins', system-ui, sans-serif;

  --radius:    4px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --nav-h: 68px;
  --max-w: 1260px;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* ── BODY ── */
body{
  background:var(--bg);
  color:var(--t1);
  font-family:var(--fp);
  font-weight:400;
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:3px;}
::-webkit-scrollbar-track{background:var(--bg2);}
::-webkit-scrollbar-thumb{background:var(--am);border-radius:2px;}
::selection{background:rgba(245,158,11,0.25);color:var(--cream);}
:focus-visible{outline:2px solid var(--am);outline-offset:3px;border-radius:2px;}

/* ── SCROLL PROGRESS ── */
#scroll-progress{position:fixed;top:0;left:0;height:2px;background:linear-gradient(90deg,var(--rust2),var(--am),var(--am2),var(--cream3));z-index:9999;width:0%;transition:width 0.08s linear;}

/* ── SKIP LINK ── */
.skip-link{position:absolute;top:-100px;left:1rem;padding:.5rem 1.2rem;background:var(--am);color:var(--bg);font-weight:700;font-size:.8rem;border-radius:var(--radius-full);transition:top .2s;z-index:10000;}
.skip-link:focus{top:.75rem;}

/* ================================================================
   NAV
   ================================================================ */
.navbar{
  position:fixed;top:0;left:0;right:0;
  height:var(--nav-h);z-index:800;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5vw;
  transition:background .35s var(--ease),border-color .35s var(--ease);
  border-bottom:1px solid transparent;
}
.navbar.scrolled{
  background:rgba(26,16,8,0.95);
  backdrop-filter:blur(24px) saturate(180%);
  border-color:var(--b1);
  box-shadow:0 1px 48px rgba(245,158,11,0.06);
}
.nav-logo{
  display:flex;align-items:center;gap:.6rem;
  font-family:var(--fp);font-size:1.15rem;font-weight:700;
  color:var(--t1);letter-spacing:-.01em;transition:opacity .25s;
}
.nav-logo:hover{opacity:.75;}
.nav-logo span{color:var(--am);}
.nav-links{display:flex;align-items:center;gap:.15rem;}
.nav-links a{
  font-family:var(--fp);font-size:.7rem;letter-spacing:.08em;
  text-transform:uppercase;color:var(--t3);font-weight:500;
  padding:.5rem 1rem;border-radius:var(--radius-full);
  position:relative;white-space:nowrap;
  transition:color .25s,background .25s;
}
.nav-links a:hover{color:var(--t1);background:var(--surface2);}
.nav-links a.active{color:var(--am);}
.nav-links a.active::after{
  content:'';position:absolute;bottom:4px;left:50%;
  transform:translateX(-50%);width:3px;height:3px;
  background:var(--am);border-radius:50%;
}
.nav-cta{
  padding:.5rem 1.4rem !important;
  background:var(--am) !important;color:var(--bg) !important;
  border-radius:var(--radius-full) !important;
  font-family:var(--fp) !important;font-weight:700 !important;
  font-size:.7rem !important;letter-spacing:.06em !important;
  transition:all .25s !important;
}
.nav-cta:hover{
  background:var(--am2) !important;
  transform:translateY(-1px) !important;
  box-shadow:0 6px 24px var(--am-glow) !important;
}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;padding:.5rem;cursor:pointer;}
.hamburger span{display:block;width:20px;height:1.5px;background:var(--t2);border-radius:2px;transition:all .3s;}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}
.mobile-nav{
  display:none;position:fixed;top:var(--nav-h);left:0;right:0;
  background:var(--bg2);border-bottom:1px solid var(--b1);
  padding:1.2rem 5vw;flex-direction:column;gap:.3rem;z-index:799;
  box-shadow:0 24px 48px rgba(0,0,0,.6);
}
.mobile-nav a{font-family:var(--fp);font-size:.78rem;letter-spacing:.07em;text-transform:uppercase;color:var(--t3);padding:.8rem 0;border-bottom:1px solid var(--b3);font-weight:500;transition:color .2s;}
.mobile-nav a:hover{color:var(--am);}
.mobile-nav a:last-child{border-bottom:none;}
.mobile-nav.open{display:flex;}

/* ================================================================
   HERO
   ================================================================ */
.hero{
  min-height:100vh;
  display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr auto;
  padding-top:var(--nav-h);
  max-width:var(--max-w);margin:0 auto;
  padding-left:5vw;padding-right:5vw;
  gap:0 5rem;align-items:center;position:relative;
}
/* Warm radial glow */
.hero::before{
  content:'';position:fixed;inset:0;pointer-events:none;z-index:0;
  background:
    radial-gradient(ellipse 60% 50% at 65% 35%,rgba(245,158,11,0.07) 0%,transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%,rgba(194,65,12,0.05) 0%,transparent 60%);
}
.hero-bg-shape{display:none;}
.hero-left{
  grid-column:1;grid-row:1;
  display:flex;flex-direction:column;justify-content:center;
  padding:4rem 0;position:relative;z-index:1;
}
.hero-tag{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--fp);font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--am);background:var(--am-glow);
  border:1px solid var(--am-border);
  padding:.44rem 1.1rem;border-radius:var(--radius-full);
  margin-bottom:2rem;width:fit-content;font-weight:600;
}
.hero-tag::before{
  content:'';width:7px;height:7px;background:var(--am);
  border-radius:50%;animation:glow 2s infinite;
  box-shadow:0 0 8px var(--am);
}
@keyframes glow{0%,100%{opacity:1;box-shadow:0 0 8px var(--am);}50%{opacity:.4;box-shadow:0 0 3px var(--am);}}

.hero-name{
  font-family:var(--fp);
  font-size:clamp(3.2rem,6.2vw,5.8rem);
  font-weight:800;line-height:.98;
  letter-spacing:-.03em;
  margin-bottom:1.2rem;
}
.hero-name strong{display:block;color:var(--cream);font-weight:800;}
.hero-name em{
  display:block;font-style:italic;font-weight:300;
  color:var(--am);letter-spacing:.01em;
  font-size:0.72em;
}

.hero-role{
  font-family:var(--fp);font-size:.68rem;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--t3);margin-bottom:1.4rem;font-weight:500;
}
.hero-bio{
  font-size:.98rem;line-height:1.88;
  color:var(--t2);max-width:460px;margin-bottom:2.4rem;
  font-weight:400;
}
.hero-bio strong{color:var(--cream);font-weight:600;}
.hero-cta{display:flex;gap:.8rem;flex-wrap:wrap;}

/* Hero right */
.hero-right{grid-column:2;grid-row:1;display:flex;align-items:center;justify-content:center;position:relative;z-index:1;}
.hero-visual{width:100%;max-width:400px;}
.hero-card-stack{display:flex;flex-direction:column;gap:.9rem;}
.h-card{
  background:var(--bg2);border:1px solid var(--b1);
  border-radius:var(--radius-lg);padding:1.4rem 1.5rem;
  display:flex;align-items:center;gap:1rem;
  transition:border-color .3s,box-shadow .3s;
}
.h-card:hover{border-color:var(--am-border);box-shadow:0 4px 24px var(--am-glow);}
.h-card-main{border-left:2px solid var(--am);}
.h-card-floating{background:linear-gradient(135deg,rgba(245,158,11,.1),rgba(245,158,11,.03));border-color:var(--am-border);}
.h-card-sm{background:var(--bg3);}
.f-num{font-family:var(--fp);font-size:2rem;font-weight:800;color:var(--am);line-height:1;}
.f-label{font-family:var(--fp);font-size:.6rem;letter-spacing:.1em;text-transform:uppercase;color:var(--t3);margin-top:.2rem;font-weight:500;}
.h-status{display:flex;align-items:center;gap:.5rem;font-family:var(--fp);font-size:.88rem;font-weight:700;color:var(--cream);}
.h-status-dot{width:7px;height:7px;background:var(--am);border-radius:50%;flex-shrink:0;animation:glow 2s infinite;}

/* Hero stats */
.hero-stats{
  grid-column:1/-1;grid-row:2;
  display:flex;gap:0;
  border:1px solid var(--b1);border-radius:var(--radius-lg);
  overflow:hidden;background:var(--b1);margin-bottom:4rem;
}
.h-stat{flex:1;background:var(--bg2);padding:1.6rem;text-align:center;}
.h-stat-n{display:block;font-family:var(--fp);font-size:2.4rem;font-weight:800;color:var(--am);line-height:1;margin-bottom:.3rem;}
.h-stat-l{font-family:var(--fp);font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;color:var(--t3);font-weight:500;}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-section{overflow:hidden;background:var(--bg3);padding:1.1rem 0;border-top:1px solid var(--b2);border-bottom:1px solid var(--b2);}
.marquee-track{display:flex;animation:marquee 32s linear infinite;width:max-content;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.m-item{font-family:var(--fp);font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--t2);padding:0 2rem;white-space:nowrap;font-weight:500;}
.m-item b{color:var(--am);margin-left:.4rem;font-size:.8rem;}

/* ================================================================
   SECTIONS
   ================================================================ */
.section-full{width:100%;}
.section-full.section-white{background:var(--bg2);}
.section-full.section-alt{background:var(--bg3);}
.section-full.section-ink{background:var(--bg);}
.section{max-width:var(--max-w);margin:0 auto;padding:5rem 5vw;}

.s-eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--fp);font-size:.62rem;letter-spacing:.18em;
  text-transform:uppercase;color:var(--am);margin-bottom:1rem;font-weight:600;
}
.s-eyebrow::before{content:'';width:18px;height:1px;background:var(--am);}

.s-title{
  font-family:var(--fp);
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:800;line-height:1.08;
  letter-spacing:-.025em;
  margin-bottom:1.5rem;color:var(--cream);
}
.s-title em{font-style:italic;color:var(--am);font-weight:600;}
.s-desc{font-size:.95rem;line-height:1.9;color:var(--t2);max-width:640px;font-weight:400;}

.two-col-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;}
.two-col-grid--wide{grid-template-columns:1.3fr .7fr;}
.two-col-stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--b1);}

/* ================================================================
   SERVICES
   ================================================================ */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--b1);margin-top:3rem;}
.svc{background:var(--bg2);padding:2.5rem;position:relative;overflow:hidden;transition:background .3s;}
.svc:hover{background:var(--bg3);}
.svc[data-n]::before{content:attr(data-n);position:absolute;top:1.5rem;right:1.5rem;font-family:var(--fp);font-size:.58rem;letter-spacing:.12em;color:var(--t4);font-weight:600;}
.svc-ico{font-size:1.6rem;margin-bottom:1.1rem;}
.svc-title{font-family:var(--fp);font-size:1.02rem;font-weight:700;margin-bottom:.6rem;color:var(--cream);letter-spacing:-.01em;}
.svc-body{font-size:.82rem;line-height:1.8;color:var(--t2);font-weight:400;}
.svc-line{position:absolute;bottom:0;left:0;width:0;height:2px;background:linear-gradient(90deg,var(--rust2),var(--am),var(--am2));transition:width .4s var(--ease);}
.svc:hover .svc-line{width:100%;}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--fp);font-size:.7rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;
  padding:.72rem 1.7rem;border-radius:var(--radius-full);
  border:1px solid transparent;
  transition:all .25s var(--ease);cursor:pointer;
}
.btn-icon{transition:transform .18s;}
.btn:hover .btn-icon{transform:translateX(3px);}
.btn-primary{background:var(--am);color:var(--bg);border-color:var(--am);}
.btn-primary:hover{background:var(--am2);border-color:var(--am2);transform:translateY(-2px);box-shadow:0 8px 28px var(--am-glow);}
.btn-outline{background:transparent;color:var(--t2);border-color:var(--b2);}
.btn-outline:hover{border-color:var(--am);color:var(--am);transform:translateY(-1px);}
.btn-ember{background:var(--rust2);color:var(--cream);border-color:var(--rust2);}
.btn-ember:hover{background:var(--rust);transform:translateY(-1px);box-shadow:0 6px 20px rgba(194,65,12,.3);}
.btn-navy{background:var(--bg3);color:var(--t2);border-color:var(--b2);}

/* ================================================================
   CHIPS & PILLS
   ================================================================ */
.chip{display:inline-block;font-family:var(--fp);font-size:.58rem;letter-spacing:.1em;text-transform:uppercase;padding:.28rem .72rem;border-radius:var(--radius-full);background:var(--am-glow);color:var(--am);border:1px solid var(--am-border);font-weight:600;}
.pill{display:inline-block;font-size:.72rem;padding:.24rem .72rem;border-radius:var(--radius-full);background:var(--surface);color:var(--t2);border:1px solid var(--b1);font-weight:400;}
.pill.hot{background:var(--am-glow);color:var(--am2);border-color:var(--am-border);font-weight:500;}
.pill.gold{background:rgba(194,65,12,.12);color:var(--rust2);border-color:rgba(194,65,12,.25);}

/* ================================================================
   EXPERIENCE TABS
   ================================================================ */
.exp-wrap{margin-top:2rem;}
.exp-tabs{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:2rem;border-bottom:1px solid var(--b1);padding-bottom:1rem;}
.exp-tab{
  font-family:var(--fp);font-size:.66rem;letter-spacing:.08em;text-transform:uppercase;
  padding:.45rem 1.1rem;border-radius:var(--radius-full);
  border:1px solid var(--b1);background:transparent;
  color:var(--t3);cursor:pointer;transition:all .25s;font-weight:600;
}
.exp-tab.active,.exp-tab:hover{background:var(--am);color:var(--bg);border-color:var(--am);}
.exp-panel{display:none;}
.exp-panel.active{display:block;}
.exp-date{font-family:var(--fp);font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;color:var(--am);margin-bottom:.5rem;font-weight:600;}
.exp-co{font-family:var(--fp);font-size:1.25rem;font-weight:700;margin-bottom:.2rem;color:var(--cream);}
.exp-role{font-size:.82rem;color:var(--t3);margin-bottom:1.2rem;font-weight:400;}
.exp-list{display:flex;flex-direction:column;gap:.65rem;}
.exp-list li{display:flex;gap:.8rem;font-size:.86rem;color:var(--t2);line-height:1.7;font-weight:400;}
.exp-list li::before{content:'→';color:var(--am);flex-shrink:0;font-weight:700;}

/* ================================================================
   PROJECTS / PROJ LIST
   ================================================================ */
.proj-list{margin-top:2.5rem;display:flex;flex-direction:column;border:1px solid var(--b1);border-radius:var(--radius-lg);overflow:hidden;}
.proj-item{display:grid;grid-template-columns:3rem 1fr auto;gap:1.5rem;padding:1.8rem 2rem;border-bottom:1px solid var(--b1);align-items:start;transition:background .25s;cursor:pointer;}
.proj-item:last-child{border-bottom:none;}
.proj-item:hover{background:var(--surface);}
.proj-n{font-family:var(--fp);font-size:1.8rem;font-weight:800;color:var(--t4);line-height:1;}
.proj-item:hover .proj-n{color:var(--am);}
.proj-chips{display:flex;gap:.35rem;flex-wrap:wrap;margin-bottom:.55rem;}
.proj-name{font-family:var(--fp);font-size:1.02rem;font-weight:700;margin-bottom:.35rem;color:var(--cream);}
.proj-brief{font-size:.82rem;color:var(--t2);line-height:1.7;font-weight:400;}
.proj-arrow{font-size:1.2rem;color:var(--t4);transition:color .25s,transform .2s;}
.proj-item:hover .proj-arrow{color:var(--am);transform:translateX(4px);}

/* ================================================================
   DASHBOARD CARDS V2
   ================================================================ */
.dash-grid2{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:1px;background:var(--b1);
  border:1px solid var(--b1);border-radius:var(--radius-lg);
  overflow:hidden;margin-top:.5rem;
}
.dc2{
  background:var(--bg2);padding:1.8rem;
  position:relative;overflow:hidden;transition:background .25s;
}
.dc2:hover{background:var(--bg3);}
.dc2::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;transition:width .35s var(--ease);}
.dc2:hover::after{width:100%;}
.dc2-teal::after{background:var(--am);}
.dc2-gold::after{background:var(--rust2);}
.dc2-coral::after{background:var(--cream3);}
.dc2-purple::after{background:var(--copper);}
.dc2-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:.9rem;}
.dc2-num{font-family:var(--fp);font-size:.55rem;color:var(--t4);letter-spacing:.08em;font-weight:600;}
.dc2-ico{font-size:1.5rem;}
.dc2-cat{font-family:var(--fp);font-size:.56rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:.55rem;font-weight:600;}
.dc2-teal .dc2-cat{color:var(--am);}
.dc2-gold .dc2-cat{color:var(--rust2);}
.dc2-coral .dc2-cat{color:var(--cream3);}
.dc2-purple .dc2-cat{color:var(--copper);}
.dc2-title{font-family:var(--fp);font-size:.95rem;font-weight:700;color:var(--cream);margin-bottom:.55rem;line-height:1.3;}
.dc2-desc{font-size:.76rem;color:var(--t2);line-height:1.7;margin-bottom:.8rem;font-weight:400;}
.dc2-tools{display:flex;flex-wrap:wrap;gap:.3rem;}
.dc2-tool{font-family:var(--fp);font-size:.52rem;padding:2px 8px;border-radius:var(--radius-full);background:var(--surface);color:var(--t3);border:1px solid var(--b1);font-weight:500;}

/* Filter buttons */
.pf-btn{
  font-family:var(--fp);font-size:.65rem;letter-spacing:.08em;text-transform:uppercase;
  padding:.42rem 1.05rem;border-radius:var(--radius-full);
  border:1px solid var(--b1);background:transparent;
  color:var(--t3);cursor:pointer;transition:all .22s;font-weight:600;
}
.pf-btn:hover,.pf-btn.active{background:var(--am);color:var(--bg);border-color:var(--am);}

/* ================================================================
   SKILLS
   ================================================================ */
.skills-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(255px,1fr));gap:1.2rem;margin-top:2.5rem;}
.skill-cat{background:var(--bg2);border:1px solid var(--b1);padding:1.8rem;border-radius:var(--radius-lg);transition:border-color .25s,box-shadow .25s;}
.skill-cat:hover{border-color:var(--am-border);box-shadow:0 0 0 1px var(--am-glow),0 8px 32px rgba(0,0,0,.4);}
.skill-cat-h{font-family:var(--fp);font-size:.98rem;font-weight:700;margin-bottom:.3rem;color:var(--cream);}
.skill-cat-sub{font-family:var(--fp);font-size:.68rem;color:var(--t3);margin-bottom:.9rem;font-weight:400;}
.pill-row{display:flex;flex-wrap:wrap;gap:.35rem;}

/* ================================================================
   PROFICIENCY BARS
   ================================================================ */
.p-bars{display:flex;flex-direction:column;gap:1.1rem;}
.p-row{display:grid;grid-template-columns:1fr 3fr auto;gap:.8rem;align-items:center;}
.p-label{font-size:.75rem;color:var(--t2);font-weight:400;}
.p-track{height:3px;background:var(--surface2);border-radius:2px;overflow:hidden;}
.p-fill{height:100%;width:0;background:linear-gradient(90deg,var(--copper),var(--am));border-radius:2px;transition:width 1.2s var(--ease);}
.p-fill.alt{background:linear-gradient(90deg,var(--rust),var(--rust2));}
.p-pct{font-family:var(--fp);font-size:.6rem;color:var(--t3);font-weight:500;}

/* ================================================================
   PAGE HEADER
   ================================================================ */
.pg-hd{
  background:var(--bg);padding:8rem 5vw 5rem;
  position:relative;overflow:hidden;
  border-bottom:1px solid var(--b1);
}
.pg-hd::before{
  content:'';position:absolute;top:-20%;right:-5%;
  width:480px;height:480px;border-radius:50%;
  background:radial-gradient(circle,var(--am-glow) 0%,transparent 65%);
  pointer-events:none;
}
.pg-hd::after{
  content:'';position:absolute;bottom:-20%;left:-5%;
  width:320px;height:320px;border-radius:50%;
  background:radial-gradient(circle,rgba(194,65,12,0.06) 0%,transparent 65%);
  pointer-events:none;
}
.pg-hd-inner{max-width:var(--max-w);margin:0 auto;position:relative;z-index:1;}
.pg-hd h1{font-family:var(--fp);font-size:clamp(2.8rem,5vw,5rem);font-weight:800;color:var(--cream);line-height:1.02;letter-spacing:-.03em;margin-bottom:1.2rem;}
.pg-hd h1 em{font-style:italic;color:var(--am);font-weight:600;}
.pg-hd p{font-size:.95rem;color:var(--t2);max-width:520px;line-height:1.8;font-weight:400;}
.pg-hd .s-eyebrow{color:var(--am);}

/* ================================================================
   CERT CARDS
   ================================================================ */
.cert-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(255px,1fr));gap:1.1rem;margin-top:2.5rem;}
.cert-card{
  background:var(--bg2);border:1px solid var(--b1);
  border-radius:var(--radius-lg);overflow:hidden;
  display:block;transition:all .25s;
}
.cert-card:hover{border-color:var(--am-border);transform:translateY(-3px);box-shadow:0 12px 40px rgba(0,0,0,.4),0 0 0 1px var(--am-glow);}
.cert-card-img{width:100%;height:130px;object-fit:cover;object-position:top;}
.cert-card-body{padding:1.1rem 1.2rem;}
.cert-card-name{font-family:var(--fp);font-size:.9rem;font-weight:700;color:var(--cream);margin-bottom:.3rem;line-height:1.35;}
.cert-card-issuer{font-family:var(--fp);font-size:.62rem;color:var(--t3);font-weight:400;}
.cert-card-link{font-family:var(--fp);font-size:.6rem;color:var(--am);margin-top:.5rem;display:block;font-weight:600;}
.cert-badge-new{display:inline-block;background:var(--am);color:var(--bg);font-family:var(--fp);font-size:.56rem;letter-spacing:.08em;font-weight:700;padding:2px 9px;border-radius:var(--radius-full);margin-top:.4rem;}

/* ================================================================
   FOOTER
   ================================================================ */
footer{background:var(--bg2);border-top:1px solid var(--b1);}
.footer-inner{max-width:var(--max-w);margin:0 auto;padding:4rem 5vw 2rem;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem;}
.footer-brand p{font-size:.82rem;color:var(--t3);line-height:1.8;margin:.8rem 0 1.2rem;font-weight:400;}
.f-logo{display:flex;align-items:center;gap:.5rem;font-family:var(--fp);font-size:1.05rem;font-weight:700;color:var(--t1);}
.f-logo span{color:var(--am);}
.f-badge{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--fp);font-size:.62rem;letter-spacing:.08em;text-transform:uppercase;color:var(--am);background:var(--am-glow);padding:.3rem .9rem;border-radius:var(--radius-full);border:1px solid var(--am-border);font-weight:600;}
.f-dot{width:5px;height:5px;background:var(--am);border-radius:50%;animation:glow 2s infinite;}
.footer-col h4{font-family:var(--fp);font-size:.6rem;letter-spacing:.16em;text-transform:uppercase;color:var(--t4);margin-bottom:.9rem;font-weight:600;}
.footer-col li{margin-bottom:.5rem;}
.footer-col a{font-size:.82rem;color:var(--t3);transition:color .2s;font-weight:400;}
.footer-col a:hover{color:var(--am);}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;padding-top:2rem;border-top:1px solid var(--b1);font-family:var(--fp);font-size:.62rem;color:var(--t4);letter-spacing:.06em;font-weight:400;}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s var(--ease),transform .6s var(--ease);}
.reveal.visible{opacity:1;transform:translateY(0);}
.stagger>.reveal:nth-child(1){transition-delay:.05s;}
.stagger>.reveal:nth-child(2){transition-delay:.1s;}
.stagger>.reveal:nth-child(3){transition-delay:.15s;}
.stagger>.reveal:nth-child(4){transition-delay:.2s;}
.stagger>.reveal:nth-child(5){transition-delay:.25s;}
.stagger>.reveal:nth-child(6){transition-delay:.3s;}
@keyframes slideInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}


/* ================================================================
   WHITE / CREAM SECTIONS — Premium contrast sections
   ================================================================ */
.section-full.section-light {
  background: #fffdf9;
}
.section-full.section-cream {
  background: var(--cream);
}

/* Text overrides inside light sections */
.section-light .s-title,
.section-cream .s-title {
  color: var(--bg);
}
.section-light .s-title em,
.section-cream .s-title em {
  color: var(--am3);
}
.section-light .s-eyebrow,
.section-cream .s-eyebrow {
  color: var(--am3);
}
.section-light .s-eyebrow::before,
.section-cream .s-eyebrow::before {
  background: var(--am3);
}
.section-light .s-desc,
.section-cream .s-desc {
  color: #5c4030;
}

/* Cards inside light sections */
.section-light .skill-cat,
.section-cream .skill-cat {
  background: #fff;
  border-color: rgba(92,64,48,0.12);
}
.section-light .skill-cat:hover,
.section-cream .skill-cat:hover {
  border-color: var(--am3);
  box-shadow: 0 8px 32px rgba(92,64,48,0.1);
}
.section-light .skill-cat-h,
.section-cream .skill-cat-h {
  color: var(--bg);
}
.section-light .skill-cat-sub,
.section-cream .skill-cat-sub {
  color: var(--t3);
}
.section-light .pill {
  background: rgba(92,64,48,0.07);
  color: var(--bg3);
  border-color: rgba(92,64,48,0.15);
}
.section-light .pill.hot {
  background: var(--am-glow);
  color: var(--am3);
  border-color: var(--am-border);
}

/* Service cards in light sections */
.section-light .svc,
.section-cream .svc {
  background: #fff;
}
.section-light .svc:hover,
.section-cream .svc:hover {
  background: #fdf6ec;
}
.section-light .svc-title,
.section-cream .svc-title {
  color: var(--bg);
}
.section-light .svc-body,
.section-cream .svc-body {
  color: #6b4c36;
}
.section-light .services-grid,
.section-cream .services-grid {
  background: rgba(92,64,48,0.1);
}
.section-light [data-n]::before,
.section-cream [data-n]::before {
  color: rgba(92,64,48,0.25);
}

/* Certs in light sections */
.section-light .cert-card,
.section-cream .cert-card {
  background: #fff;
  border-color: rgba(92,64,48,0.12);
}
.section-light .cert-card:hover,
.section-cream .cert-card:hover {
  border-color: var(--am3);
  box-shadow: 0 12px 40px rgba(92,64,48,0.12);
}
.section-light .cert-card-name,
.section-cream .cert-card-name {
  color: var(--bg);
}
.section-light .cert-card-issuer,
.section-cream .cert-card-issuer {
  color: #7a5c44;
}

/* Proficiency bars in light sections */
.section-light .p-label,
.section-cream .p-label {
  color: #5c4030;
}
.section-light .p-track,
.section-cream .p-track {
  background: rgba(92,64,48,0.1);
}
.section-light .p-pct,
.section-cream .p-pct {
  color: #7a5c44;
}

/* Two col cards in light sections */
.section-light .h-card,
.section-cream .h-card {
  background: #fff;
  border-color: rgba(92,64,48,0.14);
}
.section-light .exp-tabs,
.section-cream .exp-tabs {
  border-color: rgba(92,64,48,0.15);
}
.section-light .exp-tab,
.section-cream .exp-tab {
  border-color: rgba(92,64,48,0.15);
  color: #7a5c44;
}
.section-light .exp-list li,
.section-cream .exp-list li {
  color: #5c4030;
}
.section-light .exp-co,
.section-cream .exp-co {
  color: var(--bg);
}

/* Proj items in light */
.section-light .proj-list,
.section-cream .proj-list {
  border-color: rgba(92,64,48,0.12);
}
.section-light .proj-item,
.section-cream .proj-item {
  border-color: rgba(92,64,48,0.08);
}
.section-light .proj-item:hover,
.section-cream .proj-item:hover {
  background: #fdf6ec;
}
.section-light .proj-name,
.section-cream .proj-name {
  color: var(--bg);
}
.section-light .proj-brief,
.section-cream .proj-brief {
  color: #6b4c36;
}
.section-light .proj-n,
.section-cream .proj-n {
  color: rgba(92,64,48,0.2);
}
.section-light .proj-item:hover .proj-n,
.section-cream .proj-item:hover .proj-n {
  color: var(--am3);
}

/* ── RESUME DOWNLOAD BUTTON ── */
.btn-resume {
  background: transparent;
  color: var(--am);
  border: 1.5px solid var(--am-border);
  font-family: var(--fp);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .72rem 1.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: all .25s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-resume::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--am-glow);
  opacity: 0;
  transition: opacity .25s;
}
.btn-resume:hover {
  border-color: var(--am);
  color: var(--am2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--am-glow);
}
.btn-resume:hover::before { opacity: 1; }

/* Resume button inside dark CTA band */
.btn-resume-dark {
  background: rgba(245,158,11,0.1);
  color: var(--am2);
  border: 1.5px solid var(--am-border);
  font-family: var(--fp);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .72rem 1.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.btn-resume-dark:hover {
  background: var(--am);
  color: var(--bg);
  border-color: var(--am);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--am-glow);
}

/* Footer download link */
.footer-col a.resume-link {
  color: var(--am);
  font-weight: 600;
}
.footer-col a.resume-link:hover {
  color: var(--am2);
}
