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

:root {
  --bg-deep: #fbfbfb;
  --bg-primary: #f5f5f7;
  --bg-secondary: #ebebed;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #fafafa;
  --bg-input: #f5f5f7;
  --accent: #0071e3;
  --accent-dim: rgba(0, 113, 227, 0.12);
  --accent-glow: rgba(0, 113, 227, 0.05);
  --tone-lavender: rgba(100, 100, 120, 0.06);
  --tone-lavender-deep: rgba(90, 90, 110, 0.1);
  --tone-gold: rgba(160, 150, 130, 0.12);
  --tone-gold-soft: rgba(180, 175, 165, 0.08);
  --tone-mist: rgba(200, 210, 220, 0.2);
  --hero-violet-border: rgba(98, 88, 150, 0.2);
  --hero-violet-mat: linear-gradient(168deg, rgba(252, 252, 255, 0.98) 0%, rgba(246, 244, 252, 0.94) 45%, rgba(240, 242, 252, 0.92) 100%);
  --hero-violet-shadow: rgba(72, 62, 120, 0.12);
  --ink-soft: #1d1d1f;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-muted: #86868b;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.05);
  --font-heading: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --nav-h: 52px;
  --max-w: 1068px;
  --section-gap: 80px;
  --radius: 22px;
  --radius-pill: 980px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --transition: 0.32s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  color-scheme: light;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.47059;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: #f5f5f7;
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 255, 255, 0.9), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(230, 235, 240, 0.5), transparent 45%),
    linear-gradient(180deg, #fafafa 0%, #f5f5f7 45%, #f0f0f2 100%);
  background-attachment: fixed;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover { color: #0077ed; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.022em;
  color: var(--text-primary);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, 4vw);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  word-spacing: -1px;
}

.nav-logo:hover { color: var(--accent); }

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 72px) max(28px, 5vw) 100px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 250, 255, 0.75) 45%, rgba(245, 240, 252, 0.5) 100%);
}

/* ─── HERO ANIMATIONS (cinematic, refined) ─── */
@keyframes heroGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes heroBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.012); opacity: 0.92; }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes heroGlowPulse {
  0%, 100% { box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset, 0 20px 50px rgba(60, 55, 95, 0.06); }
  50% { box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset, 0 20px 60px rgba(100, 95, 160, 0.12), 0 0 40px rgba(120, 110, 200, 0.04); }
}

@keyframes heroReveal {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); }
  40% { opacity: 1; clip-path: inset(0 0% 0 0); }
  100% { opacity: 1; clip-path: inset(0 0% 0 0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateY(0) translateX(-50%); }
  50% { opacity: 1; transform: translateY(6px) translateX(-50%); }
}

@keyframes heroDividerPulse {
  0%, 100% { width: min(72px, 18vw); opacity: 0.6; }
  50% { width: min(96px, 24vw); opacity: 1; }
}

.hero--home .hero-bg {
  background-size: 200% 200%;
  animation: heroGradientShift 28s ease-in-out infinite, heroBreath 14s ease-in-out infinite;
}

.hero--home .hero-content {
  animation: heroFadeUp 1.2s cubic-bezier(0.2, 0.6, 0.3, 1) 0.15s both, heroGlowPulse 8s ease-in-out 1.6s infinite;
}

.hero--home .hero-photo-wrap {
  animation: heroFadeUp 1.4s cubic-bezier(0.2, 0.6, 0.3, 1) 0.3s both, heroDrift 12s ease-in-out 2s infinite;
}

.hero--home .hero-name {
  animation: heroReveal 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s both;
}

.hero--home .hero-alias {
  animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s both;
}

.hero--home .hero-subtitle {
  animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s both;
}

.hero--home .hero-statement {
  animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.8s both;
}
/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: heroFadeIn 1.5s ease 1.8s both;
  cursor: pointer;
}

.hero-scroll-indicator .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(110, 110, 118, 0.35);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: rgba(110, 110, 118, 0.45);
  border-radius: 2px;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero-scroll-indicator .label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(110, 110, 118, 0.4);
}

/* Parallax scroll effect (JS-driven) */
.hero-parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ─── HERO REFINEMENTS ─── */
.hero--home {
  min-height: min(118dvh, 1240px);
  padding-top: calc(var(--nav-h) + clamp(3.25rem, 10vh, 6.5rem));
  padding-bottom: clamp(5rem, 16vh, 9rem);
  isolation: isolate;
  text-rendering: optimizeLegibility;
}

/* Cool blue–violet atmosphere (soft, not heavy) */
.hero.hero--home::before,
.hero.hero--home::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
}

.hero.hero--home::before {
  width: min(58vw, 440px);
  height: min(58vw, 440px);
  top: -5%;
  right: -12%;
  background: radial-gradient(circle, rgba(175, 185, 235, 0.35) 0%, rgba(220, 225, 245, 0.15) 50%, transparent 72%);
}

.hero.hero--home::after {
  width: min(50vw, 450px);
  height: min(50vw, 450px);
  bottom: 0;
  left: -10%;
  background: radial-gradient(circle, rgba(200, 195, 230, 0.22) 0%, rgba(235, 238, 250, 0.12) 55%, transparent 72%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 85% 60% at 50% -5%, rgba(255, 255, 255, 0.92) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(238, 240, 252, 0.55) 0%, transparent 50%),
    linear-gradient(185deg, rgba(252, 252, 255, 0.88) 0%, rgba(246, 246, 250, 0.65) 55%, rgba(242, 242, 248, 0.78) 100%);
  pointer-events: none;
}

/* With photo: no heavy white wash over the frame — light vignette only */
.hero--has-photo .hero-bg {
  background:
    radial-gradient(ellipse 70% 55% at 0% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(248, 248, 255, 0.4) 0%, transparent 50%),
    linear-gradient(165deg, rgba(250, 250, 252, 0.75) 0%, rgba(244, 244, 250, 0.5) 100%);
}

/* Very light grain + paper texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 3px,
      rgba(70, 60, 120, 0.012) 3px,
      rgba(70, 60, 120, 0.012) 4px
    );
  background-size: 200px 200px, auto;
  pointer-events: none;
}

.page-home .hero-bg {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(calc(2rem - 2px), 4vw, calc(3rem - 2px));
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 max(22px, 4.5vw);
}

/* Balanced row: copy left, framed photo right */
.hero--has-photo .hero-inner {
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: clamp(calc(2rem - 2px), 4.5vw, calc(3.5rem - 2px));
  text-align: left;
}

.hero-photo-wrap {
  display: none;
  flex: 1 1 clamp(500px, 300%, 1200px);
  max-width: 1220px;
  align-items: center;
  justify-content: center;
}

.hero--has-photo .hero-photo-wrap:not([hidden]) {
  display: flex;
}

.hero-photo-frame {
  width: 264%;
  padding: clamp(0.5rem, 1.2vw, 0.75rem);
  border-radius: clamp(18px, 2.2vw, 24px);
  background: var(--hero-violet-mat);
  border: 1px solid var(--hero-violet-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 40px var(--hero-violet-shadow),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  max-height: min(59vh, 590px);
  border-radius: clamp(12px, 1.6vw, 18px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(250, 250, 252, 0.9);
  filter: contrast(1.06) saturate(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.75rem, 4.5vw, 3.25rem);
  border-radius: clamp(22px, 3.5vw, 30px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 20px 50px rgba(60, 55, 95, 0.06);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}

.hero--home .hero-content {
  max-width: 34rem;
  padding: clamp(2.25rem, 4.8vw, 3.5rem) clamp(1.85rem, 4.5vw, 3.25rem);
}

.hero--has-photo .hero-content {
  flex: 0 1 54%;
  max-width: 34rem;
  margin: 0;
  text-align: left;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  margin-bottom: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--text-primary);
  line-height: 1.02;
}

.hero--home .hero-name {
  font-size: clamp(2.7rem, 2.8vw + 1.85rem, 4.35rem);
  font-weight: 700;
  letter-spacing: -0.048em;
  line-height: 1.03;
  color: #0d0d0f;
}

.hero-alias {
  font-family: var(--font-body);
  font-size: clamp(1.98rem, 4vw, 2.43rem);
  font-weight: 620;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.35rem);
}

.hero--home .hero-alias {
  font-size: clamp(0.7rem, 0.35vw + 0.65rem, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.19em;
  color: rgba(110, 110, 118, 0.88);
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 2.1vw, 1.14rem);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.62;
}

.hero--home .hero-subtitle {
  font-size: clamp(0.9rem, 0.9vw + 0.72rem, 1.0625rem);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.028em;
  color: #86868d;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero--has-photo .hero-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.hero-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.15vw, 1.38rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.62;
  max-width: 30em;
  margin: 0 auto;
  letter-spacing: -0.008em;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

.hero--home .hero-statement {
  font-size: clamp(0.98rem, 0.85vw + 0.72rem, 1.1875rem);
  font-weight: 400;
  line-height: 1.74;
  letter-spacing: -0.012em;
  color: #63636b;
  font-style: italic;
}

.hero--has-photo .hero-statement {
  margin-left: 0;
  margin-right: 0;
}

.hero-divider {
  width: min(72px, 18vw);
  height: 2px;
  margin: clamp(2.25rem, 4.5vw, 3rem) auto;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 110, 175, 0.35) 30%,
    rgba(0, 113, 227, 0.2) 70%,
    transparent
  );
  box-shadow: 0 0 20px rgba(100, 95, 160, 0.08);
}

.hero--home .hero-divider {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  animation: heroFadeIn 1s ease 0.5s both, heroDividerPulse 6s ease-in-out 2s infinite;
}

.hero--has-photo .hero-divider {
  margin-left: 0;
  margin-right: 0;
}

/* Homepage: secondary content */
.home-after-hero {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
  margin-top: clamp(3rem, 8vw, 6rem);
  max-width: min(var(--max-w), calc(100% - 48px));
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 250, 252, 0.92) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 50px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-awards-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 36px;
}

.home-award-card {
  padding: 28px 32px !important;
  border-left: 3px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 250, 0.95) 100%);
}

.home-award-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.home-notice {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 max(28px, 5vw) 3.5rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-notice a {
  font-weight: 500;
}

/* ─── SECTIONS ─── */
.section {
  padding: var(--section-gap) max(28px, 5vw);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.028em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 42em;
  line-height: 1.5;
  margin-bottom: 36px;
}

/* Comfortable space below page header into filters / grids */
.section.section-after-header {
  padding-top: clamp(2.25rem, 5vw, 3.75rem);
}

.section-divider {
  width: 100%;
  max-width: 56px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.06));
  margin-bottom: 36px;
}

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tone-lavender-deep), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(0, 0, 0, 0.1);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.card:hover::before { opacity: 1; }

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  background: var(--bg-secondary);
}

.card-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.card-year {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.card-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: italic;
}

.card-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; }

.card-link {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent);
  padding: 13px 28px;
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.card-link:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.22);
}

.card-featured-badge {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* ─── YOUTUBE EMBED ─── */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  margin: 20px 0;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-card);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── WORK DETAIL MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  justify-content: center;
  align-items: flex-start;
  padding: 88px 24px;
  overflow-y: auto;
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  padding: 44px;
  position: relative;
  min-width: 0;
  overflow-x: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

#modalBody,
.work-modal-body,
.work-modal-section {
  min-width: 0;
}

.work-modal-title,
.work-modal-copy,
.work-modal-meta {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.work-modal-title {
  font-size: clamp(1.55rem, 5vw, 2rem);
  margin-bottom: 4px;
}

.work-modal-description {
  margin-top: 16px;
}

.work-modal-copy {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
}

.work-modal-section {
  margin-top: 20px;
}

.work-modal-program-note {
  font-size: 0.9rem;
  font-style: italic;
}

.work-modal-meta {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-secondary);
  border: none;
  color: var(--text-muted);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
}

.modal-close:hover {
  color: var(--text-primary);
  background: #ebebed;
}

/* ─── FILTERS ─── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
  margin-bottom: 36px;
  margin-top: 8px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.filter-btn:hover {
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text-primary);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(80, 60, 120, 0.06);
}

.filter-btn.active {
  background: linear-gradient(145deg, var(--ink-soft) 0%, #4a4d62 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(58, 61, 79, 0.2);
}

/* ─── WORKS SEARCH & YEAR FILTER ─── */
.works-search {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  border-radius: 980px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.works-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.works-year-select {
  padding: 12px 18px;
  border-radius: 980px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.works-year-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

/* ─── ABOUT PAGE ─── */
.about-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 88px;
}

.about-portrait {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.about-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 48px;
  margin-top: 72px;
}

.about-block-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.about-list { display: flex; flex-direction: column; gap: 10px; }

.about-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-dim);
}

.edu-item { margin-bottom: 18px; }

.edu-institution {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.edu-degree { font-size: 0.88rem; color: var(--text-secondary); }

.edu-years { font-size: 0.8rem; color: var(--text-muted); }

.skill-tags { display: flex; flex-wrap: wrap; gap: 14px 16px; }

.skill-tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ─── GALLERY ─── */
.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.gallery-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.gallery-admin-link {
  padding: 10px 20px;
  font-size: 0.78rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.gallery-item:nth-child(4n + 1) { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(4n + 3) { aspect-ratio: 1 / 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.gallery-item:hover img { transform: scale(1.04); }

/* ─── SCHEDULE ─── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 0;
}

.timeline-month {
  display: grid;
  grid-template-columns: minmax(130px, 150px) 24px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 28px 12px 12px 0;
  position: relative;
}

.timeline-month:first-child {
  padding-top: 0;
}

.timeline-month::before {
  content: '';
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,113,227,0.18);
  z-index: 2;
}

.timeline-month span {
  grid-column: 3;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(130px, 150px) 24px minmax(0, 1fr);
  column-gap: 18px;
  padding: 28px 12px 28px 0;
  transition: background var(--transition);
  border-radius: 12px;
  margin: 0;
  position: relative;
}

.timeline-item::before {
  content: '';
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  margin-top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg-primary);
  transition: background var(--transition), border-color var(--transition);
  z-index: 2;
}

.timeline-item::after {
  content: '';
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: stretch;
  width: 1px;
  min-height: 100%;
  background: linear-gradient(180deg, var(--accent-dim), rgba(0,0,0,0.04) 80%);
  pointer-events: none;
}

.timeline-item:hover {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
}

.timeline-item:hover::before {
  background: var(--accent);
  border-color: var(--accent-dim);
}

.timeline-item--past {
  opacity: 0.55;
}

.timeline-item--past:hover {
  opacity: 0.85;
}

.timeline-item--past::before {
  background: var(--text-muted);
  border-color: transparent;
}

.timeline-date {
  grid-column: 1;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  letter-spacing: -0.02em;
  padding-top: 1px;
  text-align: right;
}

.timeline-content {
  grid-column: 3;
  min-width: 0;
}

.timeline-date-badge {
  display: inline-block;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 4px 16px;
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.timeline-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.timeline-details {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.timeline-link {
  font-size: 0.85rem;
  margin-top: 10px;
  display: inline-block;
  font-weight: 500;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-block { margin-bottom: 36px; }

.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.contact-value a { color: var(--accent); }

.social-links { display: flex; gap: 20px; margin-top: 10px; }

.social-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.social-link:hover { color: var(--accent); }

/* ─── RESEARCH ─── */
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.research-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-card);
}

.research-card:hover {
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.research-icon {
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--accent);
}

.research-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.research-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── PRESS KIT ─── */
.presskit-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.25);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #5a7ec4;
  border-color: #5a7ec4;
  box-shadow: 0 10px 28px rgba(0, 113, 227, 0.28);
}

.btn-sm { padding: 11px 24px; font-size: 0.8rem; }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 52px max(28px, 5vw);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(245, 245, 247, 0.95) 100%);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* ─── LOADING ─── */
.loading {
  text-align: center;
  padding: 72px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  animation: spin 0.65s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── EMPTY STATE ─── */
.empty-state {
  text-align: center;
  padding: 72px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── PAGE HEADER (subpages) ─── */
.page-header {
  padding: calc(var(--nav-h) + 80px) max(28px, 5vw) 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 100%);
  border-radius: 0 0 32px 32px;
}

/* ─── UPLOAD ─── */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  margin-bottom: 36px;
  background: var(--bg-card);
}

.upload-area:hover {
  border-color: var(--accent-dim);
  background: var(--accent-glow);
}

.upload-area input[type="file"] { display: none; }

.upload-text { font-size: 0.92rem; color: var(--text-secondary); }

.upload-text strong { color: var(--accent); }

/* Hero: stack on narrow viewports */
@media (max-width: 900px) {
  .hero--has-photo .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: clamp(calc(1.75rem - 2px), 5vw, calc(2.5rem - 2px));
  }

  .hero--has-photo .hero-content {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
  }

  .hero--has-photo .hero-subtitle,
  .hero--has-photo .hero-statement {
    margin-left: auto;
    margin-right: auto;
  }

  .hero--has-photo .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-photo-wrap {
    flex: 1 1 auto;
    max-width: min(204%, 775px);
    width: 100%;
  }

  .hero-photo {
    max-height: min(50vh, 500px);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
    --nav-h: 48px;
  }

  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open a {
    padding: 16px 28px;
    font-size: 0.85rem;
  }

  .nav-toggle { display: flex; }

  .hero-name { font-size: clamp(2.25rem, 11vw, 3.25rem); }

  .hero--home .hero-name {
    font-size: clamp(2.35rem, 9vw + 0.5rem, 3.35rem);
    letter-spacing: -0.04em;
  }

  .hero--home .hero-subtitle {
    font-size: clamp(0.88rem, 2.8vw, 1rem);
    line-height: 1.68;
  }

  .hero--home .hero-statement {
    font-size: clamp(0.94rem, 2.5vw, 1.08rem);
    line-height: 1.7;
  }

  .hero-photo {
    max-height: min(46vh, 440px);
  }

  .hero-scroll-indicator {
    display: none;
  }

  .about-header { grid-template-columns: 1fr; gap: 40px; }

  .about-portrait { width: 220px; height: 270px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Timeline: keep date, marker, and content in separate columns on mobile */
  .timeline {
    padding-left: 0;
    margin-left: 0;
  }

  .timeline-month {
    grid-template-columns: minmax(76px, 5.5rem) 18px minmax(0, 1fr);
    column-gap: 12px;
    padding: 20px 0 8px;
  }

  .timeline-item {
    grid-template-columns: minmax(76px, 5.5rem) 18px minmax(0, 1fr);
    column-gap: 12px;
    margin: 0;
    padding: 20px 0;
  }

  .timeline-date {
    white-space: normal;
    line-height: 1.35;
  }

  .timeline-date-badge {
    font-size: 0.75rem;
    padding: 3px 12px;
  }

  .timeline-title {
    font-size: 0.95rem;
  }

  .timeline-details {
    font-size: 0.82rem;
  }

  .card-grid { grid-template-columns: 1fr; gap: 32px; }

  .gallery-grid { gap: 20px 16px; }

  .section { padding: var(--section-gap) 22px; }

  .page-header { padding: calc(var(--nav-h) + 48px) 22px 48px; }

  .hero { padding-bottom: 72px; }

  .hero--home {
    min-height: min(108dvh, 1100px);
    padding-bottom: clamp(4rem, 12vh, 7rem);
  }

  .hero--home .hero-content {
    padding: 1.85rem 1.35rem;
    border-radius: 24px;
  }

  .home-after-hero {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: clamp(3.5rem, 12vw, 7rem);
    border-radius: 22px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .works-search {
    width: 100%;
  }

  .modal-content {
    margin: 40px 16px;
    padding: 28px 20px;
    max-height: 80vh;
    border-radius: 18px;
  }

  .research-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .research-card {
    padding: 28px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-block { margin-bottom: 28px; }

  .social-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .upload-area {
    padding: 36px 20px;
  }
}

/* ─── SMALL PHONES (≤480px) ─── */
@media (max-width: 480px) {
  :root {
    --section-gap: 64px;
    --nav-h: 46px;
  }

  html { font-size: 15px; }

  .hero--home {
    min-height: min(100dvh, 800px);
    padding: 28px 16px;
    padding-bottom: clamp(3rem, 10vh, 5rem);
  }

  .hero--home .hero-name {
    font-size: clamp(1.85rem, 10vw, 2.5rem);
  }

  .hero--home .hero-subtitle {
    font-size: clamp(0.78rem, 2.5vw, 0.88rem);
    line-height: 1.6;
  }

  .hero--home .hero-statement {
    font-size: clamp(0.82rem, 2.2vw, 0.92rem);
    line-height: 1.6;
  }

  .hero--home .hero-content {
    padding: 1.4rem 1.1rem;
    border-radius: 18px;
  }

  .hero-scroll-indicator {
    display: none !important;
  }

  .section {
    padding: var(--section-gap) 16px;
  }

  .section-title {
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }

  .page-header {
    padding: calc(var(--nav-h) + 36px) 16px 36px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    border-radius: 16px;
  }

  .card-content {
    padding: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .filter-bar {
    gap: 6px;
    flex-wrap: wrap;
  }

  .filter-btn {
    font-size: 0.7rem;
    padding: 10px 18px;
    border-radius: 980px;
  }

  /* Works page search/year layout */
  .works-search {
    width: 100%;
    font-size: 0.8rem;
    padding: 10px 14px;
  }

  .works-year-select {
    font-size: 0.8rem;
    padding: 10px 14px;
  }

  /* Timeline compact */
  .timeline-month,
  .timeline-item {
    grid-template-columns: minmax(64px, 4.75rem) 16px minmax(0, 1fr);
    column-gap: 10px;
  }

  .timeline-item {
    padding: 16px 0;
  }

  .timeline-date-badge {
    font-size: 0.7rem;
    padding: 2px 10px;
  }

  .timeline-title {
    font-size: 0.88rem;
  }

  .timeline-details {
    font-size: 0.78rem;
  }

  .timeline-month {
    font-size: 0.72rem;
    padding: 20px 0 8px;
  }

  /* Nav */
  .nav-links.open a {
    padding: 14px 24px;
    font-size: 0.82rem;
  }

  /* Footer */
  .footer {
    padding: 36px 16px;
  }

  .footer-name {
    font-size: 0.92rem;
  }

  .home-after-hero {
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 16px;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: clamp(2.5rem, 10vw, 5rem);
  }

  .about-portrait {
    width: 180px;
    height: 220px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.78rem;
  }

  .btn-sm {
    padding: 10px 18px;
    font-size: 0.72rem;
  }

  .upload-area {
    padding: 28px 16px;
  }

  .modal-content {
    margin: 24px 12px;
    padding: 22px 16px;
    border-radius: 14px;
  }

  .research-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .presskit-box {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .contact-grid {
    gap: 36px;
  }
}
