/* ═══════════════════════════════════════════════════════
   HÉLÈNE FOUQUART — Design System
   Noir · Bordeaux · Or · Typographie Cormorant
═══════════════════════════════════════════════════════ */

:root {
  --noir:        #080605;
  --noir-2:      #0f0c0a;
  --noir-3:      #161210;
  --noir-card:   #1a1512;
  --or:          #c9a84c;
  --or-light:    #dfc070;
  --or-pale:     #f0dfa0;
  --bordeaux:    #8b1e30;
  --bordeaux-l:  #b83048;
  --bordeaux-pale:#d45070;
  --creme:       #f5ede0;       /* texte principal — très lisible */
  --creme-2:     #e8ddd0;
  --gris-clair:  #c8bdb0;       /* texte secondaire — bon contraste */
  --gris-mid:    #9a8e82;       /* texte tertiaire */
  --gris-dim: #e87e23;       /* hints, placeholders */
  --blanc:       #fdf8f2;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Cormorant', serif;
  --font-accent:  'IM Fell English', serif;

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius: 2px;
  --max-w: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size:  18px; }

body {
  background: var(--noir);
  color: var(--creme);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── GRAIN TEXTURE ─── */
.grain {
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed; width: 7px; height: 7px;
  background: var(--or); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), width .4s, height .4s;
}

/* ─── FLASH ─── */
.flash-container {
  position: fixed; top: 5rem; right: 1.5rem;
  z-index: 2000; display: flex; flex-direction: column; gap: .5rem;
}
.flash {
  padding: .9rem 1.5rem;
  font-family: var(--font-display);
  font-size: .9rem; letter-spacing: .05em;
  border-left: 3px solid;
  backdrop-filter: blur(12px);
  animation: flashIn .4s var(--ease-out) forwards;
}
.flash--success { background: rgba(10,20,10,.92); border-color: #4a9; color: #aed; }
.flash--error   { background: rgba(20,5,5,.92);   border-color: var(--bordeaux-l); color: var(--creme); }
@keyframes flashIn {
  from { opacity:0; transform: translateX(20px); }
  to   { opacity:1; transform: translateX(0); }
}

/* ─── NAV ─── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 4rem;
  transition: background .5s var(--ease), padding .4s var(--ease);
}
nav#navbar.scrolled {
  background: rgba(8,6,5,.95);
  backdrop-filter: blur(20px);
  padding: 1.1rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 400; letter-spacing: .4em;
  color: var(--or); text-decoration: none;
  opacity: .9; transition: opacity .3s;
}
.nav-logo:hover { opacity: 1; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
  font-family: var(--font-display); font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gris-clair); text-decoration: none;
  transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--or);
  transition: width .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--or); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-burger { display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem; }
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--or); transition: all .3s; }

/* ─── PAGE HEADER (inner pages) ─── */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(139,30,48,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(201,168,76,.05) 0%, transparent 70%),
    var(--noir-2);
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 4rem; right: 4rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.25), transparent);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-label {
  font-family: var(--font-display); font-size: .68rem;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--bordeaux-l);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.page-label::before {
  content: ''; width: 30px; height: 1px; background: var(--bordeaux);
}
.page-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1; color: var(--blanc); letter-spacing: -.01em;
}
.page-title em { font-style: italic; color: var(--or-light); }
.page-subtitle {
  margin-top: 1.2rem;
  font-family: var(--font-accent); font-style: italic;
  font-size: 1.15rem; color: var(--gris-clair);
}

/* ─── SECTION BASE ─── */
.section { padding: 6rem 4rem; max-width: var(--max-w); margin: 0 auto; }
.section--wide { max-width: 100%; }
.section--dark { background: var(--noir-2); }

.s-label {
  font-family: var(--font-display); font-size: .68rem;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--bordeaux-l); display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.s-label::before { content: ''; width: 28px; height: 1px; background: var(--bordeaux); }

.s-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05; color: var(--blanc);
}
.s-title em { font-style: italic; color: var(--or-light); }

/* ─── ORNEMENT ─── */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin: 3rem 0;
}
.ornament-line { flex: 1; height: 1px; max-width: 120px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.3)); }
.ornament-line.r { background: linear-gradient(to left, transparent, rgba(201,168,76,.3)); }
.ornament-diamond { width: 6px; height: 6px; background: var(--bordeaux); transform: rotate(45deg); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-size: .78rem;
  letter-spacing: .25em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.2rem;
  border: 1px solid; cursor: pointer;
  transition: all .35s var(--ease); white-space: nowrap;
}
.btn--gold {
  color: var(--or); border-color: rgba(201,168,76,.4);
  background: transparent;
}
.btn--gold:hover { background: var(--or); color: var(--noir); border-color: var(--or); }
.btn--bordeaux {
  color: var(--bordeaux-l); border-color: rgba(139,30,48,.5);
  background: transparent;
}
.btn--bordeaux:hover { background: var(--bordeaux); color: var(--blanc); border-color: var(--bordeaux); }
.btn--ghost {
  color: var(--gris-clair); border-color: rgba(200,189,176,.2);
  background: transparent;
}
.btn--ghost:hover { color: var(--blanc); border-color: rgba(200,189,176,.5); }
.btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* ─── CARDS ─── */
.card {
  background: var(--noir-card);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s, background .3s;
}
.card:hover {
  border-color: rgba(201,168,76,.2);
  background: rgba(26,21,18,.9);
}

/* ─── CONCERT OFFER CARD ─── */
.concert-card {
  background: var(--noir-card);
  border: 1px solid rgba(255,255,255,.07);
  padding: 3rem;
  position: relative;
  transition: all .35s var(--ease);
  overflow: hidden;
}
.concert-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(to right, var(--bordeaux), var(--or));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.concert-card:hover { border-color: rgba(201,168,76,.25); }
.concert-card:hover::before { transform: scaleX(1); }
.concert-card.featured { border-color: rgba(201,168,76,.25); }
.concert-card.featured::after {
  content: 'Recommandé';
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--font-display); font-size: .62rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--or); padding: .3rem .8rem;
  border: 1px solid rgba(201,168,76,.35);
}
.concert-card-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.8rem; color: var(--or-light);
  margin-bottom: 1rem; line-height: 1.2;
}
.concert-card-desc {
  font-family: var(--font-body); font-size: 1.1rem;
  color: var(--gris-clair); line-height: 1.75;
  margin-bottom: 2rem;
}
.concert-card-meta { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.meta-row { display: flex; gap: 1rem; align-items: baseline; }
.meta-key {
  font-family: var(--font-display); font-size: .65rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--bordeaux-l); flex-shrink: 0; width: 80px;
}
.meta-val {
  font-family: var(--font-body); font-size: 1rem; color: var(--creme-2);
}

/* ─── AGENDA TABLE ─── */
.agenda-list { display: flex; flex-direction: column; }
.agenda-row {
  display: grid;
  grid-template-columns: 130px 1fr 180px 110px;
  gap: 1.5rem; align-items: center;
  padding: 1.8rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s; cursor: default;
}
.agenda-row:hover {
  background: rgba(201,168,76,.03);
  padding-left: 1.8rem;
}
.ag-date {
  font-family: var(--font-display); font-size: .78rem;
  letter-spacing: .15em; color: var(--or); text-transform: uppercase;
}
.ag-title {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 400; color: var(--blanc);
}
.ag-prog {
  font-family: var(--font-body); font-style: italic;
  font-size: .95rem; color: var(--gris-clair); margin-top: .2rem;
}
.ag-location { font-family: var(--font-body); font-size: 1rem; color: var(--gris-clair); }
.ag-tag {
  font-family: var(--font-display); font-size: .6rem;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .35rem .9rem; border: 1px solid; text-align: center;
}
.ag-tag.solo    { color: var(--or);        border-color: rgba(201,168,76,.35); }
.ag-tag.chamber { color: var(--bordeaux-l); border-color: rgba(139,30,48,.45); }
.ag-tag.recital { color: var(--gris-clair); border-color: rgba(200,189,176,.25); }
.ag-tag.festival{ color: var(--or-light);   border-color: rgba(223,192,112,.3); }

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
}
.gallery-grid > .g-item:first-child { grid-row: span 2; }
.g-item {
  overflow: hidden; position: relative;
  cursor: zoom-in; background: var(--noir-3);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(15%) sepia(8%) contrast(1.05);
  transition: transform .7s var(--ease), filter .5s;
}
.g-item:hover img { transform: scale(1.04); filter: grayscale(0%) sepia(4%); }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(8,6,5,.65));
  pointer-events: none;
}
.g-caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  font-family: var(--font-accent); font-style: italic;
  font-size: .85rem; color: var(--creme); z-index: 1;
  opacity: 0; transform: translateY(8px);
  transition: all .3s;
}
.g-item:hover .g-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,3,2,.96);
  z-index: 500; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  font-family: var(--font-display); font-size: .72rem;
  letter-spacing: .35em; color: var(--or);
  cursor: pointer; text-transform: uppercase;
}

/* ─── PRESS QUOTES ─── */
.press-quote {
  display: grid; grid-template-columns: 3fr 1fr;
  gap: 3rem; align-items: start;
  padding: 3.5rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.press-quote:last-child { border: none; }
.press-quote-text {
  font-family: var(--font-accent); font-style: italic;
  font-size: 1.45rem; line-height: 1.7; color: var(--blanc);
}
.press-quote-text::before { content: '« '; color: var(--or); }
.press-quote-text::after  { content: ' »'; color: var(--or); }
.press-source { text-align: right; }
.press-publication {
  font-family: var(--font-display); font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--or);
  display: block; margin-bottom: .3rem;
}
.press-context {
  font-family: var(--font-body); font-style: italic;
  font-size: .9rem; color: var(--gris-clair);
}

/* ─── REPERTOIRE ─── */
.rep-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem; margin-top: 3rem;
}
.rep-era { padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.rep-era-name {
  font-family: var(--font-display); font-size: .68rem;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--bordeaux-l); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.rep-era-name::after { content: ''; flex: 1; height: 1px; background: rgba(139,30,48,.2); }
.rep-list { list-style: none; }
.rep-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
  gap: 1rem;
}
.rep-composer { font-family: var(--font-body); font-size: 1.05rem; color: var(--creme); }
.rep-work     { font-family: var(--font-body); font-style: italic; font-size: .95rem; color: var(--gris-clair); text-align: right; }

/* ─── BIO PAGE ─── */
.bio-layout {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 5rem; align-items: start;
}
.bio-portrait {
  position: sticky; top: 7rem;
}
.bio-portrait-frame {
  position: relative; overflow: hidden;
}
.bio-portrait-frame::before {
  content: ''; position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(201,168,76,.18); z-index: 2; pointer-events: none;
}
.bio-portrait-frame::after {
  content: ''; position: absolute; top: 10px; left: 10px; right: -10px; bottom: -10px;
  border: 1px solid rgba(139,30,48,.25); z-index: 2; pointer-events: none;
}
.bio-portrait-frame img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
  filter: grayscale(20%) sepia(10%) contrast(1.05);
  transition: transform .8s var(--ease);
}
.bio-portrait-frame:hover img { transform: scale(1.03); }
.bio-portrait-caption {
  font-family: var(--font-display); font-style: italic;
  font-size: .82rem; color: var(--gris-mid);
  text-align: center; margin-top: 1rem;
}
.bio-dl-btns { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }

.bio-content p {
  font-family: var(--font-body); font-size: 1.15rem;
  line-height: 1.9; color: var(--gris-clair); margin-bottom: 1.8rem;
}
.bio-content p strong { color: var(--creme); font-weight: 500; }
.bio-pullquote {
  border-left: 3px solid var(--bordeaux); padding: 1.5rem 2rem;
  margin: 2.5rem 0; background: rgba(139,30,48,.05);
}
.bio-pullquote p {
  font-family: var(--font-accent); font-style: italic;
  font-size: 1.35rem; color: var(--or-light); line-height: 1.5; margin: 0 !important;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-top: 4rem;
}
.contact-form label {
  display: block; font-family: var(--font-display);
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gris-clair); margin-bottom: .5rem; margin-top: 1.5rem;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--noir-card);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--creme); padding: .9rem 1.1rem;
  font-family: var(--font-body); font-size: 1.05rem;
  transition: border-color .3s; outline: none; resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201,168,76,.5);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gris-dim); }
.contact-form textarea { min-height: 160px; }

.contact-info { padding-top: 1rem; }
.contact-info-item { margin-bottom: 2.5rem; }
.ci-label {
  font-family: var(--font-display); font-size: .68rem;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--bordeaux-l); display: block; margin-bottom: .5rem;
}
.ci-value {
  font-family: var(--font-body); font-size: 1.15rem; color: var(--creme-2);
}
.ci-value a { color: var(--or-light); text-decoration: none; }
.ci-value a:hover { color: var(--or); }

/* ─── HERO (INDEX) ─── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 55%, rgba(139,30,48,.2) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 85% 35%, rgba(201,168,76,.07) 0%, transparent 60%),
    var(--noir);
}
.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: grayscale(25%) contrast(1.08) sepia(8%);
  opacity: .5; transition: opacity 1s;
}

.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--noir) 0%, rgba(8,6,5,.6) 40%, transparent 70%),
    linear-gradient(to bottom, var(--noir) 0%, transparent 15%, transparent 80%, var(--noir) 100%);
}

.page-hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; overflow: hidden;
}
.page-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: grayscale(25%) contrast(1.08) sepia(8%);
  opacity: .5; transition: opacity 1s;
}

.page-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, #15100d 0%, rgba(8,6,5,.6) 20%, transparent 90%),
    linear-gradient(to bottom, var(--noir) 0%, transparent 15%, transparent 80%, var(--noir) 100%);
}


.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); width: 100%; padding: 0 4rem;
}
.hero-eyebrow {
  font-family: var(--font-display); font-size: .7rem;
  letter-spacing: .5em; text-transform: uppercase; color: var(--or);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s var(--ease-out) .4s forwards;
}
.hero-name {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  line-height: .92; color: var(--blanc); letter-spacing: -.01em;
  opacity: 0; animation: fadeUp 1.2s var(--ease-out) .6s forwards;
}
.hero-name em { display: block; font-style: italic; color: var(--or-light); }
.hero-rule {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 2.2rem 0;
  opacity: 0; animation: fadeUp 1s var(--ease-out) .9s forwards;
}
.hero-rule::before { content: ''; flex: 0 0 50px; height: 1px; background: var(--bordeaux); }
.hero-rule-text {
  font-family: var(--font-accent); font-style: italic;
  font-size: 1.05rem; color: var(--gris-clair);
}
.hero-quote {
  font-family: var(--font-accent); font-style: italic;
  font-size: 1.2rem; color: var(--gris-clair); max-width: 440px;
  line-height: 1.75; border-left: 2px solid var(--bordeaux);
  padding-left: 1.5rem;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}

.hero-quote-author {
  margin-top: 1rem;
  font-family: var(--font-body); font-size: .95rem; color: var(--gris-mid);
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1.3s forwards;
}


.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  opacity: 0; animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll span {
  font-family: var(--font-display); font-size: .62rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gris-mid);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity:1; } }
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity:1; }
  50%     { transform: scaleY(.6) translateY(8px); opacity:.3; }
}

/* ─── INDEX SECTIONS ─── */
.index-concerts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; margin-top: 3rem;
}
.index-agenda-preview { margin-top: 3rem; }
.index-press-strip { margin-top: 3rem; display: flex; flex-direction: column; gap: 2.5rem; }
.index-press-item {
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.05);
}
.index-press-item:last-child { border: none; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr 240px;
  gap: 3rem; align-items: start;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: .35em; color: var(--or); opacity: .7;
}
.footer-tagline {
  font-family: var(--font-body); font-style: italic;
  font-size: .95rem; color: var(--gris-mid); margin-top: .3rem;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: .6rem 2rem;
}
.footer-nav a {
  font-family: var(--font-display); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gris-clair); text-decoration: none; transition: color .3s;
}
.footer-nav a:hover { color: var(--or); }
.footer-email {
  font-family: var(--font-body); font-size: 1rem;
  color: var(--or-light); text-decoration: none; display: block;
  transition: color .3s; margin-bottom: .5rem;
}
.footer-email:hover { color: var(--or); }
.footer-copy {
  font-family: var(--font-display); font-size: .65rem;
  letter-spacing: .15em; color: var(--gris-dim);
}

.footer-dev a {
  color: var(--gris-dim); text-decoration: none;
}
.footer-dev a:hover { color: var(--or); }



/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .bio-layout { grid-template-columns: 280px 1fr; gap: 3rem; }
  .rep-grid { grid-template-columns: 1fr; }
  .concert-card { padding: 2rem; }
}
@media (max-width: 900px) {
  nav#navbar { padding: 1.4rem 2rem; }
  nav#navbar.scrolled { padding: .9rem 2rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 1.5rem;
    position: fixed; inset: 0; background: rgba(8,6,5,.98);
    align-items: center; justify-content: center;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.4rem; letter-spacing: .3em; }
  .page-hero { padding: 8rem 2rem 4rem; }
  .section { padding: 4rem 2rem; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-portrait { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .press-quote { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid > .g-item:first-child { grid-row: span 1; }
  .agenda-row { grid-template-columns: 100px 1fr; }
  .ag-location, .ag-tag { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .index-concerts-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 2rem; }
  .hero-photo { opacity: .3; }
}
