/* ─────────────────────────────────────────────
   ROOT & RESET
───────────────────────────────────────────── */
:root {
  --cream: #f5f0e8;
  --cream2: #ede8de;
  --dark: #0e0d0b;
  --dark2: #1a1916;
  --dark3: #252420;
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --gold-pale: rgba(201,168,76,0.12);
  --text: #1a1916;
  --text-mid: #5a5649;
  --text-light: #9a9288;
  --border: rgba(26,25,22,0.1);
  --border-dark: rgba(255,255,255,0.08);
  --red: #c43b2a;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Custom cursor */
body { cursor: none; }
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 70px;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--dark);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 1px solid var(--dark);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* Left panel - dark */
.hero-left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 4rem 5rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Diagonal geometric accent */
.hero-left::before {
  content: '';
  position: absolute;
  top: -10%; right: -15%;
  width: 320px; height: 320px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  transform: rotate(15deg);
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: 20%; right: 8%;
  width: 160px; height: 160px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 15px;
  color: rgba(245,240,232,0.6);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-desc strong {
  color: var(--cream);
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: rgba(245,240,232,0.7);
  border: 1px solid rgba(245,240,232,0.2);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 32px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 40px; height: 1px;
  background: var(--text-light);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scanLine 2s infinite ease;
}
@keyframes scanLine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Right panel - cream with photo area + stats */
.hero-right {
  background: var(--cream2);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Gold diagonal strip */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.hero-photo-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
}

/* Large decorative letter */
.hero-photo-block::before {
  content: 'L';
  font-family: 'Cormorant Garamond', serif;
  font-size: 40vw;
  font-weight: 700;
  color: rgba(26,25,22,0.03);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.avatar-frame {
  width: 320px;
  height: 440px;
  border-radius: 3px;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.6),
    0 0 0 4px rgba(14,13,11,0.95),
    0 0 0 5px rgba(201,168,76,0.2),
    0 30px 70px rgba(0,0,0,0.5);
}

/* Subtle inner etched line */
.avatar-frame::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 1px;
  pointer-events: none;
  z-index: 2;
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.avatar-ring { display: none; }

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.hero-stat-box {
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.hero-stat-box:nth-child(2n) { border-right: none; }
.hero-stat-box:hover { background: rgba(201,168,76,0.06); }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-number sup {
  font-size: 1.4rem;
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   MARQUEE BAND
───────────────────────────────────────────── */
.marquee-band {
  background: var(--dark);
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.marquee-inner {
  display: flex;
  gap: 4rem;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   SECTION LAYOUT HELPERS
───────────────────────────────────────────── */
section { position: relative; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.section-title em { font-style: italic; color: var(--gold); }

/* ─────────────────────────────────────────────
   ABOUT — editorial 2-col layout
───────────────────────────────────────────── */
#about {
  padding: 8rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 6rem;
  align-items: start;
}

.about-left {}

.about-right {}

.about-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.about-body strong { color: var(--dark); font-weight: 500; }

/* ── Expertise cards grid ── */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.expertise-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.expertise-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.expertise-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.expertise-card-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}
@media (max-width: 600px) {
  .expertise-grid { grid-template-columns: 1fr; }
}

.about-highlight {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--gold-pale);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
}

.tshaped-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.tshape-cell {
  background: var(--cream);
  padding: 1.8rem;
  transition: background 0.2s;
}
.tshape-cell:hover { background: var(--cream2); }

.tshape-cell.wide {
  grid-column: 1 / -1;
  background: var(--dark);
  color: var(--cream);
}

.tshape-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.tshape-cell.wide .tshape-title {
  color: var(--gold);
}

.tshape-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

.tshape-cell.wide .tshape-text {
  color: rgba(245,240,232,0.7);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.8rem;
}

.pill {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  background: transparent;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--gold); color: var(--dark); }
.pill.gold-pill { border-color: rgba(201,168,76,0.4); color: var(--gold); background: var(--gold-pale); }

/* ─────────────────────────────────────────────
   EXPERIENCE — dark full-width
───────────────────────────────────────────── */
#experience {
  background: var(--dark);
  padding: 8rem 0;
}

#experience .section-label { color: var(--gold); }
#experience .section-title { color: var(--cream); }

.exp-items {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-dark);
  transition: all 0.3s;
  position: relative;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.exp-card:hover::before { width: 100%; }

.exp-card:last-child { border-bottom: 1px solid var(--border-dark); }

.exp-meta {
  display: flex;
  flex-direction: column;
}

.exp-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* Role title row: title left, logo right */
.exp-role-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.exp-role-header .exp-role-title {
  margin-bottom: 0;
  flex: 1;
}

.exp-period {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.exp-company {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.exp-loc {
  font-size: 12px;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.06em;
}

.exp-content {}

.exp-role-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1rem;
}

.exp-desc {
  font-size: 14px;
  color: rgba(245,240,232,0.55);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.exp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.exp-bullets li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
}

.exp-bullets li::before {
  content: '•';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
}

.exp-bullets li strong { color: var(--cream); font-weight: 500; }

.exp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.exp-chip {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(201,168,76,0.7);
  border-radius: 2px;
}

/* ─────────────────────────────────────────────
   PROJECTS — editorial grid
───────────────────────────────────────────── */
#projects {
  padding: 8rem 0;
  background: var(--cream);
}

.projects-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
  border: 1px solid var(--border);
}

.proj-card {
  background: var(--cream);
  padding: 3rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.proj-card:hover { background: var(--dark); }

/* Number + logo badge row at the top of every project card */
.proj-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}

.proj-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(26,25,22,0.07);
  line-height: 1;
  transition: color 0.3s;
  pointer-events: none;
}
.proj-card:hover .proj-card-num { color: rgba(201,168,76,0.2); }

.proj-client {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.proj-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.proj-card:hover .proj-title { color: var(--cream); }

.proj-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.proj-card:hover .proj-sub { color: rgba(245,240,232,0.4); }

.proj-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.proj-card:hover .proj-body { color: rgba(245,240,232,0.6); }
.proj-body strong { color: var(--dark); font-weight: 500; }
.proj-card:hover .proj-body strong { color: var(--cream); }

.proj-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 1rem 1.2rem;
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
  font-size: 13px;
  color: var(--dark);
  line-height: 1.6;
  transition: all 0.3s;
}
.proj-card:hover .proj-result {
  background: rgba(201,168,76,0.08);
  color: var(--cream);
}
.proj-result::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 10px; margin-top: 2px; }

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.5rem;
}

.proj-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: all 0.3s;
}
.proj-card:hover .proj-tag {
  border-color: rgba(255,255,255,0.1);
  color: rgba(245,240,232,0.35);
}

.proj-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.2rem;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.75;
  border-bottom: 1px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
}
.proj-pdf-link:hover { opacity: 1; border-bottom-color: var(--gold); }
.proj-card:hover .proj-pdf-link { opacity: 0.9; }

/* Large project card spanning full width */
.proj-card.large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ─────────────────────────────────────────────
   SKILLS — elegant grid
───────────────────────────────────────────── */
#skills {
  background: var(--dark2);
  padding: 8rem 0;
}

#skills .section-label { color: var(--gold); }
#skills .section-title { color: var(--cream); }

.skills-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.skill-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 1.5rem;
}

.skill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.skill-name {
  font-size: 13.5px;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.skill-dots {
  display: flex;
  gap: 5px;
}

.skill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.skill-dot.active { background: var(--gold); }

/* ─────────────────────────────────────────────
   EDUCATION
───────────────────────────────────────────── */
#education {
  padding: 8rem 0;
  background: var(--cream2);
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.edu-card {
  background: var(--cream2);
  padding: 2.5rem;
  transition: background 0.3s;
}
.edu-card:hover { background: var(--cream); }

.edu-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(26,25,22,0.12);
  margin-bottom: 1rem;
  line-height: 1;
}

.edu-degree {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.edu-school {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.edu-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   LINKEDIN READY
───────────────────────────────────────────── */
#linkedin {
  background: var(--dark);
  padding: 8rem 0;
}

#linkedin .section-label { color: var(--gold); }
#linkedin .section-title { color: var(--cream); }

.linkedin-wrapper {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.li-block {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}
.li-block:hover { border-color: rgba(201,168,76,0.2); }
.li-block.full { grid-column: 1 / -1; }

.li-block-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy-btn {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(201,168,76,0.6);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.copy-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.li-text {
  font-size: 13.5px;
  color: rgba(245,240,232,0.6);
  line-height: 1.95;
  white-space: pre-line;
  font-weight: 300;
}

.featured-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.featured-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.featured-list li:last-child { border-bottom: none; }

.feat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 28px;
}

.feat-content {}
.feat-title {
  font-size: 14px;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 3px;
}
.feat-desc {
  font-size: 12px;
  color: rgba(245,240,232,0.35);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.footer-socials a {
  color: rgba(245,240,232,0.25);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
}
.footer-socials a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────────
   COMPANY LOGOS
───────────────────────────────────────────── */

/*
  Logos are displayed directly — no white background box.
  `isolation: isolate` on the img prevents any blend-mode or
  theme filter from the parent from bleeding into the logo pixels.
  No CSS filter is EVER applied to the img tag itself.
*/
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  flex-shrink: 0;
}

/* Ensure no parent theme/filter ever touches logo colors */
.logo-badge img {
  isolation: isolate;
  filter: none !important;
}

/* Dark/black logos that need a light background to stay visible */
.logo-badge--light {
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* ── Experience: logo above company name ── */
.exp-meta .logo-badge {
  display: none;
}

.company-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* ── Projects: logo on right of .proj-card-header ── */
.proj-card-header .logo-badge {
  padding: 0;
}

.proj-logo {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

/* ── Education: logo at top of each card ── */
.edu-card .logo-badge {
  display: block;
  margin-bottom: 1.4rem;
}

.edu-logo {
  height: 46px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* UWF is a wide horizontal logo — give it more room */
img[alt="University of West Florida"].edu-logo {
  height: 54px;
  max-width: 220px;
}
img[alt="University of West Florida"].proj-logo {
  height: 46px;
  max-width: 180px;
}

/* ─────────────────────────────────────────────
   HERO — CV BUTTON · SOCIAL ICONS · TRUSTED LOGOS
───────────────────────────────────────────── */
.btn-cv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.65);
  border: 1px solid rgba(245,240,232,0.18);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-cv svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.btn-cv:hover { border-color: var(--gold); color: var(--gold); }

.hero-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: 50%;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: all 0.25s;
  flex-shrink: 0;
}
.hero-social-link svg { width: 16px; height: 16px; fill: currentColor; }
.hero-social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.hero-social-sep {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.2);
  margin-left: 0.5rem;
}

.hero-trusted {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-trusted-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.22);
  margin-bottom: 1rem;
}
.hero-trusted-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-trusted-logos .logo-badge {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero-trusted-logos .logo-badge.logo-badge--light {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 6px rgba(0,0,0,0.15);
}
.hero-trusted-logos .logo-badge img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  isolation: isolate;
  filter: none !important;
}

/* ─────────────────────────────────────────────
   SKILLS — LANGUAGES & SOFT SKILLS
───────────────────────────────────────────── */
.skills-extra {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.skills-extra-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 1.5rem;
}
.lang-row {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lang-row:last-child { border-bottom: none; }
.lang-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
}
.lang-name {
  font-size: 13.5px;
  color: rgba(245,240,232,0.75);
  font-weight: 300;
}
.lang-level {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.lang-bar-track {
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.lang-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
}
.soft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.soft-tag {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.18);
  color: rgba(245,240,232,0.6);
  border-radius: 3px;
  transition: all 0.2s;
  cursor: default;
}
.soft-tag:hover { border-color: rgba(201,168,76,0.5); color: rgba(245,240,232,0.9); background: rgba(201,168,76,0.05); }

/* ─────────────────────────────────────────────
   CERTIFICATIONS
───────────────────────────────────────────── */
#certifications {
  padding: 8rem 0;
  background: var(--dark3);
}
#certifications .section-label { color: var(--gold); }
#certifications .section-title { color: var(--cream); }

.certif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  margin-top: 4rem;
}
.certif-card {
  background: var(--dark3);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.certif-card:hover { background: rgba(255,255,255,0.025); }
.certif-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.certif-card:hover::after { width: 100%; }
.certif-issuer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  min-height: 46px;
}
.certif-year {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.certif-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.certif-org {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.28);
  margin-bottom: 1.2rem;
}
.certif-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.certif-score span {
  font-size: 1rem;
  color: rgba(245,240,232,0.25);
  font-weight: 300;
}
.certif-desc {
  font-size: 13px;
  color: rgba(245,240,232,0.42);
  line-height: 1.8;
  font-weight: 300;
}
.certif-logo {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  isolation: isolate;
  filter: none !important;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
#contact {
  padding: 8rem 0;
  background: var(--dark2);
}
#contact .section-label { color: var(--gold); }
#contact .section-title { color: var(--cream); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
  align-items: start;
}
.contact-intro {
  font-size: 16px;
  color: rgba(245,240,232,0.5);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 3rem;
}
.contact-intro strong { color: var(--cream); font-weight: 400; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: all 0.25s;
}
.contact-item-icon svg { width: 18px; height: 18px; fill: currentColor; }
.contact-item:hover .contact-item-icon { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
  margin-bottom: 4px;
}
a.contact-item-value,
span.contact-item-value {
  font-size: 14px;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-item-value:hover { color: var(--gold); }

.contact-right {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 3rem;
}
.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.28);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
  border-radius: 0;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(245,240,232,0.18); }
.form-input:focus,
.form-textarea:focus { border-color: rgba(201,168,76,0.35); }
.form-textarea { height: 120px; }
.btn-send {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-send:hover { background: var(--gold2); transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   LANGUAGE TOGGLE
───────────────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(26,25,22,0.12);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 11px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.lang-btn.active {
  background: var(--dark);
  color: var(--cream);
}

/* ─────────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 301;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(245,240,232,0.98);
  backdrop-filter: blur(20px);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   TOUCH DEVICES — disable custom cursor
───────────────────────────────────────────── */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

/* ── TABLET ≤ 1024px ── */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  nav { padding: 0 2rem; }
  .nav-links { gap: 1.2rem; }
  .nav-cta { padding: 8px 16px; font-size: 10px; }
  .hero-left { padding: 4rem 2rem; }
  .hero-photo-block { padding: 2rem; }
  .avatar-frame { width: 240px; height: 340px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .exp-card { grid-template-columns: 200px 1fr; gap: 2rem; }
  .proj-card.large { grid-template-columns: 1fr; gap: 2rem; }
  .skills-columns { gap: 2rem; }
  .skills-extra { gap: 2rem; }
  .contact-layout { gap: 3rem; }
  .linkedin-wrapper { gap: 1.5rem; }
  section { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }
  .hero-headline { font-size: clamp(2.5rem, 5vw, 4.5rem); }
}

/* ── MOBILE ≤ 768px ── */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 1.5rem; }
  nav { padding: 0 1rem; height: 60px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { font-size: 0.95rem; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .hero-right { order: -1; }
  .hero-photo-block { padding: 1.5rem; min-height: 280px; }
  .avatar-frame { width: 180px; height: 250px; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-box { padding: 1.2rem; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 10px; }
  .hero-headline { font-size: clamp(2rem, 7vw, 3rem); margin-bottom: 1.5rem; }
  .hero-desc { font-size: 14px; max-width: 100%; margin-bottom: 2rem; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 1.5rem; }
  .hero-btns { flex-wrap: wrap; gap: 0.8rem; }
  .btn-gold, .btn-ghost, .btn-cv { padding: 12px 20px; font-size: 10px; width: 100%; text-align: center; justify-content: center; }
  .hero-socials { flex-wrap: wrap; gap: 0.8rem; }
  .hero-scroll { display: none; }
  .hero-trusted { margin-top: 1.5rem; padding-top: 1.2rem; }
  .hero-trusted-logos { gap: 8px; }
  .hero-trusted-logos .logo-badge img { height: 22px; }

  section { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .section-label { font-size: 9px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-body { font-size: 15px; line-height: 1.8; margin-bottom: 1.5rem; }
  .about-highlight { padding: 1rem 1.2rem; font-size: 1.15rem; }
  .tshaped-visual { grid-template-columns: 1fr; }
  .tshape-cell { padding: 1.4rem; }

  /* Experience */
  .exp-card { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .exp-company { font-size: 1.3rem; }
  .exp-role-title { font-size: 1.3rem; }
  .exp-role-header { flex-direction: column; gap: 0.8rem; }
  .exp-desc { font-size: 13px; }
  .exp-bullets li { font-size: 13px; }
  .exp-chips { gap: 4px; }
  .exp-chip { font-size: 9px; padding: 3px 8px; }

  /* Projects */
  .projects-layout { grid-template-columns: 1fr; margin-top: 2.5rem; }
  .proj-card { padding: 2rem 1.5rem; }
  .proj-card.large { grid-template-columns: 1fr; gap: 1.5rem; }
  .proj-card-num { font-size: 3rem; }
  .proj-title { font-size: 1.4rem; }
  .proj-body { font-size: 13px; }
  .proj-result { font-size: 12px; padding: 0.8rem 1rem; }
  .proj-tags { gap: 4px; }
  .proj-tag { font-size: 9px; padding: 3px 8px; }
  .proj-logo { height: 30px; }

  /* Skills */
  .skills-columns { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2.5rem; }
  .skill-name { font-size: 13px; }
  .skills-extra { grid-template-columns: 1fr; gap: 2rem; }

  /* Education */
  .edu-grid { grid-template-columns: 1fr; margin-top: 2.5rem; }
  .edu-card { padding: 2rem 1.5rem; }
  .edu-year { font-size: 2rem; }
  .edu-degree { font-size: 1.1rem; }

  /* Certifications */
  .certif-grid { grid-template-columns: 1fr; margin-top: 2.5rem; }
  .certif-card { padding: 2rem 1.5rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-intro { font-size: 14px; margin-bottom: 2rem; }
  .contact-right { padding: 2rem 1.5rem; }

  /* LinkedIn */
  .linkedin-wrapper { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
  .footer-socials { justify-content: center; }

  /* Marquee */
  .marquee-inner { gap: 2rem; }
  .marquee-item { font-size: 10px; letter-spacing: 0.1em; }
}

/* ── SMALL PHONE ≤ 480px ── */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 1rem; }
  nav { padding: 0 0.8rem; }

  .hero-left { padding: 4.5rem 1rem 2rem; }
  .hero-headline { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.15em; }
  .hero-right { display: none; }

  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { padding: 1.1rem 1rem; }

  .proj-card { padding: 1.5rem 1rem; }
  .proj-card-num { font-size: 2.5rem; }
  .proj-title { font-size: 1.2rem; }

  .exp-card { padding: 1.5rem 0; }
  .exp-company { font-size: 1.1rem; }
  .exp-role-title { font-size: 1.1rem; }

  .edu-card { padding: 1.5rem 1rem; }
  .certif-card { padding: 1.5rem 1rem; }
  .contact-right { padding: 1.5rem 1rem; }

  .hero-stats-grid { grid-template-columns: 1fr; }
  .hero-stat-box { padding: 1rem; }
  .stat-number { font-size: 1.8rem; }

  .lang-toggle { margin-right: 0.3rem; }
  .lang-btn { padding: 5px 8px; font-size: 10px; }
}
