/* ─────────────────────────────────────────
   TOKENS & RESET
───────────────────────────────────────── */
:root {
  --navy:       #1b3a2d;
  --navy-mid:   #2a5740;
  --navy-light: #3a7355;
  --gold:       #c49a3c;
  --gold-light: #e0b85c;
  --white:      #ffffff;
  --off-white:  #0c1910;
  --text:       #c8dfd0;
  --text-muted: #6a9478;
  --border:     #1d3828;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,.55);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.7);

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

/* ─────────────────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1000;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─────────────────────────────────────────
   CUSTOM SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 4px;
  border: 2px solid var(--off-white);
}
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(27,58,45,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(27,58,45,.98);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  white-space: nowrap;
  margin-right: auto;
  letter-spacing: .02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-resume {
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85) !important;
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}
.nav-links .nav-resume:hover {
  border-color: rgba(255,255,255,.7);
  color: var(--white) !important;
}
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
@keyframes hero-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(4%, 3%) scale(1.05); }
  66%  { transform: translate(-3%, 5%) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}

#hero {
  min-height: 52vh;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(58,115,85,.5) 0%, transparent 70%),
    linear-gradient(160deg, var(--navy) 0%, #0f2318 60%, #162c20 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 2rem 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* animated aurora blob */
#hero::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 55% 45% at 60% 55%, rgba(58,115,85,.35) 0%, transparent 65%),
              radial-gradient(ellipse 40% 50% at 20% 70%, rgba(196,154,60,.12) 0%, transparent 60%);
  animation: hero-drift 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* subtle dot-grid texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

/* hero wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 800px;
}

/* photo */
.hero-photo-wrap { flex-shrink: 0; }
.hero-photo-ring {
  width: 336px;
  height: 336px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--navy-light) 100%);
  box-shadow: 0 0 0 2px rgba(196,154,60,.25), var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.initials-fallback {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}

/* open to work badge */
.open-to-work-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: .75rem;
  backdrop-filter: blur(6px);
}
.otw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #4ade80; }
  50%       { opacity: .6; box-shadow: 0 0 12px #4ade80; }
}

/* hero availability chips */
.hero-availability {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .5rem;
  margin: .6rem 0 1.1rem;
}
.avail-chip {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px;
  border: 1.5px solid var(--navy-light);
  color: var(--navy-light);
  background: transparent;
}
.avail-group {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.avail-divider {
  color: var(--muted);
  font-size: .85rem;
  margin: 0 .1rem;
}
.avail-location {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}

/* hero CTAs */
.hero-ctas {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-cta-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  padding: .7rem 1.75rem;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}
.hero-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: .95rem;
  padding: .7rem 1.75rem;
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.hero-cta-secondary:hover {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  transform: translateY(-2px);
}

/* text */
.hero-text { color: var(--white); }
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.hero-title {
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,.7);
  margin-top: .6rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-top: 1.75rem;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
}
.contact-chip:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(196,154,60,.6);
  color: var(--white);
  transform: translateY(-2px);
}



/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--white); }

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--navy);
  margin-bottom: .5rem;
  position: relative;
  display: inline-block;
}
.section-heading::after {
  content: '';
  display: block;
  height: 3px;
  width: 48px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: .4rem;
}
.section-subheading {
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: .75rem;
  margin-bottom: 2.5rem;
}

/* ─────────────────────────────────────────
   SUMMARY STATS
───────────────────────────────────────── */
.summary-text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.philosophy-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0 1.75rem;
}
.philosophy-callout p {
  font-size: .97rem;
  line-height: 1.7;
  margin: 0;
  transition: opacity .6s ease;
}
.philosophy-callout p.fading {
  opacity: 0;
}
.philosophy-callout strong { color: var(--gold-light); }
.philosophy-icon {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--gold-light);
  opacity: .9;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─────────────────────────────────────────
   SPOTLIGHT CASE STUDIES
───────────────────────────────────────── */
.spotlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.spotlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.spotlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.spotlight-co {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .65rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.spotlight-co.amazon  { background: #fff7ed; color: #b45309; }
.spotlight-co.apple   { background: #f5f5f7; color: #1d1d1f; }
.spotlight-co.chewy   { background: #f0fdf4; color: #166534; }
.spotlight-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.spotlight-desc {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   TIMELINE
───────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2rem;
}
/* vertical spine */
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--border) 100%);
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.25rem;
}
.timeline-item:last-child { margin-bottom: 0; }

/* spine dot */
.timeline-spine-dot {
  position: absolute;
  left: -2.45rem;
  top: 1.4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--border);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  z-index: 1;
}
.timeline-item.open .timeline-spine-dot,
.timeline-item:hover .timeline-spine-dot {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.2);
}

/* card header */
.timeline-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  user-select: none;
}
.timeline-header:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}
.timeline-item.open .timeline-header {
  border-color: var(--gold);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.timeline-date {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* company badges */
.company-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .7rem;
  border-radius: 100px;
}
.company-badge.chewy       { background: #eaf4ff; color: #0070c0; }
.company-badge.amazon      { background: #fff5e6; color: #c45000; }
.company-badge.apple       { background: #f0f0f0; color: #333; }
.company-badge.google      { background: #e8f5e9; color: #1a7340; }
.company-badge.consulting  { background: #f3f0ff; color: #6d28d9; }

.timeline-role {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.timeline-preview {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.timeline-toggle-icon {
  position: absolute;
  right: 1.4rem;
  top: 1.3rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
  transition: transform var(--transition), color var(--transition);
}
.timeline-item.open .timeline-toggle-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

/* expanded body */
.timeline-body {
  display: none;
  background: var(--off-white);
  border: 1px solid var(--gold);
  border-top: none;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  animation: slideDown .3s cubic-bezier(.4,0,.2,1);
}
.timeline-item.open .timeline-body { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.achievement-list li {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .93rem;
  line-height: 1.65;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.achievement-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.achievement-list li p {
  margin: 0;
}
.achievement-tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .18rem .6rem;
  border-radius: 100px;
  white-space: nowrap;
  align-self: flex-start;
}
/* tag colors */
.achievement-tag.analytics    { background: #e8f0fe; color: #1a56cc; }
.achievement-tag.ai           { background: #f3e8ff; color: #6d28d9; }
.achievement-tag.strategy     { background: #fff7ed; color: #c2410c; }
.achievement-tag.security     { background: #fef2f2; color: #b91c1c; }
.achievement-tag.compliance   { background: #f0fdf4; color: #166534; }
.achievement-tag.people       { background: #fdf4ff; color: #7e22ce; }
.achievement-tag.ml           { background: #eff6ff; color: #1d4ed8; }
.achievement-tag.supply-chain { background: #fff7ed; color: #b45309; }
.achievement-tag.platform     { background: #f0f9ff; color: #0369a1; }
.achievement-tag.cost         { background: #f0fdf4; color: #15803d; }
.achievement-tag.crisis       { background: #fff1f2; color: #be123c; }
.achievement-tag.launch       { background: #fefce8; color: #854d0e; }
.achievement-tag.partnerships { background: #f0fdf4; color: #166534; }
.achievement-tag.consulting   { background: #f3f0ff; color: #6d28d9; }

/* ─────────────────────────────────────────
   COMMUNITY
───────────────────────────────────────── */
.community-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.community-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.community-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.community-org  { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.community-date { font-size: .82rem; color: var(--text-muted); margin: .25rem 0 .6rem; }
.community-desc { font-size: .92rem; color: var(--text); line-height: 1.65; }
.community-card + .community-card { margin-top: 1rem; }
.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  padding: .4rem .9rem;
  background: #1DB954;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 100px;
  transition: opacity var(--transition), transform var(--transition);
}
.spotify-link:hover { opacity: .85; transform: translateY(-1px); }

/* ── Music Banner ── */
.music-banner {
  background: var(--navy);
  padding: 2rem 1.5rem;
}
.music-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.music-banner-text {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.music-banner-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.music-banner-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.music-banner-link {
  flex-shrink: 0;
  margin-top: 0;
}

/* ─────────────────────────────────────────
   WHAT I BRING
───────────────────────────────────────── */
.wib-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.wib-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.wib-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.wib-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.wib-icon--build  { background: rgba(27,58,45,.1);  color: var(--navy); }
.wib-icon--clarity { background: rgba(196,154,60,.12); color: var(--gold); }
.wib-icon--people  { background: rgba(58,115,85,.12); color: var(--navy-light); }
.wib-icon--ai      { background: rgba(224,184,92,.15); color: #8a6820; }
.wib-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.wib-desc {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   SKILLS
───────────────────────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.skill-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.skill-group:nth-child(2) { border-top-color: var(--gold); }
.skill-group:nth-child(3) { border-top-color: var(--navy-mid); }
/* Writing & Communication — full-width featured card */
.skill-group:nth-child(4) {
  grid-column: 1 / -1;
  border-top-color: var(--gold);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  padding: 0;
}
.skill-group:nth-child(4) .skill-group-title {
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .6rem;
  width: 210px;
  padding: 1.5rem;
  margin-bottom: 0;
  border-bottom: none;
  border-right: 1px solid var(--border);
}
.skill-group:nth-child(4) .skill-tags {
  flex: 1;
  padding: 1.5rem;
  align-content: flex-start;
}
.skill-group:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.skill-group-title {
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 1.1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.skill-tag {
  font-size: .78rem;
  font-weight: 500;
  padding: .3rem .75rem;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}
.skill-tag:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.skill-tag.highlight {
  border-color: var(--gold);
  background: rgba(196,154,60,.1);
  color: var(--navy);
  font-weight: 600;
}
.skill-tag.highlight:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─────────────────────────────────────────
   EDUCATION
───────────────────────────────────────── */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.edu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.edu-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.edu-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.edu-degree { font-size: .975rem; font-weight: 600; color: var(--navy); }
.edu-school { font-size: .83rem; color: var(--text-muted); margin-top: .2rem; }

/* ─────────────────────────────────────────
   PETS
───────────────────────────────────────── */
.pet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pet-grid--two {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}
.pet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pet-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pet-photo-wrap {
  margin-bottom: 1.1rem;
}
.pet-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
}
.pet-placeholder--dog {
  background: linear-gradient(135deg, #e8f5ee 0%, #d0eadb 100%);
  color: var(--navy-light);
}
.pet-placeholder--pig {
  background: linear-gradient(135deg, #fce8ee 0%, #f8d0dc 100%);
  color: #c06080;
}
.pet-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 4px solid var(--border);
  display: block;
}
.pet-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.pet-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .pet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pet-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   FUN FACTS
───────────────────────────────────────── */
.fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.fun-fact-card {
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.fun-fact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.fun-fact--swim    { background: linear-gradient(135deg, #e8f5ff 0%, #d0eaf8 100%); }
.fun-fact--music   { background: linear-gradient(135deg, #f5f0ff 0%, #e8d8fa 100%); }
.fun-fact--studio  { background: linear-gradient(135deg, #e8f5ee 0%, #d0ead8 100%); }
.fun-fact--fantasy { background: linear-gradient(135deg, #fff5e8 0%, #fae4c8 100%); }
.fun-fact-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
}
.fun-fact-icon svg {
  width: 100%;
  height: 100%;
}
.fun-fact--swim  .fun-fact-icon { color: #3a82c4; }
.fun-fact--music .fun-fact-icon { color: #7c4dbe; }
.fun-fact--studio .fun-fact-icon { color: var(--navy-light); }
.fun-fact--fantasy .fun-fact-icon { color: #b06820; }
.fun-fact-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.fun-fact-desc {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .fun-facts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .fun-facts-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 3rem 2rem;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.footer-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 860px) {
  .wib-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-group:nth-child(4) {
    flex-direction: column;
    padding: 1.5rem;
  }
  .skill-group:nth-child(4) .skill-group-title {
    width: auto;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 .75rem;
    margin-bottom: 1.1rem;
  }
  .skill-group:nth-child(4) .skill-tags { padding: 0; }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13,31,60,.98);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .hamburger { display: block; }
}

@media (max-width: 700px) {
  .hero-availability {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }
  .avail-divider { display: none; }
  .hero-contacts { flex-direction: column; align-items: center; }
  .timeline { padding-left: 1.4rem; }
  .timeline-spine-dot { left: -1.85rem; }
  .community-card { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 1.25rem; }
  .hero-photo-ring { width: 220px; height: 220px; }
}

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

/* ─────────────────────────────────────────
   DARK FOREST MODE
───────────────────────────────────────── */

/* Section surfaces */
.section-alt { background: #122019; }

/* Cards & panels */
.stat-card,
.spotlight-card,
.timeline-header,
.community-card,
.wib-card,
.skill-group,
.edu-card,
.pet-card {
  background: #122019;
  border-color: var(--border);
}
.timeline-body { background: #0e1c12; }
.timeline-spine-dot {
  background: #122019;
  border-color: var(--border);
}

/* Philosophy callout: bg stays as --navy (dark panel), fix text */
.philosophy-callout { color: var(--text); }

/* Headings that were dark navy text on light cards */
.section-heading { color: var(--gold); }
.stat-number     { color: var(--gold); }
.timeline-role   { color: var(--text); }
.spotlight-title { color: var(--text); }
.community-org   { color: var(--text); }
.wib-title       { color: var(--gold-light); }
.fun-fact-title  { color: var(--text); }
.edu-degree      { color: var(--text); }
.pet-name        { color: var(--text); }
.skill-group-title { color: var(--text); }

/* Availability chips on dark hero */
.avail-chip {
  border-color: rgba(200,223,208,.25);
  color:        rgba(200,223,208,.7);
}

/* Skill tags */
.skill-tag {
  background:   rgba(255,255,255,.04);
  border-color: var(--border);
  color:        var(--text-muted);
}
.skill-tag:hover {
  border-color: var(--gold);
  background:   rgba(196,154,60,.12);
  color:        var(--gold-light);
}
.skill-tag.highlight {
  background:   rgba(196,154,60,.13);
  border-color: var(--gold);
  color:        var(--gold-light);
}
.skill-tag.highlight:hover {
  background: rgba(196,154,60,.22);
  color:      var(--gold);
}

/* Achievement tags */
.achievement-tag.analytics    { background: #0f2040; color: #80b8f8; }
.achievement-tag.ai           { background: #20103a; color: #c090f0; }
.achievement-tag.strategy     { background: #301806; color: #f09050; }
.achievement-tag.security     { background: #300e0e; color: #f07878; }
.achievement-tag.compliance   { background: #0c2214; color: #60c070; }
.achievement-tag.people       { background: #220c30; color: #d080e0; }
.achievement-tag.ml           { background: #0c1c3a; color: #80b0f8; }
.achievement-tag.supply-chain { background: #281600; color: #e09840; }
.achievement-tag.platform     { background: #081e30; color: #60b8e8; }
.achievement-tag.cost         { background: #082412; color: #50c068; }
.achievement-tag.crisis       { background: #280810; color: #f06070; }
.achievement-tag.launch       { background: #201c04; color: #d0b430; }
.achievement-tag.partnerships { background: #0c2214; color: #60c070; }
.achievement-tag.consulting   { background: #1a0e38; color: #b49eff; }

/* Company badges */
.company-badge.chewy       { background: #0a1e34; color: #70b8f8; }
.company-badge.amazon      { background: #281600; color: #f09040; }
.company-badge.apple       { background: #1c1c1c; color: #c8c8c8; }
.company-badge.google      { background: #0a1e10; color: #60c070; }
.company-badge.consulting  { background: #1a0e38; color: #b49eff; }

/* Spotlight company labels */
.spotlight-co.amazon { background: #281600; color: #e09040; }
.spotlight-co.apple  { background: #1c1c1c; color: #c0c0c0; }
.spotlight-co.chewy  { background: #0a1e10; color: #60c070; }

/* Fun fact cards */
.fun-fact--swim    { background: linear-gradient(135deg, #0a1828 0%, #0c2234 100%); }
.fun-fact--music   { background: linear-gradient(135deg, #16102a 0%, #1e1430 100%); }
.fun-fact--studio  { background: linear-gradient(135deg, #0c1e14 0%, #102618 100%); }
.fun-fact--fantasy { background: linear-gradient(135deg, #1e1408 0%, #261a0c 100%); }
.fun-fact--swim    .fun-fact-icon { color: #60a8d8; }
.fun-fact--music   .fun-fact-icon { color: #b070e0; }
.fun-fact--fantasy .fun-fact-icon { color: #d09040; }

/* Pet placeholders */
.pet-placeholder--dog {
  background: linear-gradient(135deg, #0e2818 0%, #122014 100%);
  color: var(--navy-light);
}
.pet-placeholder--pig {
  background: linear-gradient(135deg, #28101a 0%, #200c12 100%);
  color: #d07898;
}

/* WIB icon backgrounds */
.wib-icon--build   { background: rgba(61,122,88,.2);  color: var(--navy-light); }
.wib-icon--clarity { background: rgba(196,154,60,.15); color: var(--gold); }
.wib-icon--people  { background: rgba(61,122,88,.15);  color: var(--navy-light); }
.wib-icon--ai      { background: rgba(224,184,92,.12); color: var(--gold-light); }

/* Mobile nav dropdown */
.nav-links.open { background: rgba(8,18,10,.98); }
