@charset "UTF-8";

:root {
  --cream: #F7F3EC;
  --cream-2: #EFE8DC;
  --ink: #131316;
  --ink-soft: #2A2A2F;
  --muted: #6B6960;
  --line: rgba(19,19,22,0.12);
  --coral: #E85A3C;
  --coral-deep: #C8462C;
  --teal: #0F5C5C;
  --teal-light: #2C8C8C;
  --gold: #E8B042;
  --plum: #6B2D5C;
  --shadow: 0 24px 60px -20px rgba(19,19,22,0.25);
}
body.palette-cool {
  --cream: #ECEFF3;
  --cream-2: #DCE2EA;
  --ink: #0F1E3D;
  --ink-soft: #1F2D4D;
  --muted: #6F7790;
  --line: rgba(15,30,61,0.13);
  --coral: #C2683B;
  --coral-deep: #9C5128;
  --teal: #2D5A8C;
  --teal-light: #4A7AAD;
  --gold: #D4B896;
  --plum: #1F3A5F;
  --shadow: 0 24px 60px -20px rgba(15,30,61,0.30);
}
body.palette-cool .hero-visual { background: linear-gradient(135deg, #1F3A5F 0%, #2D5A8C 100%); }
body.palette-cool .hero-visual::after {
  background:
    radial-gradient(circle at 30% 20%, rgba(212,184,150,0.45), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(194,104,59,0.40), transparent 50%);
}
body.palette-cool .hero-bg-shape { background: radial-gradient(circle at center, rgba(194,104,59,0.18), transparent 70%); }
body.palette-cool .hero-bg-shape-2 { background: radial-gradient(circle at center, rgba(45,90,140,0.16), transparent 70%); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(19,19,22,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  max-width: 1280px; margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); display: inline-block; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--coral);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  display: flex; gap: 4px;
  background: var(--cream-2);
  padding: 4px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}
.lang-switch button.active { background: var(--ink); color: var(--cream); }

.palette-toggle {
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  width: 44px; height: 30px;
  border-radius: 999px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  transition: all 0.25s ease;
  padding: 0 8px;
}
.palette-toggle:hover { border-color: var(--coral); }
.palette-toggle .dot-a, .palette-toggle .dot-b {
  width: 10px; height: 10px; border-radius: 50%;
  transition: all 0.3s ease;
}
.palette-toggle .dot-a { background: #E85A3C; }
.palette-toggle .dot-b { background: #2D5A8C; }
body.palette-cool .palette-toggle .dot-a { transform: scale(0.7); opacity: 0.5; }
body:not(.palette-cool) .palette-toggle .dot-b { transform: scale(0.7); opacity: 0.5; }

/* ====== HAMBURGER ====== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,19,22,0.97);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 32px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .mobile-lang {
  display: flex; gap: 8px; margin-top: 16px;
}
.mobile-menu .mobile-lang button {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.mobile-menu .mobile-lang button.active {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}

/* Palette banner */
.palette-banner {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 99;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 16px 12px 20px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.4);
  font-size: 13px;
  font-weight: 500;
  animation: slideUp 0.6s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.palette-banner .banner-name { letter-spacing: 0.04em; }
.palette-banner .banner-name em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}
body.palette-cool .palette-banner .banner-name em { color: var(--gold); }
.palette-banner .banner-cta {
  background: var(--coral);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.palette-banner .banner-cta:hover { transform: translateY(-1px); background: var(--coral-deep); }
@media (max-width: 600px) {
  .palette-banner { bottom: 16px; right: 16px; left: 16px; justify-content: space-between; }
}

/* ====== HERO ====== */
.hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 16px;
  margin-bottom: 24px;
}
.hero-bg-shape {
  position: absolute;
  top: 0; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(232,90,60,0.18), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.hero-text-overlay {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 65%;
  background: linear-gradient(to right, rgba(19,19,22,0.55) 0%, rgba(19,19,22,0.15) 80%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-bg-shape-2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, rgba(15,92,92,0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.1); }
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--coral); display: inline-block;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 28px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.35);
}
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.hero .btn-primary { background: var(--coral); color: #fff; }
.hero .btn-primary:hover { background: var(--coral-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.hero .btn-secondary { color: var(--cream); border: 1.5px solid rgba(247,243,236,0.5); background: rgba(247,243,236,0.08); }
.hero .btn-secondary:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--plum) 100%);
  box-shadow: var(--shadow);
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(232,176,66,0.4), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(232,90,60,0.5), transparent 50%);
}
.hero-visual .photo-label {
  position: absolute; bottom: 24px; left: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.hero-visual::after { z-index: 2; mix-blend-mode: multiply; opacity: 0.25; }

.hero-marquee {
  margin-top: 100px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
}
.marquee-track {
  display: flex; gap: 80px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--muted);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 80px;
}
.marquee-item::after { content: '\2726'; color: var(--coral); font-size: 16px; }

/* ====== SECTION HEADERS ====== */
section { padding: 120px 0; position: relative; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap; gap: 32px;
}
.section-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.section-title em { font-style: italic; color: var(--coral); font-weight: 300; }

/* ====== COLLABORATORS ====== */
.collabs { background: var(--cream-2); padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.collabs-inner { display: flex; flex-direction: column; gap: 40px; }
.collabs-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); }
.collab-groups { display: flex; flex-direction: column; gap: 28px; }
.collab-group { display: flex; flex-direction: column; gap: 10px; }
.collab-label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.collab-names { font-family: 'Fraunces', serif; font-size: clamp(15px, 1.8vw, 20px); color: var(--ink-soft); line-height: 1.7; font-weight: 400; }

/* ====== BIO ====== */
.bio { background: var(--cream); }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 60px; align-items: start; }
.bio-photo { position: sticky; top: 100px; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.bio-text p { font-size: 17px; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.7; }
.bio-text p:first-of-type::first-letter { font-family: 'Fraunces', serif; font-size: 64px; float: left; line-height: 0.85; margin: 8px 12px 0 0; color: var(--coral); font-weight: 500; }
.timeline { position: relative; padding-left: 0; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: start; transition: all 0.3s ease; cursor: default; }
.timeline-item:hover { padding-left: 12px; }
.timeline-item:hover .year { color: var(--coral); }
.year { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; color: var(--ink); transition: color 0.2s ease; }
.role { font-size: 15px; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
.place { font-size: 14px; color: var(--muted); }
.timeline-item.highlight .role { color: var(--coral); }
.timeline-item.highlight .year::after { content: ' \25CF'; color: var(--coral); font-size: 10px; vertical-align: middle; }

/* ====== AGENDA ====== */
.agenda { background: var(--ink); color: var(--cream); padding: 140px 0; }
.agenda .section-eyebrow { color: var(--gold); }
.agenda .section-title em { color: var(--gold); }
.concerts { display: flex; flex-direction: column; }
.concert { display: grid; grid-template-columns: 120px 1fr 1fr 1fr auto; gap: 32px; padding: 32px 0; border-bottom: 1px solid rgba(247,243,236,0.15); align-items: center; transition: all 0.3s ease; cursor: pointer; }
.concert:hover { padding-left: 16px; border-bottom-color: var(--gold); }
.concert:hover .concert-title { color: var(--gold); }
.concert-date { font-family: 'Fraunces', serif; }
.concert-date .day { font-size: 38px; font-weight: 500; line-height: 1; display: block; }
.concert-date .month { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 6px; display: block; }
.concert-title { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; line-height: 1.2; transition: color 0.25s ease; }
.concert-venue, .concert-program { font-size: 14px; color: rgba(247,243,236,0.7); line-height: 1.5; }
.concert-cta { color: var(--cream); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(247,243,236,0.3); padding: 10px 16px; border-radius: 999px; transition: all 0.25s ease; white-space: nowrap; }
.concert:hover .concert-cta { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ====== MEDIA ====== */
.media { background: var(--cream-2); }
.media-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-bottom: 24px; }
.media-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); aspect-ratio: 4/3; }
.media-card:hover { transform: translateY(-6px); }
.media-card.large { grid-column: span 7; aspect-ratio: 16/10; }
.media-card.small { grid-column: span 5; aspect-ratio: 16/10; }
.media-card.half { grid-column: span 6; }
.media-thumb { position: absolute; inset: 0; overflow: hidden; }
.media-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7)); }
.media-card .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.3s ease; }
.media-card:hover .play { background: var(--coral); transform: translate(-50%, -50%) scale(1.1); }
.media-card:hover .play svg path { fill: white; }
.media-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; color: white; z-index: 2; }
.media-info .meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; margin-bottom: 6px; }
.media-info h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; line-height: 1.2; }

/* ====== FOOTER ====== */
footer { background: var(--ink); color: var(--cream); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h3 { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 400; line-height: 1; margin-bottom: 16px; }
.footer-brand p { color: rgba(247,243,236,0.6); max-width: 360px; font-size: 15px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; color: rgba(247,243,236,0.7); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(247,243,236,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(247,243,236,0.4); flex-wrap: wrap; gap: 16px; }

/* ====== ANIMATIONS ====== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1440px) {
  .hero-grid { gap: 48px; }
  .hero h1 { font-size: clamp(52px, 7.5vw, 112px); }
}
@media (max-width: 1200px) {
  .hero { padding: 140px 0 100px; }
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 40px; }
  .hero p.lead { font-size: 18px; max-width: 100%; }
}
@media (max-width: 1024px) {
  .hero { padding: 120px 0 0; }
  .hero-text-overlay { display: none; }
  .hero-bg-shape { width: 480px; height: 480px; right: -120px; }
  .hero-bg-shape-2 { width: 360px; height: 360px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; align-items: stretch; min-height: unset; }
  .hero-visual { position: relative; inset: auto; order: -1; width: 100%; max-height: min(58vh, 560px); aspect-ratio: 4/5; border-radius: 20px; z-index: 1; }
  .hero-visual::before { display: none; }
  .hero-visual img { opacity: 1; }
  .hero-text { position: relative; z-index: 2; padding: 0 0 56px; }
  .hero-marquee { margin-top: 64px; }
}

@media (max-width: 980px) {
  /* Show hamburger, hide nav links */
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-wrap { gap: 16px; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-photo { position: relative; top: auto; max-height: 420px; aspect-ratio: 3/2; }
  .bio-photo img { object-position: center 20%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .concert { grid-template-columns: 80px 1fr; gap: 16px; }
  .concert-venue, .concert-program, .concert-cta { grid-column: 2; }
  .media-card.large, .media-card.small { grid-column: span 12; }
  .media-card.half { grid-column: span 6; }
}

@media (max-width: 768px) {
  .hero { padding-top: 108px; }
  .hero-grid { gap: 28px; }
  .hero-visual { max-height: min(50vh, 480px); border-radius: 16px; }
  .hero h1 { font-size: clamp(44px, 11vw, 72px); margin-bottom: 20px; }
  .hero p.lead { font-size: 17px; margin-bottom: 32px; }
  .hero-text { padding-bottom: 48px; }
  .hero-cta { gap: 12px; }
  .hero-marquee { margin-top: 48px; padding: 20px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-wrap { padding: 14px 20px; }
  section { padding: 80px 0; }
  .hero { padding-top: 100px; }
  .hero-visual { max-height: min(46vh, 400px); border-radius: 12px; }
  .hero-eyebrow { font-size: 12px; margin-top: 12px; margin-bottom: 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .bio-photo { max-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
  .media-card.half { grid-column: span 12; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(40px, 10.5vw, 56px); }
  .hero p.lead { font-size: 16px; line-height: 1.5; }
  .hero .btn { padding: 14px 22px; font-size: 13px; }
  .hero-visual { max-height: min(42vh, 360px); }
}

@media (max-width: 390px) {
  .container { padding: 0 16px; }
  .nav-wrap { padding: 12px 16px; }
  .hero { padding-top: 92px; }
  .hero-grid { gap: 24px; }
  .hero-text { padding-bottom: 40px; }
}