/* =============================================================
   FRANZISKA LESSING — High-End Cinematic Design System
   Inspired by taste-skill: design-taste-frontend principles
   Design variance: 8/10 | Motion: 6/10 | Density: 5/10
   ============================================================= */

/* — Google Fonts loaded in HTML — */

/* ── DESIGN TOKENS ── */
:root {
  --black:          #060606;
  --bg:             #0c0c0c;
  --surface:        #141414;
  --surface-raised: #1c1c1c;
  --surface-hover:  #222222;
  --border:         rgba(255,255,255,0.07);
  --border-strong:  rgba(255,255,255,0.13);

  --gold:           #c8a862;
  --gold-light:     #dfc289;
  --gold-dim:       rgba(200, 168, 98, 0.25);

  --white:          #f5f0e8;
  --text:           #e8e4dc;
  --text-secondary: #9a9690;
  --text-dim:       #5c5853;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:          72px;
  --max-w:          1180px;
  --gutter:         clamp(1.25rem, 4vw, 3rem);

  --radius-sm:      4px;
  --radius:         8px;
  --radius-lg:      16px;

  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:       0.35s;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* ── SELECTION ── */
::selection { background: var(--gold-dim); color: var(--white); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; }

p { max-width: 68ch; }
p + p { margin-top: 0.875em; }

.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.page-content {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 6rem;
  min-height: 80vh;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.site-nav.scrolled {
  background: rgba(6, 6, 6, 0.92);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--duration);
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color var(--duration), background var(--duration);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--duration);
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-out),
              opacity var(--duration),
              background var(--duration);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(6, 6, 6, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text-secondary);
  padding: 0.6rem 2rem;
  transition: color var(--duration);
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  transform-origin: center;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(6,6,6,0.92) 0%,
    rgba(6,6,6,0.45) 45%,
    rgba(6,6,6,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) clamp(3rem, 8vh, 6rem);
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s var(--ease-out) 0.2s both;
}
.hero-label::before {
  content: '';
  display: block;
  width: 2.5rem; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  animation: fadeUp 0.9s var(--ease-out) 0.35s both;
}

.hero-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s var(--ease-out) 0.5s both;
}
.hero-subtitle span { color: var(--gold); }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease-out) 0.65s both;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 168, 98, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-block: 3rem;
}
.divider-gold {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin-block: 1.5rem;
}

/* ── SECTION ── */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-dark { background: var(--surface); }
.section-darker { background: var(--black); }

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { margin-top: 0.5rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: clamp(280px, 40vh, 440px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) 3rem;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}
.page-hero-content .label { margin-bottom: 0.5rem; }
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration), transform var(--duration) var(--ease-out),
              box-shadow var(--duration);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration), transform var(--duration) var(--ease-out),
              box-shadow var(--duration);
}
.video-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-card-embed {
  position: relative;
  padding-top: 56.25%;
  background: var(--black);
}
.video-card-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.video-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.375rem;
}
.video-card-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ── SOUNDCLOUD GRID ── */
.audio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.audio-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration);
}
.audio-item:hover { border-color: var(--border-strong); }
.audio-item iframe { display: block; width: 100%; }

/* ── GALLERY ── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 0.625rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--surface);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.5s;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}
.gallery-item:hover::after {
  background: rgba(0,0,0,0.2);
}
.gallery-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-size: 1.75rem;
  pointer-events: none;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* Gallery group */
.gallery-group { margin-bottom: 3.5rem; }
.gallery-group-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gallery-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
  transform: scale(0.94);
  transition: transform 0.3s var(--ease-out);
}
.lightbox-overlay.active .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  font-size: 1.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--duration), transform var(--duration);
  z-index: 9001;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.lightbox-close:hover { color: var(--white); transform: rotate(90deg); }

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--duration), background var(--duration);
  z-index: 9001;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); background: rgba(255,255,255,0.12); }

/* ── VITA TABLE ── */
.vita-section { margin-bottom: 3rem; }
.vita-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.vita-grid {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 2rem;
}
.vita-grid dt {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  padding-top: 0.125rem;
}
.vita-grid dd { color: var(--text); }

.vita-list { display: flex; flex-direction: column; gap: 0.875rem; }

.vita-entry {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.vita-entry:last-child { border-bottom: none; }
.vita-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding-top: 0.125rem;
}
.vita-detail { color: var(--text); font-size: 0.9375rem; }
.vita-detail em { color: var(--white); font-style: italic; }
.vita-detail strong { color: var(--white); font-weight: 600; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-card-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.contact-card p, .contact-card a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-card a:hover { color: var(--gold-light); text-decoration: underline; }

/* Contact form */
.contact-form {
  max-width: 640px;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--duration), box-shadow var(--duration);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group textarea { min-height: 140px; }

/* ── PRESS SECTION ── */
.press-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--duration), transform var(--duration) var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.press-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.press-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
}
.press-info h4 { font-size: 1rem; color: var(--white); font-family: var(--font-display); }
.press-info p { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.25rem; }

/* ── HOME: NEWS SECTION ── */
.news-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2rem 2.5rem;
  display: grid;
  gap: 1.5rem;
}

/* ── HOME: ABOUT STRIPE ── */
.about-stripe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-stripe-text p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 54ch;
  margin-top: 1.5rem;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.fact-item {}
.fact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.fact-value {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}

/* ── INLINE LIST ── */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
}
.inline-list li {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-secondary);
  transition: border-color var(--duration), color var(--duration);
}
.inline-list li:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── TERMS / LEGAL ── */
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p, .legal-content li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 72ch;
}
.legal-content a { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }

/* ── TERMINE ── */
.termine-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 600px;
}
.termine-date {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.termine-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.termine-meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  filter: invert(90%) hue-rotate(180deg) saturate(0.7);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-block: 3rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  transition: color var(--duration);
}
.footer-links a:hover { color: var(--text-secondary); }

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

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

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-secondary); }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 0.75rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 3rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .about-stripe {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vita-entry {
    grid-template-columns: 4rem 1fr;
    gap: 0 1rem;
  }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.5rem; }
  .about-facts { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .vita-entry { grid-template-columns: 1fr; }
  .vita-year { margin-bottom: 0.25rem; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.375rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .map-wrapper iframe { height: 260px; }
}
