/* ============================================================
   BIBEK KUMAR YADAV — Portfolio Stylesheet
   style.css
   ============================================================ */

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

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

/* ── CSS VARIABLES ── */
:root {
  --ink:        #0c0e1a;
  --ink-soft:   #1a1d2e;
  --cream:      #f7f5f0;
  --cream-dark: #ede9e0;
  --sand:       #e8e0d0;
  --gold:       #c9a84c;
  --gold-light: #f0c96a;
  --teal:       #1a8a7a;
  --teal-light: #26c4ae;
  --white:      #ffffff;
  --muted:      #6b6e82;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --section-pad: clamp(70px, 8vw, 110px);
  --container:   1120px;
  --t-fast:  0.18s ease;
  --t-med:   0.32s ease;
  --t-slow:  0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
::selection { background: var(--gold); color: var(--ink); }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: -19px; left: -19px;
  pointer-events: none; z-index: 9999;
  transition: width var(--t-fast), height var(--t-fast), border-color var(--t-fast);
  mix-blend-mode: multiply;
}
.cursor.expanded { width: 58px; height: 58px; border-color: var(--teal); }
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  position: fixed; top: -3px; left: -3px;
  pointer-events: none; z-index: 9999;
}

/* ── UTILITY ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 5vw; }
.container.centered { text-align: center; }

/* ── REVEAL ── */
.reveal-item {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--t-slow), transform 0.6s var(--t-slow);
}
.reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: box-shadow var(--t-med), background var(--t-med);
}
nav.scrolled {
  box-shadow: 0 6px 32px rgba(12, 14, 26, 0.08);
  background: rgba(247, 245, 240, 0.97);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.5px;
  text-decoration: none;
}
.logo-b { color: var(--gold); font-style: italic; }
.logo-dot { color: var(--teal); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  letter-spacing: 0.2px; position: relative;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--t-med);
}
.nav-links a:hover, .nav-links a.active-link { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  padding: 10px 22px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all var(--t-med);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--cream); z-index: 899;
  transform: translateY(-110%); transition: transform var(--t-slow);
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 10px 40px rgba(12,14,26,0.1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul {
  list-style: none; padding: 1.5rem 5vw 2rem;
  display: flex; flex-direction: column;
}
.mobile-menu a {
  display: block; padding: 1rem 0;
  font-size: 1.1rem; font-weight: 500; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--sand);
  transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5vw 60px;
  position: relative; overflow: hidden;
  background: var(--cream);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: 0.6; pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  gap: 5vw; max-width: var(--container); margin: 0 auto; width: 100%;
}
.hero-text { flex: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--teal); letter-spacing: 0.5px; margin-bottom: 1.4rem;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-light);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.3; transform: scale(0.7); }
}
.hero-name {
  font-family: var(--font-display);
  line-height: 1; margin-bottom: 1.5rem;
  display: flex; flex-direction: column;
}
.name-line {
  display: block;
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 800; color: var(--ink);
  letter-spacing: -2px; overflow: hidden;
}
.name-line.accent-italic { font-style: italic; color: var(--gold); letter-spacing: -1px; }
.hero-desc {
  font-size: 1.05rem; color: var(--muted); line-height: 1.75;
  max-width: 460px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.btn-hero-primary {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--cream);
  padding: 14px 34px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; position: relative; overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 8px 28px rgba(12,14,26,0.18);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(12,14,26,0.25); }
.btn-glow {
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 60% 50%, rgba(201,168,76,0.25), transparent 70%);
  opacity: 0; transition: opacity var(--t-med);
}
.btn-hero-primary:hover .btn-glow { opacity: 1; }
.btn-hero-ghost {
  display: inline-flex; align-items: center;
  color: var(--ink); font-size: 0.95rem; font-weight: 500;
  text-decoration: none; padding: 14px 24px;
  border-radius: 100px; border: 1.5px solid var(--sand);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.btn-hero-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.hero-counters {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--sand);
}
.counter-item { display: flex; flex-direction: column; }
.counter-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1;
}
.counter-plus { font-size: 1rem; color: var(--gold); font-weight: 600; vertical-align: super; }
.counter-label { font-size: 0.76rem; color: var(--muted); margin-top: 3px; }
.counter-sep { width: 1px; height: 36px; background: var(--sand); }

/* ── HERO VISUAL ── */
.hero-visual {
  flex-shrink: 0;
  width: clamp(260px, 38vw, 460px);
  display: flex; align-items: center; justify-content: center;
}
.photo-orbit { position: relative; width: 100%; aspect-ratio: 1; }
.orbit-ring {
  position: absolute; border-radius: 50%;
  border-style: dashed; border-color: rgba(201,168,76,0.18);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: spinSlow 20s linear infinite;
}
.ring-1 { width: 88%; height: 88%; border-width: 1px; }
.ring-2 { width: 108%; height: 108%; border-width: 1px; animation-direction: reverse; animation-duration: 30s; }
@keyframes spinSlow {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
.photo-card {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76%; height: 76%;
  border-radius: 28% 72% 52% 48% / 48% 32% 68% 52%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12,14,26,0.18);
  animation: morphCard 12s ease-in-out infinite;
  background: var(--cream-dark);
}
@keyframes morphCard {
  0%,100% { border-radius: 28% 72% 52% 48% / 48% 32% 68% 52%; }
  25%      { border-radius: 55% 45% 62% 38% / 62% 55% 45% 38%; }
  50%      { border-radius: 40% 60% 38% 62% / 58% 40% 60% 42%; }
  75%      { border-radius: 65% 35% 48% 52% / 38% 62% 38% 62%; }
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-fallback {
  width: 100%; height: 100%;
  display: none; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800; color: var(--gold);
  background: var(--cream-dark);
}
.photo-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* ── SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 5vw; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
}
.scroll-line { width: 40px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { to { left: 100%; } }

/* ── SECTION SHARED ── */
section { padding: var(--section-pad) 5vw; }
section:nth-child(even) { background: var(--white); }

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); display: block; }
.container.centered .section-label { justify-content: center; }
.container.centered .section-label::before { display: none; }
.container.centered .section-label::after { content: ''; width: 24px; height: 2px; background: var(--gold); display: block; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.15; margin-bottom: 3rem;
}
.section-heading em { font-style: italic; color: var(--gold); }
.container.centered .section-heading { text-align: center; }

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-lead { font-size: 1.1rem; font-weight: 500; color: var(--ink); line-height: 1.7; margin-bottom: 1.2rem; }
.about-text p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.btn-about {
  display: inline-block; margin-top: 1.2rem;
  background: var(--ink); color: var(--cream);
  padding: 12px 28px; border-radius: 100px;
  font-size: 0.92rem; font-weight: 500; text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn-about:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.about-cards { display: flex; flex-direction: column; gap: 0.85rem; }
.about-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream); padding: 14px 18px;
  border-radius: 14px; border: 1px solid var(--sand);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
section:nth-child(even) .about-card { background: var(--white); }
.about-card:hover { transform: translateX(8px); box-shadow: 0 6px 24px rgba(12,14,26,0.08); border-color: var(--gold); }
.acard-icon {
  font-size: 1.3rem; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  display: flex; align-items: center; justify-content: center;
}
.acard-label { font-size: 0.72rem; color: var(--muted); }
.acard-value { font-size: 0.9rem; font-weight: 500; color: var(--ink); }

/* ── SKILLS ── */
.skills-bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; max-width: 900px; margin: 0 auto;
}
.tile-lg { grid-column: span 1; grid-row: span 2; }
.tile-md { grid-column: span 2; }
.skill-tile {
  background: var(--cream); border: 1px solid var(--sand);
  border-radius: 20px; padding: 24px;
  position: relative; overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  text-align: left;
}
section:nth-child(even) .skill-tile { background: var(--white); }
.skill-tile:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(12,14,26,0.1); border-color: var(--gold); }
.tile-bg-glow {
  position: absolute; bottom: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  pointer-events: none;
}
.tile-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.tile-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tile-level { font-size: 0.76rem; color: var(--muted); margin-bottom: 14px; }
.tile-bar { height: 5px; background: var(--sand); border-radius: 10px; overflow: hidden; }
.tile-bar-fill {
  height: 100%; border-radius: 10px;
  background: linear-gradient(90deg, var(--gold), var(--teal-light));
  width: var(--pct);
  transform: scaleX(0); transform-origin: left;
  animation: scaleIn 1.4s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-play-state: paused;
}
.revealed .tile-bar-fill { animation-play-state: running; }
@keyframes scaleIn { to { transform: scaleX(1); } }
.tile-ring { position: absolute; bottom: 16px; right: 16px; width: 72px; height: 72px; }
.tile-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--sand); stroke-width: 6; }
.ring-fill { fill: none; stroke: url(#goldGrad); stroke-width: 6; stroke-linecap: round; }
.ring-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--gold);
}

/* ── EDUCATION ── */
.edu-track { max-width: 680px; margin: 0 auto; position: relative; padding-left: 50px; }
.edu-line {
  position: absolute; left: 19px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal-light), transparent);
}
.edu-node { display: flex; gap: 1.5rem; margin-bottom: 2.4rem; position: relative; }
.node-marker {
  position: absolute; left: -50px;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; z-index: 1;
  transition: transform var(--t-med);
}
.node-marker.completed { background: var(--ink); color: var(--cream); box-shadow: 0 0 0 4px var(--cream); }
.node-marker.current   { background: var(--gold); color: var(--ink); box-shadow: 0 0 0 4px var(--cream), 0 0 0 8px rgba(201,168,76,0.2); }
.edu-node:hover .node-marker { transform: scale(1.15); }
.node-card {
  background: var(--white); border-radius: 16px;
  padding: 18px 22px; border: 1px solid var(--sand);
  flex: 1; position: relative;
  transition: box-shadow var(--t-med), transform var(--t-med);
}
section:nth-child(odd) .node-card { background: var(--cream); }
.node-card:hover { box-shadow: 0 8px 28px rgba(12,14,26,0.09); transform: translateX(4px); }
.node-card.active-card { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(201,168,76,0.3), 0 8px 28px rgba(201,168,76,0.12); }
.node-tag {
  display: inline-block; margin-bottom: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 12px; border-radius: 100px;
  background: rgba(12,14,26,0.07); color: var(--muted);
}
.current-tag { background: rgba(201,168,76,0.15); color: var(--gold); }
.node-title { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.98rem; margin-bottom: 4px; }
.node-school { font-size: 0.85rem; color: var(--muted); }
.active-pulse {
  position: absolute; top: 14px; right: 14px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
  animation: activePulse 2s ease-in-out infinite;
}
@keyframes activePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

/* ── LANGUAGES ── */
.lang-showcase { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.lang-hex {
  position: relative; width: 160px; height: 175px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-med);
}
section:nth-child(even) .lang-hex { background: var(--cream); }
.lang-hex.featured { background: linear-gradient(135deg, var(--ink), var(--ink-soft)); }
.lang-hex:hover { transform: translateY(-8px) scale(1.04); }
.hex-inner { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; transform: scaleY(0.87); }
.hex-flag { font-size: 2.2rem; }
.hex-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.lang-hex.featured .hex-name { color: var(--cream); }
.hex-level { font-size: 0.75rem; color: var(--muted); }
.lang-hex.featured .hex-level { color: rgba(240,233,224,0.7); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-intro { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-link {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); padding: 16px 18px;
  border-radius: 16px; border: 1px solid var(--sand);
  text-decoration: none; color: inherit;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
section:nth-child(odd) .contact-link { background: var(--cream); }
.contact-link:hover { transform: translateX(6px); border-color: var(--gold); box-shadow: 0 6px 24px rgba(12,14,26,0.07); }
.clink-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.clink-label { font-size: 0.72rem; color: var(--muted); }
.clink-value { font-size: 0.9rem; font-weight: 500; color: var(--ink); }

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: 12px;
  text-decoration: none; font-size: 0.86rem; font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}
.social-link:hover { transform: translateY(-3px); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link.facebook  { background: #1877F2; color: #fff; box-shadow: 0 4px 16px rgba(24,119,242,0.3); }
.social-link.facebook:hover  { box-shadow: 0 8px 24px rgba(24,119,242,0.45); }
.social-link.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; box-shadow: 0 4px 16px rgba(220,39,67,0.3); }
.social-link.instagram:hover { box-shadow: 0 8px 24px rgba(220,39,67,0.45); }
.social-link.linkedin  { background: #0A66C2; color: #fff; box-shadow: 0 4px 16px rgba(10,102,194,0.3); }
.social-link.linkedin:hover  { box-shadow: 0 8px 24px rgba(10,102,194,0.45); }
.social-link.whatsapp  { background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.social-link.whatsapp:hover  { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: 24px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
section:nth-child(odd) .contact-form { background: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.form-field input, .form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--sand); border-radius: 12px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
  background: var(--cream-dark); outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
section:nth-child(odd) .form-field input,
section:nth-child(odd) .form-field textarea { background: var(--white); }
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.btn-send {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  background: var(--ink); color: var(--cream);
  padding: 13px 30px; border-radius: 100px;
  border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 6px 20px rgba(12,14,26,0.15);
}
.btn-send:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.3); }
.btn-send.loading { opacity: 0.7; pointer-events: none; }
.form-success { font-size: 0.85rem; color: var(--teal); font-weight: 500; align-items: center; gap: 6px; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(240,233,224,0.5); padding: 50px 5vw; }
.footer-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.footer-brand { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--cream); margin-bottom: 1rem; }
.footer-brand span { color: var(--gold); }
footer p { font-size: 0.9rem; line-height: 1.8; }
footer strong { color: var(--cream); }
.footer-sub { font-size: 0.8rem; opacity: 0.7; margin-top: 4px; }
.footer-mail {
  display: inline-block; margin-top: 1.2rem;
  color: var(--gold-light); font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.3px;
  transition: color var(--t-fast);
}
.footer-mail:hover { color: var(--teal-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-layout    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout  { grid-template-columns: 1fr; gap: 2.5rem; }
  .skills-bento    { grid-template-columns: repeat(2, 1fr); }
  .tile-lg         { grid-row: span 1; }
  .tile-md         { grid-column: span 1; }
}
@media (max-width: 768px) {
  .hero-inner      { flex-direction: column-reverse; text-align: center; gap: 2.5rem; }
  .hero-desc       { margin: 0 auto 2.5rem; }
  .hero-actions    { justify-content: center; }
  .hero-counters   { justify-content: center; }
  .hero-visual     { width: min(260px, 70vw); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle      { display: flex; }
  .form-row        { grid-template-columns: 1fr; }
  .lang-hex        { width: 130px; height: 142px; }
  .cursor, .cursor-dot { display: none; }
  body             { cursor: auto; }
  .skills-bento    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .skills-bento    { grid-template-columns: 1fr; }
  .tile-lg, .tile-md { grid-column: span 1; }
  .social-links    { gap: 8px; }
  .social-link     { padding: 9px 14px; font-size: 0.8rem; }
}
