/* =========================================
   MENARD SIMOYA - PORTFOLIO STYLESHEET
   ========================================= */

/* --- TOKENS --- */
:root {
  --navy:       #1e3a5f;
  --navy-light: #2b4a72;
  --accent:     #0369a1;
  --accent-light: #0ea5e9;
  --off-white:  #f8fafc;
  --white:      #ffffff;
  --gray-100:   #f1f5f9;
  --gray-300:   #cbd5e1;
  --gray-600:   #475569;
  --gray-900:   #1e3a5f;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:      8px;
  --transition:  0.2s ease;
  --shadow:      0 4px 24px rgba(30,58,95,0.08);
  --shadow-lg:   0 12px 48px rgba(30,58,95,0.12);
}
/* Legacy alias for accent (replaces gold) */
:root { --gold: var(--accent); --gold-light: var(--accent-light); }

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.footer { margin-top: auto; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- NAVIGATION --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-light);
  padding: 1rem 2rem;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 0.65rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
}

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
  min-height: 200px;
}
.hero-img-placeholder {
  width: 100%;
  height: 460px;
  border-radius: 12px;
}
.hero-headshot-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

/* =========================================
   HOMEPAGE
   ========================================= */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text-alone {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
}
.hero-text-alone .hero-tagline {
  margin-left: auto;
  margin-right: auto;
}
.hero-text-alone .hero-cta {
  justify-content: center;
}
.hero-text-alone .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}
.hero-text-alone .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
/* Animated background (home only) */
.hero-with-bg {
  position: relative;
  overflow: hidden;
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-with-bg .hero-text {
  position: relative;
  z-index: 1;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.35) 0%, rgba(43, 74, 114, 0.28) 40%, rgba(59, 130, 246, 0.18) 100%);
  border: 1px solid rgba(43, 74, 114, 0.4);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.15);
  animation: bubble-up 18s infinite ease-in-out;
}
.bubble:nth-child(1) { left: 8%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 16s; }
.bubble:nth-child(2) { left: 22%; width: 40px; height: 40px; animation-delay: -2s; animation-duration: 20s; }
.bubble:nth-child(3) { left: 45%; width: 80px; height: 80px; animation-delay: -5s; animation-duration: 22s; }
.bubble:nth-child(4) { left: 68%; width: 50px; height: 50px; animation-delay: -1s; animation-duration: 18s; }
.bubble:nth-child(5) { left: 85%; width: 35px; height: 35px; animation-delay: -8s; animation-duration: 19s; }
.bubble:nth-child(6) { left: 15%; width: 45px; height: 45px; animation-delay: -11s; animation-duration: 21s; }
.bubble:nth-child(7) { left: 55%; width: 55px; height: 55px; animation-delay: -4s; animation-duration: 17s; }
.bubble:nth-child(8) { left: 78%; width: 70px; height: 70px; animation-delay: -7s; animation-duration: 23s; }
@keyframes bubble-up {
  0% { transform: translateY(100vh) scale(0.6); opacity: 0; }
  10% { opacity: 0.7; }
  50% { opacity: 0.65; }
  90% { opacity: 0.55; }
  100% { transform: translateY(-120vh) scale(1); opacity: 0; }
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  white-space: nowrap;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(30, 58, 95, 0.15);
}
.hero-name em { font-style: italic; color: var(--gold); text-shadow: 0 2px 12px rgba(3, 105, 161, 0.25); }
.greeting {
  display: inline-block;
  color: var(--gold);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@keyframes greetFadeIn {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  max-width: 48ch;
  margin-bottom: 2rem;
  background: rgba(30, 58, 95, 0.06);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  border-radius: 0 6px 6px 0;
  letter-spacing: 0.01em;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Highlights */
.highlights {
  background: var(--navy);
  padding: 5rem 2rem;
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 2.5rem;
}
.section-title.dark { color: var(--navy); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: var(--accent-light);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.25), 0 8px 32px rgba(0, 0, 0, 0.15);
}
.card-icon {
  margin-bottom: 1.25rem;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.card p + p { margin-top: 0.75rem; }
.card-link {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.card-link:hover { color: var(--white); }

/* Staggered fade-in */
.card-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: cardFadeIn 0.6s ease forwards;
}
@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Snapshot */
.snapshot { padding: 5rem 2rem; }
.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.snapshot-text-only {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.snapshot-img .img-placeholder { height: 340px; }
.snapshot-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
}
.snapshot-text .eyebrow,
.snapshot-text-only .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.snapshot-text h2,
.snapshot-text-only h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.snapshot-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  max-width: 44ch;
}
.snapshot-text-only p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   INTERIOR PAGES - SHARED
   ========================================= */
.page-header {
  background: var(--navy);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}
.page-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
}
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.page-content p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}

/* =========================================
   BIO PAGE
   ========================================= */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.bio-sidebar .img-placeholder { height: 300px; border-radius: 10px; }
.bio-headshot-img {
  width: 100%;
  height: auto;
  aspect-ratio: 882 / 1352;
  object-fit: contain;
  border-radius: 10px;
  background: var(--gray-100);
}
.bio-sidebar .sidebar-tags { margin-top: 1.5rem; }
.tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin: 0.25rem 0.2rem;
}
.bio-main h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.bio-main .role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.bio-main p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.bio-main h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.highlights-list { padding-left: 0; }
.highlights-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.highlights-list li::before {
  content: "▸";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* =========================================
   MISSION PAGE
   ========================================= */
.mission-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.mission-content p {
  font-size: 1.08rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.mission-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--gray-100);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem !important;
  color: var(--navy) !important;
  margin: 0 !important;
}

/* =========================================
   RESUME PAGE
   ========================================= */
.resume-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.resume-download {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.resume-section { margin-bottom: 2.5rem; }
.resume-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.4rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.resume-item { margin-bottom: 1.25rem; }
.resume-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.resume-item-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.resume-item-org { color: var(--gold); font-size: 0.9rem; font-weight: 500; }
.resume-item-date {
  font-size: 0.82rem;
  color: var(--gray-600);
  white-space: nowrap;
}
.resume-item ul {
  margin-top: 0.4rem;
  padding-left: 1.2rem;
  list-style: disc;
}
.resume-item ul li {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.2rem;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.skill-chip {
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* =========================================
   PROJECTS PAGE
   ========================================= */
.projects-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.project-img .img-placeholder { height: 200px; border-radius: 0; border: none; border-bottom: 1px solid var(--gray-300); }
.project-card-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: linear-gradient(135deg, #1a6fa0, #2dd4bf);
  padding: 1rem;
  border-bottom: 1px solid var(--gray-300);
}
.project-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.project-tags { margin-bottom: 0.75rem; }
.project-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.project-body p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.project-desc {
  transition: max-height 0.3s ease;
}
.project-desc.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.read-more-btn:hover { color: var(--navy); }
.project-link {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
}
.project-link:hover { color: var(--gold); }

/* =========================================
   RESEARCH PAGE
   ========================================= */
.research-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.research-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.research-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.research-meta {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.research-item p { font-size: 0.95rem; color: var(--gray-600); }
.research-img {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

/* Carousel */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 768px;
  margin: 0 auto;
}
.carousel-track {
  position: relative;
  width: 100%;
  max-width: 768px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gray-100);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity var(--transition), background var(--transition);
  pointer-events: auto;
}
.carousel-btn:hover { opacity: 1; background: var(--navy-light); }
.carousel-btn-left { left: -22px; }
.carousel-btn-right { right: -22px; }
.research-img .img-placeholder { height: 220px; }
.research-photo {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}
.research-img {
  background: var(--gray-100);
  padding: 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.contact-intro { color: var(--gray-600); margin-bottom: 2.5rem; font-size: 1.05rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-link-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.contact-link-item:hover { color: var(--gold); }
.contact-link-item .icon { font-size: 1.2rem; }
.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy);
  text-align: center;
  padding: 2rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.footer a { color: var(--gold); }
.footer a:hover { text-decoration: underline; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-cta { justify-content: center; }
  .hero-img-placeholder { height: 280px; }
  .cards { grid-template-columns: 1fr; }
  .snapshot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bio-grid { grid-template-columns: 1fr; gap: 2rem; }
  .resume-item-header { flex-direction: column; }
  .contact-links { flex-direction: column; gap: 1rem; }
  .projects-grid { grid-template-columns: 1fr; }
}
