/* ---------- RESET & TOKENS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f5f2ed;
  --card: #ffffff;
  --dark: #0e0d0b;
  --white: #faf7f2;
  --accent: #e8622a;
  --accent2: #f0a44a;
  --muted: #8a7f74;
  --border: #e2ddd6;
  --serif: 'Clash Display', Georgia, serif;
  --sans: 'Cabinet Grotesk', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.4;
}

::selection { background: var(--accent); color: white; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ---------- NOISE TEXTURE OVERLAY ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- SCROLL PROGRESS BAR ---------- */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ---------- GLASSMORPHIC NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 242, 237, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.hire-btn {
  background: var(--dark);
  color: white !important;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.hire-btn:hover { background: var(--accent) !important; transform: scale(1.04); }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--dark);
  text-decoration: none;
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ---------- HERO (SIMPLIFIED) ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.5rem 4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Animated gradient mesh */
.hero-bg-blob {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 65vw;
  max-width: 800px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(240,164,74,0.28) 0%, rgba(232,98,42,0.12) 45%, transparent 70%);
  animation: blobFloat 14s ease-in-out infinite;
  pointer-events: none;
}
.hero-bg-blob2 {
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 55vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, rgba(232,98,42,0.15) 0%, rgba(200,169,110,0.08) 50%, transparent 70%);
  animation: blobFloat2 18s ease-in-out infinite;
  pointer-events: none;
}
.hero-bg-blob3 {
  position: absolute;
  top: 30%;
  left: 25%;
  width: 30vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,164,74,0.08) 0%, transparent 65%);
  animation: blobFloat 22s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-3%, 4%) scale(1.04); }
  66% { transform: translate(4%, -3%) scale(0.97); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(5%, -5%) scale(1.06); }
  75% { transform: translate(-3%, 3%) scale(0.95); }
}

.hero-top {
  position: absolute;
  top: 5.5rem;
  left: 2.5rem;
  right: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.7s 0.3s forwards;
}
.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.available-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  background: rgba(92,186,120,0.12);
  border: 1px solid rgba(92,186,120,0.3);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  color: #3a8a54;
  backdrop-filter: blur(8px);
}
.dot-pulse {
  width: 7px; height: 7px;
  background: #5cba78;
  border-radius: 50%;
  position: relative;
}
.dot-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #5cba78;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.8); }
}

/* Headshot only (no floating pills) */
.hero-extras {
  position: absolute;
  top: 5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s forwards;
}
.hero-headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
  background: linear-gradient(135deg, #e8d5c0, #c8b08a);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.hero-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-headshot-placeholder {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.5rem;
  line-height: 1.4;
}

.hero-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(4.5rem, 12vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 0.1em;
  position: relative;
  z-index: 1;
}
.hero-name-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-name-line:first-child { animation-delay: 0.1s; }
.hero-name-line:last-child { animation-delay: 0.22s; font-style: italic; color: var(--accent); }

/* New positioning line */
.hero-positioning {
  font-size: 1rem;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-stats {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s forwards;
  position: relative;
  z-index: 1;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.9);
}
.hero-stat-val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
  max-width: 8rem;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s forwards;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-text {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 44ch;
}
.hero-text strong { color: var(--dark); font-weight: 500; }
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--accent); }
.hero-scroll svg { transition: transform 0.3s; }
.hero-scroll:hover svg { transform: translateY(4px); }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { to { opacity: 1; } }

/* ---------- ABOUT SECTION ---------- */
#about {
  padding: 6rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-text p strong { color: var(--dark); font-weight: 500; }
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}
.skill-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  background: white;
  cursor: default;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.skill-tag:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.workflow-note { margin-top: 2rem; }
.workflow-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.workflow-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

/* ---------- DESIGN APPROACH STRIP (formerly principles) ---------- */
.approach-strip {
  padding: 4rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.3);
}
.approach-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.approach-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.approach-item { text-align: left; }
.approach-icon {
  font-size: 1.8rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.approach-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.approach-sub {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- WORK BENTO GRID ---------- */
#work {
  padding: 6rem 2.5rem;
  background: rgba(240,236,230,0.5);
  border-bottom: 1px solid var(--border);
}
.work-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.work-header .section-heading { margin-bottom: 0; }
.work-header em { font-style: italic; color: var(--accent); }
.view-all {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.view-all:hover { color: var(--accent); }
.bento-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.bento-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.8);
}
.bento-card:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
}
.full-width { grid-column: 1 / -1; flex-direction: row; }
.full-width .card-img { flex: 1.5; height: 300px; }
.card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #111;
  flex-shrink: 0;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.bento-card:hover .card-img img { transform: scale(1.04); }
.split-img {
  position: absolute;
  bottom: 0; right: 0;
  width: 44%; height: 68%;
  overflow: hidden;
  border-top: 2px solid var(--bg);
  border-left: 2px solid var(--bg);
  border-radius: 4px 0 0 0;
  box-shadow: -4px -4px 20px rgba(0,0,0,0.12);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.phones-container {
  background: linear-gradient(140deg, #0d2235, #1a5070);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  height: 220px;
}
.phone-mock {
  width: 78px; height: 170px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s;
}
.bento-card:hover .phone-mock { transform: translateY(-6px); }
.card-content {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.2rem;
}
.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.15);
}
.card-cat {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.15;
}
.card-title em { font-style: italic; color: var(--accent); }
.card-context {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.3rem;
  font-style: italic;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.card-insight {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.4rem;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 0.6rem;
}
.card-link {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 1px;
  margin-top: 0.8rem;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.bento-card:hover .card-link { color: var(--accent); border-color: var(--accent); }
.dark-card { background: var(--dark); color: white; }
.dark-card .card-num { color: rgba(255,255,255,0.15); }
.dark-card .card-cat { color: #6ecfe0; }
.dark-card .card-title em { color: #6ecfe0; }
.dark-card .card-context,
.dark-card .card-desc { color: rgba(255,255,255,0.5); }
.dark-card .card-link { color: #6ecfe0; border-color: rgba(110,207,224,0.4); }
.small-card { grid-column: span 1; }
.small-card .card-content { padding: 1.2rem; }
.print-placeholder {
  height: 150px;
  background: linear-gradient(150deg, #f5efe6, #e0d5c4);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.print-text {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: rgba(0,0,0,0.1);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.social-placeholder {
  height: 150px;
  background: #141210;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1.5rem 1.2rem;
  gap: 6px;
}
.social-bar {
  width: 8px;
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
}

/* ---------- EXPERIENCE ---------- */
#experience {
  padding: 6rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.exp-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.sticky-head { position: sticky; top: 6rem; }
.exp-item {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  transition: padding-left 0.3s;
}
.exp-item:hover { padding-left: 0.5rem; }
.exp-date {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.exp-company { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.15rem; }
.exp-role { font-size: 0.75rem; color: var(--muted); }
.exp-desc { font-size: 0.87rem; line-height: 1.75; color: var(--muted); margin-bottom: 0.8rem; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.exp-tag {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: var(--bg);
  border-radius: 100px;
  color: var(--muted);
}

/* ---------- CONTACT ---------- */
#contact {
  background: var(--dark);
  color: white;
  padding: 7rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.contact-left .section-label { color: var(--accent); }
.contact-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}
.contact-heading em { font-style: italic; color: var(--accent2); }
.contact-availability {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent2);
  margin-bottom: 1rem;
}
.contact-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.contact-link:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-link:hover { color: var(--accent2); }
.contact-link svg { opacity: 0.3; transition: opacity 0.2s, transform 0.2s; }
.contact-link:hover svg { opacity: 1; transform: translate(3px, -3px); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer span, footer a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--accent2); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid, .exp-grid, #contact { grid-template-columns: 1fr; gap: 2rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .full-width { flex-direction: column; }
  .full-width .card-img { height: 220px; }
  .exp-item { grid-template-columns: 1fr; gap: 0.3rem; }
  #hero { padding: 0 1.2rem 2.5rem; }
  .hero-top { left: 1.2rem; right: 1.2rem; top: 4.5rem; }
  .hero-tag { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-extras { top: 4.5rem; right: 1.2rem; }
  .hero-headshot { width: 60px; height: 60px; }
  .hero-stats { gap: 0.4rem; }
  .hero-stat { padding: 0.4rem 0.75rem; }
  section { padding: 3rem 1.2rem; }
  .approach-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { flex-direction: column; gap: 0.4rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
}
