/* ============================================================
   MONA SANS VARIABLE — same font as landonorris.com
============================================================ */
@font-face {
  font-family: 'Mona Sans';
  src: url('https://cdn.prod.website-files.com/67b5a02dc5d338960b17a7e9/67bc6274c5b4108b123aa4d5_MonaSans-VariableFont_wdth%2Cwght.woff2')
       format('woff2 supports variations'),
       url('https://cdn.prod.website-files.com/67b5a02dc5d338960b17a7e9/67bc6274c5b4108b123aa4d5_MonaSans-VariableFont_wdth%2Cwght.woff2')
       format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg:             #070708;
  --bg-1:           #0d0e10;
  --bg-2:           #131418;
  --bg-3:           #1a1b21;
  --border:         rgba(255, 255, 255, 0.07);
  --border-hover:   rgba(255, 255, 255, 0.14);
  --border-accent:  rgba(56, 189, 248, 0.28);
  --text:           #eeeef0;
  --text-muted:     #6d717f;
  --text-dim:       #38393f;
  --accent:         #38bdf8;
  --accent-dim:     rgba(56, 189, 248, 0.08);
  --accent-glow:    rgba(56, 189, 248, 0.20);

  --font-display:   'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:      'Mona Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:      'SF Mono', 'Courier New', monospace;

  --nav-h:          3.75rem;
  --max-w:          1180px;
  --pad-x:          clamp(1.25rem, 5vw, 3.5rem);
  --section-py:     clamp(5rem, 10vw, 8.5rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #252730 var(--bg);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #252730; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-variation-settings: 'wght' 420, 'wdth' 100;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #000; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ============================================================
   AMBIENT BACKGROUND GLOW
============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 10% -5%, rgba(56,189,248,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 90% 105%, rgba(56,189,248,0.035) 0%, transparent 60%);
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section-header {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-variation-settings: 'wght' 620, 'wdth' 86;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Large hero display text — Bebas Neue */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 16vw, 14rem);
  line-height: 0.87;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}

/* Section headings — Bebas Neue */
.display-section {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}

/* Card headings — Bebas Neue */
.display-card {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}

/* Contact CTA — Bebas Neue */
.display-cta {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.text-label {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 580, 'wdth' 92;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.text-body {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 420, 'wdth' 100;
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.text-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   REUSABLE COMPONENTS
============================================================ */

/* Tag / Chip */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28em 0.75em;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-2);
  font-family: var(--font-body);
  font-variation-settings: 'wght' 480, 'wdth' 100;
  font-size: 0.73rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.tag.is-accent {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* Thin horizontal rule */
.rule { width: 100%; height: 1px; background: var(--border); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-variation-settings: 'wght' 640, 'wdth' 90;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-solid {
  padding: 0.8em 1.9em;
  background: var(--accent);
  color: #000;
}
.btn-solid:hover { opacity: 0.82; }

.btn-outline {
  padding: 0.8em 1.9em;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--border-accent); color: var(--text); }

/* ============================================================
   FLOATING BRAND MARK (top-left)
============================================================ */
.brand-float {
  position: fixed;
  top: 1.25rem;
  left: var(--pad-x);
  z-index: 350;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.brand-float:hover {
  opacity: 0.8;
  transform: scale(1.02);
}
.brand-float-logo {
  height: 2.2rem;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ============================================================
   MENU BUTTON (top-right, always visible)
============================================================ */
.menu-btn {
  position: fixed;
  top: 1.1rem;
  right: var(--pad-x);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem 0.6rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  background: rgba(7, 7, 8, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.menu-btn:hover {
  border-color: var(--border-accent);
  background: rgba(7, 7, 8, 0.80);
}
.menu-btn-label {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 650, 'wdth' 86;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  min-width: 2.8rem;
  text-align: left;
}
.menu-btn-lines {
  display: flex;
  flex-direction: column;
  gap: 4.5px;
}
.menu-btn-lines span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.32s ease, opacity 0.32s ease, width 0.32s ease;
  transform-origin: center;
}
.menu-btn-lines span:nth-child(1) { width: 18px; }
.menu-btn-lines span:nth-child(2) { width: 13px; }
.menu-btn-lines span:nth-child(3) { width: 18px; }
.menu-btn.is-open .menu-btn-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 18px; }
.menu-btn.is-open .menu-btn-lines span:nth-child(2) { opacity: 0; width: 0; }
.menu-btn.is-open .menu-btn-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 18px; }

/* ============================================================
   FULL-SCREEN MENU OVERLAY
============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(7, 7, 8, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.4rem var(--pad-x) 2rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.65,0.05,0,1), visibility 0.4s ease;
  pointer-events: none;
}
.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
/* Top bar inside overlay */
.menu-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.menu-overlay-brand {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 500, 'wdth' 100;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.menu-overlay-brand strong {
  color: var(--text);
  font-variation-settings: 'wght' 680, 'wdth' 100;
}
/* Large nav links */
.menu-overlay-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}
.menu-overlay-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25em 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease, padding-left 0.35s cubic-bezier(0.65,0.05,0,1);
  position: relative;
  overflow: hidden;
}
.menu-overlay-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}
.menu-overlay-link:first-child { border-top: 1px solid var(--border); }
.menu-overlay-link:hover {
  color: var(--text);
  padding-left: 1.25rem;
}
.menu-overlay-link:hover::before { transform: scaleY(1); }
/* Bottom social + location row */
.menu-overlay-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.menu-overlay-socials {
  display: flex;
  gap: 1.75rem;
}
.menu-overlay-social {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 540, 'wdth' 90;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.menu-overlay-social:hover { color: var(--accent); }
.menu-overlay-location {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 2rem;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
  /* Landscape photo background with gradient overlay for text legibility */
  background-image:
    linear-gradient(
      to bottom,
      rgba(7,7,8,0.22) 0%,
      rgba(7,7,8,0.30) 35%,
      rgba(7,7,8,0.78) 65%,
      rgba(7,7,8,1.00) 100%
    ),
    url('https://i.ibb.co/FqVm3dhr/IMG-4365-2-2.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: status-pulse 2.2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50%       { opacity: 0.65; box-shadow: 0 0 0 7px transparent; }
}

.hero-name-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
/* Each name line is clipped so letters slide up from below */
.hero-line {
  display: block;
  overflow: hidden;
  line-height: 1;
}
.hero-line-inner { display: block; }

.hero-accent { color: var(--accent); }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
}

.hero-desc p {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 420, 'wdth' 100;
  font-size: clamp(0.93rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 400px;
}

.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.hero-stats { display: flex; gap: 2.5rem; }

.hero-stat { display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 500, 'wdth' 90;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-variation-settings: 'wght' 500, 'wdth' 90;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-scroll-line {
  width: 36px;
  height: 1px;
  background: var(--text-dim);
}

@media (max-width: 768px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
  .hero-meta { align-items: flex-start; }
  .hero-stat { align-items: flex-start; }
}

/* ============================================================
   MARQUEE TICKER
============================================================ */
.marquee-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  white-space: nowrap;
  user-select: none;
}
.marquee-item-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about-photo-col { position: relative; }
.about-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 380px;
}
/* Accent border inset */
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border-accent);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
/* Decorative offset block */
.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 55%;
  height: 55%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 4px;
  z-index: -1;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  filter: grayscale(15%) contrast(1.06);
  display: block;
}
.about-photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  background: rgba(7,7,8,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.6rem 0.85rem;
  pointer-events: none;
}
.about-photo-badge .eyebrow { margin-bottom: 0.25rem; }
.about-photo-badge-name {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 600, 'wdth' 100;
  font-size: 0.82rem;
  color: var(--text);
}

.about-text p {
  font-variation-settings: 'wght' 420, 'wdth' 100;
  font-size: 0.975rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.about-text p:last-of-type { margin-bottom: 0; }

.about-facts {
  margin-top: 2.5rem;
}
.about-fact {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.about-fact:first-child { border-top: 1px solid var(--border); }
.about-fact-key {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 3.5rem;
}
.about-fact-val {
  font-variation-settings: 'wght' 420, 'wdth' 100;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-frame { max-width: 260px; aspect-ratio: 1; }
}

/* ============================================================
   SKILLS
============================================================ */
.skills-wrap {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  background: var(--border);
}
.skill-card {
  background: var(--bg-1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: background 0.35s ease;
}
.skill-card:hover { background: var(--bg-2); }

.skill-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  gap: 0.5rem;
}
.skill-card-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.skill-card-cat {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.skill-badge {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 620, 'wdth' 86;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28em 0.7em;
  border-radius: 2px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  flex-shrink: 0;
}
.skill-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.skill-icons {
  display: flex;
  gap: 0.8rem;
  font-size: 1.45rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}
.skill-card:hover .skill-icons { color: var(--text-muted); }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

@media (max-width: 768px) {
  .skills-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EXPERIENCE
============================================================ */
.exp-list { display: flex; flex-direction: column; }
.exp-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.exp-item:first-child { border-top: 1px solid var(--border); }

.exp-left { padding-top: 0.35rem; }
.exp-period {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  display: block;
}
.exp-company {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 560, 'wdth' 100;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.exp-context {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.exp-right {}
.exp-role {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.exp-current-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-variation-settings: 'wght' 600, 'wdth' 86;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  padding: 0.3em 0.8em;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}
.exp-current-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: status-pulse 2s infinite;
}

.exp-stack { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }

.exp-bullets { display: flex; flex-direction: column; gap: 0.5rem; }
.exp-bullets li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.65;
}
.exp-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.2em;
}

@media (max-width: 768px) {
  .exp-item { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ============================================================
   PROJECTS
============================================================ */
.projects-wrap {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  background: var(--border);
}
.project-card {
  background: var(--bg-1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease;
}
.project-card:hover { background: var(--bg-2); }

.project-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.project-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.project-org {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.25em 0.6em;
}
.project-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.project-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 1rem;
  flex: 1;
}
.project-bullets { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.project-bullets li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.project-bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}
.project-footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
}

@media (max-width: 640px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EDUCATION
============================================================ */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}
.edu-card {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--bg-1);
}
.edu-card-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.edu-list { display: flex; flex-direction: column; gap: 1.5rem; }
.edu-item {}
.edu-institution {
  font-family: var(--font-body);
  font-variation-settings: 'wght' 600, 'wdth' 100;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.edu-period {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.edu-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.dev-items { display: flex; flex-direction: column; gap: 0.9rem; }
.dev-item {
  padding: 1rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.dev-item strong {
  display: block;
  font-variation-settings: 'wght' 640, 'wdth' 100;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.dev-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 680px) {
  .edu-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
============================================================ */
.contact-wrap {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 1rem;
}
.contact-heading-accent { color: var(--accent); display: block; }
.contact-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1.5rem;
  max-width: 400px;
}
.contact-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.contact-meta-item i { color: var(--accent); font-style: normal; }

.contact-links { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-2);
  font-family: var(--font-body);
  font-variation-settings: 'wght' 560, 'wdth' 92;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.22s ease;
}
.contact-link:hover {
  border-color: var(--border-accent);
  color: var(--text);
  background: var(--accent-dim);
  transform: translateX(5px);
}
.contact-link > i:first-child { font-size: 1.1rem; color: var(--accent); flex-shrink: 0; }
.contact-link .arrow { margin-left: auto; color: var(--text-dim); font-size: 0.9rem; }

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.footer-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-link {
  font-size: 0.72rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--accent); }
