:root {
  --bg: #f5efe4;
  --bg-tint: #ede4d2;
  --bg-dark: #1a1611;
  --ink: #1c1814;
  --ink-soft: #4a4138;
  --ink-muted: #807468;
  --line: #d8ccb6;
  --line-dark: #3a3128;
  --accent: #8b1e3f;
  --accent-warm: #b03050;
  --gold: #b88a3e;
  --gold-soft: #d4ae6f;
  --paper: #faf6ec;
  --serif: 'Bodoni Moda', 'Didot', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

.serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.num { font-family: var(--serif); font-feature-settings: 'lnum' 1; font-style: italic; font-weight: 500; }

/* ===== HEADER ===== */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 40px;
  background: rgba(245, 239, 228, 0);
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.hdr-scrolled {
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  padding: 12px 40px;
  border-bottom-color: var(--line);
}
.hdr-brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.hdr-mark {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 28px; color: var(--accent); line-height: 1;
}
.hdr-name {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  letter-spacing: 0.01em; color: var(--ink);
}
.hdr-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-muted); font-weight: 500;
}
.hdr-nav { display: flex; justify-content: center; gap: 28px; }
.hdr-link {
  font-size: 13px; text-decoration: none; color: var(--ink-soft);
  font-weight: 500; letter-spacing: .01em;
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.hdr-link:hover { color: var(--ink); }
.hdr-link.active { color: var(--accent); }
.hdr-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
}
.hdr-cta {
  text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 9px 18px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  transition: background .2s;
}
.hdr-cta:hover { background: var(--accent); }
.hdr-burger {
  display: none; background: none; border: none; padding: 8px;
  flex-direction: column; gap: 5px;
}
.hdr-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: all .25s ease; transform-origin: left center;
}
.hdr-mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); border-top: 1px solid var(--line);
  padding: 24px 40px;
  flex-direction: column; gap: 4px;
}
.hdr-mobile-link {
  display: flex; gap: 16px; align-items: baseline;
  padding: 12px 0; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 22px; font-weight: 500;
}
.hdr-mobile-link.active { color: var(--accent); }
.hdr-mobile-num { font-family: var(--mono); font-size: 11px; color: var(--ink-muted); }
.hdr-mobile-cta {
  margin-top: 16px; font-size: 13px; color: var(--accent); text-decoration: none;
  letter-spacing: .05em;
}

/* progress under header */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; z-index: 101; pointer-events: none;
}
.progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width .4s cubic-bezier(.2,.8,.2,1);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--paper);
  padding: 120px 40px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) contrast(1.05) brightness(0.55);
  transform: scale(1.05);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(139, 30, 63, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(26,22,17,0.55), rgba(26,22,17,0.85));
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 40px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-warm);
  box-shadow: 0 0 0 4px rgba(176, 48, 80, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(176, 48, 80, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(176, 48, 80, 0.05); }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.92; font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 50px;
  display: flex; flex-direction: column; gap: 24px;
}
.hero-title .serif-it { color: var(--paper); }
.hero-rule {
  display: block; width: 80px; height: 1px;
  background: var(--gold);
  margin-top: 8px;
}
.hero-sub {
  font-family: var(--sans); font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 300; letter-spacing: 0; line-height: 1.35;
  color: rgba(250, 246, 236, 0.82);
  max-width: 540px;
  font-style: normal;
}
.hero-meta {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 56px; margin-bottom: 56px;
}
.hero-meta-k {
  font-size: 11px; text-transform: uppercase; letter-spacing: .16em;
  color: var(--gold-soft); margin-bottom: 8px; font-weight: 500;
}
.hero-meta-v {
  font-family: var(--serif); font-size: 18px; color: var(--paper);
  font-weight: 400;
}
.hero-cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  text-decoration: none; border: none;
  transition: all .25s ease;
}
.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { background: var(--accent-warm); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--paper);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 40px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .2em;
  color: rgba(255,255,255,0.4); writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  margin-top: 12px;
}

/* ===== SECTION SHELL ===== */
.section {
  padding: 130px 40px;
  max-width: 1280px; margin: 0 auto;
  position: relative;
}
.section-tinted { background: var(--bg-tint); max-width: none; }
.section-tinted > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-dark { background: var(--bg-dark); color: var(--paper); max-width: none; }
.section-dark > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-head {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.section-head-light { border-bottom-color: var(--line-dark); }
.section-num {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); font-weight: 500;
}
.section-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .18em;
  color: var(--ink-muted); font-weight: 500;
}
.section-head-light .section-label { color: var(--gold-soft); }
.h-display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 64px; max-width: 980px;
  text-wrap: pretty;
}
.h-display em { font-style: italic; color: var(--accent); }
.h-light em { color: var(--gold-soft); }
.h-display .counter {
  display: block; font-family: var(--sans);
  font-size: 13px; text-transform: uppercase; letter-spacing: .15em;
  color: var(--ink-muted); margin-top: 12px; font-weight: 500;
}

/* ===== PRESENTATION ===== */
.pres-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  margin-bottom: 100px;
}
.pres-lead h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2; font-weight: 400; letter-spacing: -0.015em;
  margin: 0; text-wrap: pretty;
}
.pres-lead em { font-style: italic; color: var(--accent); }
.pres-body p {
  font-size: 15px; line-height: 1.75; color: var(--ink-soft);
  margin: 0 0 18px;
}
.pres-body p:last-child { margin-bottom: 0; }
.pres-body strong { color: var(--ink); font-weight: 600; }

.trio { margin-bottom: 100px; }
.trio-title, .activities-title {
  font-size: 12px; text-transform: uppercase; letter-spacing: .18em;
  color: var(--ink-muted); font-weight: 500; margin-bottom: 24px;
}
.trio-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.trio-card {
  background: var(--paper); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.trio-name {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em;
}
.trio-role { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }

.activities-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr;
}
.activities-list li {
  display: grid; grid-template-columns: 200px 1fr;
  padding: 20px 0; border-top: 1px solid var(--line);
  align-items: baseline; gap: 32px;
}
.activities-list li:last-child { border-bottom: 1px solid var(--line); }
.act-k {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--accent); letter-spacing: -0.005em;
}
.act-v { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ===== AGENDA ===== */
.agenda-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  margin-bottom: 100px;
}
.event {
  background: var(--paper); padding: 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: background .25s;
}
.event:hover { background: #fff; }
.event-hl { background: var(--ink); color: var(--paper); }
.event-hl:hover { background: var(--ink); }
.event-date-main {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em;
}
.event-date-time {
  font-size: 12px; color: var(--ink-muted);
  font-family: var(--mono); margin-top: 4px;
}
.event-hl .event-date-time { color: var(--gold-soft); }
.pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--bg-tint); color: var(--ink-soft);
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 500;
}
.pill-accent { background: var(--accent); color: var(--paper); }
.event-place { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.event-hl .event-place { color: rgba(250,246,236,0.78); }

.history-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 40px; flex-wrap: wrap;
}
.history-head .h-display { margin-bottom: 0; }
.year-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.year-tab {
  background: transparent; border: 1px solid var(--line);
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: var(--ink-soft); transition: all .2s;
}
.year-tab:hover { border-color: var(--ink-muted); color: var(--ink); }
.year-tab.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.history-list { display: flex; flex-direction: column; }
.hist-item {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 32px; padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.hist-item:last-child { border-bottom: 1px solid var(--line); }
.hist-concert .hist-date { color: var(--accent); }
.hist-date {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.005em;
}
.hist-type { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.hist-place { font-size: 14px; color: var(--ink-soft); }
.hist-program {
  list-style: none; padding: 0; margin: 12px 0 0;
  font-size: 13px; color: var(--ink-muted); line-height: 1.7;
  columns: 2; column-gap: 32px;
}
.hist-program li { break-inside: avoid; padding: 2px 0; }
.hist-program li::before { content: '· '; color: var(--gold); }
.hist-image { margin-top: 14px; max-width: 320px; border-radius: 2px; }

/* ===== DISQUES ===== */
.cd-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px;
  align-items: start;
}
.cd-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  align-items: start;
}
.cd-img img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  box-shadow: 0 24px 48px -16px rgba(28, 24, 20, 0.35), 0 4px 8px -2px rgba(28, 24, 20, 0.15);
  border-radius: 4px;
  transition: transform .4s ease;
}
.cd-card:hover .cd-img img { transform: rotate(-1deg) translateY(-4px); }
.cd-img-archive img { filter: sepia(0.15) brightness(0.95); }
.cd-year {
  font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
  color: var(--accent); font-weight: 500; margin-bottom: 8px;
}
.cd-title {
  font-family: var(--serif); font-size: 32px; font-weight: 500;
  letter-spacing: -0.015em; margin: 0 0 6px;
}
.cd-sub { font-size: 13px; color: var(--ink-muted); margin-bottom: 18px; }
.cd-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px; }
.cd-pricing {
  list-style: none; padding: 0; margin: 0 0 24px;
  border-top: 1px solid var(--line);
}
.cd-pricing li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.cd-pricing li span:first-child { color: var(--ink-soft); white-space: nowrap; }
.cd-pricing li span:last-child { font-family: var(--mono); color: var(--ink); white-space: nowrap; text-align: right; }

.track-list { list-style: none; padding: 0; margin: 0; }
.track {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  position: relative;
}
.track-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  border: none; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .2s;
}
.track-btn:hover { background: var(--accent); transform: scale(1.05); }
.track-on .track-btn { background: var(--accent); }
.track-meta { flex: 1; min-width: 0; }
.track-title { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.track-composer { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.track-wave { display: flex; gap: 3px; align-items: end; height: 18px; }
.track-wave span {
  width: 2px; background: var(--accent); border-radius: 1px;
  animation: wave 0.9s ease-in-out infinite;
}
.track-wave span:nth-child(1) { height: 60%; animation-delay: 0s; }
.track-wave span:nth-child(2) { height: 100%; animation-delay: .15s; }
.track-wave span:nth-child(3) { height: 40%; animation-delay: .3s; }
.track-wave span:nth-child(4) { height: 80%; animation-delay: .45s; }
@keyframes wave { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }

/* ===== GALERIE ===== */
.gallery {
  columns: 3; column-gap: 16px; margin-bottom: 80px;
}
.g-tile {
  display: block; position: relative; width: 100%;
  margin: 0 0 16px; padding: 0; border: none;
  background: var(--line-dark); overflow: hidden;
  border-radius: 2px;
  break-inside: avoid;
  cursor: zoom-in;
  transition: transform .35s ease;
}
.g-tile:hover { transform: translateY(-3px); }
.g-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .3s ease;
  filter: brightness(0.92);
}
.g-tile:hover img { transform: scale(1.04); filter: brightness(1); }
.g-tile-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--paper); text-align: left;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(8px);
  transition: all .3s ease;
}
.g-tile:hover .g-tile-cap { opacity: 1; transform: translateY(0); }
.g-tile-year {
  font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--gold-soft);
  font-style: italic;
}
.g-tile-text { font-size: 12px; color: rgba(250,246,236,0.85); }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 8, 6, 0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 80px;
  animation: fade .25s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lb-figure {
  max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; gap: 12px;
  margin: 0;
}
.lb-figure img {
  max-width: 100%; max-height: calc(100vh - 180px);
  object-fit: contain; border-radius: 2px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.lb-figure figcaption {
  display: flex; align-items: baseline; gap: 16px;
  color: var(--paper); font-size: 13px;
}
.lb-year { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 18px; }
.lb-count { margin-left: auto; font-family: var(--mono); color: rgba(250,246,236,0.5); }
.lb-close, .lb-nav {
  position: absolute; background: none; border: none;
  color: var(--paper); font-size: 32px; line-height: 1;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.1); }
.lb-close { top: 24px; right: 24px; font-size: 28px; }
.lb-nav { top: 50%; transform: translateY(-50%); font-size: 48px; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ===== INSTRUMENTS ===== */
.inst-list { display: flex; flex-direction: column; }
.inst-row {
  display: grid; grid-template-columns: 80px 280px 1fr;
  gap: 48px; padding: 56px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.inst-row:last-child { border-bottom: 1px solid var(--line); }
.inst-num {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--accent); align-self: flex-start; padding-top: 4px;
}
.inst-img {
  background: var(--paper); padding: 16px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
}
.inst-img img { max-height: 240px; width: auto; }
.inst-name {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500; letter-spacing: -0.015em;
  margin: 0 0 16px; color: var(--ink);
}
.inst-text p {
  font-size: 15px; line-height: 1.7; color: var(--ink-soft);
  margin: 0; max-width: 640px;
}

/* ===== PARTENAIRES ===== */
.part-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.part {
  background: var(--paper); padding: 28px 32px;
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; color: var(--ink);
  position: relative; transition: background .2s;
}
.part:not(.part-static):hover { background: #fff; }
.part:not(.part-static):hover .part-arrow { color: var(--accent); transform: translate(2px, -2px); }
.part-name {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em; padding-right: 24px;
}
.part-note { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }
.part-arrow {
  position: absolute; top: 28px; right: 28px;
  font-size: 18px; color: var(--ink-muted);
  transition: all .2s;
}
.part-static { cursor: default; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  margin-bottom: 80px;
}
.contact-lead em { font-style: italic; color: var(--gold-soft); }
.contact-note {
  font-size: 14px; line-height: 1.7;
  color: rgba(250, 246, 236, 0.65);
  border-left: 1px solid var(--line-dark);
  padding-left: 20px; margin-top: 32px;
  max-width: 480px;
}
.contact-cards { display: flex; flex-direction: column; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.contact-card {
  background: rgba(255,255,255,0.025); padding: 24px 28px;
  text-decoration: none; color: var(--paper);
  position: relative; transition: background .2s;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-card:not(.contact-card-static):hover { background: rgba(255,255,255,0.06); }
.contact-card-k {
  font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold-soft); font-weight: 500;
}
.contact-card-v {
  font-family: var(--serif); font-size: 18px; line-height: 1.5;
  color: var(--paper); font-weight: 400;
}
.contact-card-v .role {
  display: inline-block; min-width: 100px; font-family: var(--sans);
  font-size: 12px; color: rgba(250,246,236,0.55);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 500;
  margin-right: 10px;
}
.contact-card-arrow {
  position: absolute; top: 24px; right: 28px;
  font-size: 18px; color: var(--gold-soft);
  transition: transform .2s;
}
.contact-card:hover .contact-card-arrow { transform: translate(3px, -3px); }

.footer {
  display: flex; align-items: center; gap: 20px;
  padding: 40px 0 0;
  border-top: 1px solid var(--line-dark);
  margin-top: 60px;
}
.footer-mark {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 32px; color: var(--accent-warm); line-height: 1;
}
.footer-text { font-size: 13px; color: rgba(250,246,236,0.65); }
.footer-meta { font-family: var(--mono); font-size: 11px; color: rgba(250,246,236,0.4); margin-top: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hdr { padding: 14px 20px; grid-template-columns: 1fr auto; }
  .hdr-scrolled { padding: 10px 20px; }
  .hdr-tag { display: none; }
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
  .hdr-mobile { display: flex; }

  .hero { padding: 100px 20px 60px; }
  .hero-scroll { display: none; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }

  .section { padding: 80px 20px; }
  .pres-grid, .cd-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trio-cards { grid-template-columns: 1fr; }
  .activities-list li { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .agenda-grid { grid-template-columns: 1fr; }
  .hist-item { grid-template-columns: 1fr; gap: 12px; }
  .hist-program { columns: 1; }
  .cd-card { grid-template-columns: 1fr; gap: 24px; }
  .cd-img { max-width: 240px; }
  .gallery { columns: 2; column-gap: 10px; }
  .g-tile { margin-bottom: 10px; }
  .inst-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .inst-img { max-width: 240px; }
  .part-grid { grid-template-columns: 1fr; }
  .lightbox { padding: 40px 12px; }
  .lb-nav { width: 44px; height: 44px; font-size: 36px; }
}

@media (max-width: 560px) {
  .gallery { columns: 1; }
  .h-display { font-size: 32px; }
}
