/* Vivaldi a Dit */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Albert+Sans:wght@400;500;600;700&display=swap');

:root {
  --accent: #c9a227;
  --accent-deep: #a68520;
  --accent-bright: #e8c547;
  --ink-soft: #2c2620;
  --warm: #faf6f0;
  --warm-mid: #f0e8da;
  --gold: var(--accent);
  --gold-bright: var(--accent-bright);
  --gold-dim: var(--accent-deep);
  --ink: #14110f;
  --amber-glow: rgba(201, 162, 39, 0.15);
  --text: #2c2620;
  --text-soft: #6b635a;
  --white: #ffffff;
  --overlay: rgba(14, 10, 8, 0.72);
  --overlay-light: rgba(14, 10, 8, 0.45);
  --shadow-warm: 0 24px 64px rgba(20, 17, 15, 0.18);
  --shadow-poster: 0 32px 80px rgba(20, 17, 15, 0.28), 0 8px 24px rgba(20, 17, 15, 0.12);
  --radius: 2px;
  --radius-lg: 6px;
  --max: 1200px;
  --header: 80px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Albert Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1.1em; }

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header);
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.25);
}

.site-header.is-scrolled {
  background: var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.logo-link img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: opacity 0.2s;
}
.logo-link:hover img { opacity: 0.88; }

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-main a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-main a:hover::after,
.nav-main a.active::after { transform: scaleX(1); }

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f0d060, var(--gold-bright));
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.45);
}

.btn-red,
.btn-burgundy {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}
.btn-red:hover,
.btn-burgundy:hover {
  background: linear-gradient(135deg, #f0d060, var(--gold-bright));
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-soft);
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  margin: 6px 0;
  transition: 0.3s;
}

/* ── Hero cinématique ── */

.hero-cine {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}

.hero-cine__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cine__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-cine__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14,10,8,0.95) 0%, rgba(14,10,8,0.55) 45%, rgba(14,10,8,0.25) 100%),
    linear-gradient(to right, rgba(14,10,8,0.6) 0%, transparent 60%);
  z-index: 1;
}

.hero-cine__content {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding-top: calc(var(--header) + 2rem);
}

.hero-cine__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.hero-cine__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-cine h1 {
  color: var(--white);
  max-width: 14ch;
  margin: 0 0 1.25rem;
  font-weight: 700;
}

.hero-cine h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}

.hero-cine__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-cine__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-cine__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-cine__fact label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.hero-cine__fact span,
.hero-cine__fact a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.hero-cine__fact a:hover { color: var(--gold-bright); }

/* ── Section commune ── */

.section {
  padding: clamp(4rem, 10vh, 7rem) 0;
}

.section--dark {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
}

.section--warm {
  background: var(--warm-mid);
}

.section--alt {
  background: var(--white);
}

.section--dark h2 { color: var(--white); }

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--center {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.section--dark .section-eyebrow { color: var(--gold-bright); }

.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin: 0.75rem 0 0;
}

.section--dark .section-head p { color: rgba(255,255,255,0.55); }

/* ── Affiches showcase ── */

.posters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.poster-item {
  position: relative;
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-poster);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  background: #f5f0e6;
}

.poster-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(44, 38, 32, 0.08);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.poster-frame:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 100px rgba(20, 17, 15, 0.35);
}

.poster-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.7s var(--ease);
  background: #f5f0e6;
}

.poster-frame:hover img { transform: scale(1.04); }

.poster-info {
  padding: 1.5rem 0 0;
}

.poster-info h3 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
}

.poster-info p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Bande inscription ── */

.cta-band {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--amber-glow), transparent 70%);
  pointer-events: none;
}

.cta-band h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.6rem;
  position: relative;
}

.cta-band p {
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 48ch;
  position: relative;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  min-width: 240px;
}

.cta-band .btn { width: 100%; }

/* ── Présentation éditoriale ── */

.editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.editorial__photo {
  position: relative;
}

.editorial__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
}

.editorial__photo::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.editorial__text h2 { margin-top: 0; }

.editorial__text p:last-child { margin-bottom: 0; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--warm-mid);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ── Pédagogie ── */

.pedagogy-list {
  display: grid;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.pedagogy-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--warm-mid);
  align-items: start;
}

.pedagogy-item:first-child { padding-top: 0; }
.pedagogy-item:last-child { border-bottom: none; padding-bottom: 0; }

.pedagogy-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}

.pedagogy-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.pedagogy-item p {
  color: var(--text-soft);
  margin: 0;
  font-size: 0.98rem;
}

/* ── Contact footer band ── */

.contact-band {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.contact-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.contact-band label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.contact-band p,
.contact-band a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-band a:hover { color: var(--gold-bright); }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  margin-top: 0.5rem;
  transition: background 0.25s;
}
.social-btn:hover { background: rgba(201, 162, 39, 0.2); }
.social-btn img { width: 20px; filter: brightness(0) invert(1); opacity: 0.85; }

/* ── Site footer ── */

.site-footer {
  background: #0a0806;
  color: rgba(255,255,255,0.4);
  padding: 1.75rem 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner a { color: rgba(255,255,255,0.55); }
.footer-inner a:hover { color: var(--gold); }

/* ── Pages intérieures ── */

body.page-inner {
  background: var(--warm);
}

.page-head {
  padding: calc(var(--header) + 2.5rem) 0 2.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--warm-mid);
}

.page-head h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-head__lead {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 58ch;
  line-height: 1.65;
}

.page-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.inscription-cta {
  padding: 2.5rem 0 0;
  background: var(--warm);
}

.inscription-cta .inscription-banner,
.inscription-cta .cta-band {
  margin: 0;
}

.page-content--white {
  background: var(--white);
}

.page-intro {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 680px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
}

/* legacy */
.page-hero {
  padding: calc(var(--header) + 2.5rem) 0 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--warm-mid);
  color: var(--text);
}

.page-hero::after { display: none; }

.page-hero h1 {
  color: var(--ink);
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-hero p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 58ch;
}

.page-body { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ── Tables tarifs ── */

.pricing-intro {
  background: var(--white);
  border: 1px solid var(--warm-mid);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
}

.pricing-table-wrap { overflow-x: auto; margin-bottom: 2rem; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}

.pricing-table caption {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: var(--warm-mid);
}

.pricing-table th,
.pricing-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--warm-mid);
  text-align: center;
}

.pricing-table th {
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.pricing-table th:first-child,
.pricing-table td:first-child { text-align: left; }

.pricing-table tbody tr:hover { background: var(--warm); }

.pricing-note {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-style: italic;
  margin-top: 0.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ── Disciplines ── */

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.discipline-card {
  background: var(--white);
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  transition: box-shadow 0.25s var(--ease);
}

.discipline-card:hover {
  box-shadow: var(--shadow-warm);
}

.discipline-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.discipline-card h2 {
  font-size: 1.35rem;
  margin: 0 0 0.85rem;
}

.discipline-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin: 0 0 0.75rem;
  line-height: 1.65;
}

.discipline-card p:last-child { margin-bottom: 0; }

.discipline-card--wide {
  grid-column: 1 / -1;
}

/* ── Page association ── */

.about-block {
  max-width: 720px;
}

.about-block h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.85rem;
}

.about-block h2:first-of-type {
  margin-top: 0;
}

.about-photo-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  max-width: 900px;
}

.about-photo-wrap img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 30%;
}

.about-photo-wrap figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  background: var(--white);
  border-top: 1px solid var(--warm-mid);
}

.team-section-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 1.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--warm-mid);
}

.team-section-title:not(:first-child) {
  margin-top: 3rem;
}

.ca-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ca-list li {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}

.ca-list li::before {
  content: '·';
  color: var(--gold);
  margin-right: 0.5rem;
}

.orchestra-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-top: 1.5rem;
  font-style: italic;
}

.partners-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--warm-mid);
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 38, 32, 0.08);
}

.partners-row img {
  height: 44px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.partners-row a:hover img { opacity: 1; }

.partners-row__text {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.partners-row__text:hover { color: var(--gold); }

.partners-row__name {
  font-size: 0.88rem;
  color: var(--text-soft);
  text-align: center;
  width: 100%;
  margin: 0;
  padding-top: 0.5rem;
}

.values-block {
  background: var(--warm-mid);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}

.values-block h2 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
}

.values-block ul {
  margin: 0;
  padding-left: 1.2rem;
}

.values-block li {
  margin-bottom: 0.45rem;
  color: var(--text);
}

/* legacy */
.discipline-list { display: grid; gap: 0; }

.discipline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 2rem 0;
  border-bottom: 1px solid var(--warm-mid);
}

.discipline-item:last-child { border-bottom: none; }

.discipline-icon { display: none; }

.discipline-item h3 { margin: 0 0 0.6rem; font-size: 1.35rem; }

/* ── Équipe ── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
}

.team-member { text-align: center; }

.team-member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.85rem;
  border: 3px solid var(--warm-mid);
  box-shadow: var(--shadow-warm);
  transition: border-color 0.3s;
}

.team-member:hover img { border-color: var(--gold); }

.team-member .name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.team-member .role {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.15rem;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius-lg);
}

.partners img { height: 56px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
.partners a:hover img { opacity: 1; }

.content-block { max-width: 720px; }
.content-block ul { padding-left: 1.2rem; }

.highlight-box {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-warm);
}

.highlight-box h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }

.section--dark .stat-num { color: var(--gold-bright); }
.section--dark .stat-label { color: rgba(255,255,255,0.55); }
.section--dark .stats-row { border-top-color: rgba(255,255,255,0.12); }
.section--dark .editorial__text p { color: rgba(255,255,255,0.72); }

.section--warm .section-eyebrow { color: var(--gold-dim); }
.section--warm .editorial__text p { color: var(--text); }
.section--warm .stat-num { color: var(--gold); }
.section--warm .stat-label { color: var(--text-soft); }
.section--warm .stats-row { border-top-color: rgba(44, 38, 32, 0.12); }

.inscription-banner {
  background: var(--ink);
  color: var(--white);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}

.inscription-banner h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.6rem;
}

.inscription-banner p { color: rgba(255,255,255,0.6); margin: 0; }

.inscription-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 240px;
}

.inscription-banner-actions .btn { width: 100%; }

.contact-strip {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.contact-item strong,
.contact-item label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.contact-item a { color: rgba(255,255,255,0.8); }
.contact-item a:hover { color: var(--gold-bright); }

.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.social-links img { width: 20px; filter: brightness(0) invert(1); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

/* ── Responsive ── */

.section-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.section-header p { color: var(--text-soft); margin-top: 0.75rem; }

@media (max-width: 960px) {
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-card--wide { grid-column: auto; }
  .posters,
  .editorial,
  .two-col,
  .cta-band,
  .inscription-banner,
  .contact-band__grid,
  .contact-grid,
  .stats-row { grid-template-columns: 1fr; }

  .cta-band__actions,
  .inscription-banner-actions { flex-direction: row; flex-wrap: wrap; }
  .cta-band__actions .btn,
  .inscription-banner-actions .btn { flex: 1; min-width: 180px; }

  .nav-toggle { display: block; }

  .nav-main {
    display: none;
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    background: rgba(14, 10, 8, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  }

  .nav-main.open { display: flex; }
  .nav-main a { width: 100%; padding: 0.85rem 1rem; }
  .header-actions .btn-ghost { display: none; }

  .pedagogy-item { grid-template-columns: 56px 1fr; gap: 1.25rem; }
  .pedagogy-num { font-size: 2.25rem; }

  .editorial__photo { order: -1; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero-cine__facts { gap: 1.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
