/* ==========================================================================
   MENAT — Modern Music Ensemble
   Design system + site styles
   ========================================================================== */

:root {
  /* Palette — extracted from the ensemble's brand plaquette & logo */
  --cream: #fdf8ee;
  --cream-alt: #f6ebda;
  --paper: #ffffff;

  --sand-100: #f2e6d5;
  --sand-200: #e3d8c6;
  --clay-300: #d0baaa;
  --clay-400: #c0a48f;
  --clay-500: #a9866d;
  --clay-600: #8c6d55;

  --stone-300: #cbc2b3;
  --stone-400: #b3a79b;
  --stone-500: #948779;

  --ink: #2a231c;
  --ink-soft: #6e6255;
  --ink-faint: #a89c8c;
  --line: #e7d9c6;

  --font-display: "Fredoka", "Segoe UI", sans-serif;
  --font-body: "Fredoka", "Segoe UI", sans-serif;
  --font-arabic: "Cairo", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px -20px rgba(42, 35, 28, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(42, 35, 28, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
}

.arabic {
  font-family: var(--font-arabic);
  direction: rtl;
  unicode-bidi: isolate;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section--tight {
  padding: 76px 0;
}

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

.section-head {
  max-width: 720px;
  margin: 0 0 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clay-300);
  color: #453a2e;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  color: var(--ink);
}

.section-head .lede {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-600);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-card);
}

.btn--primary:hover {
  background: var(--clay-600);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(253, 248, 238, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-color: var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 44px;
  width: auto;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-type strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}

.brand-type strong .arabic {
  font-size: 1.05em;
  font-weight: 600;
  color: var(--clay-600);
  margin-inline-start: 3px;
}

.brand-type span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: var(--stone-400);
  white-space: nowrap;
}

.brand-name .arabic {
  color: inherit;
  font-weight: 400;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--ink-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--ink);
  background: var(--sand-100);
}

.main-nav a.is-active {
  color: var(--ink);
  background: var(--clay-300);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

/* ---------- Decorative blobs ---------- */
.blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.grain-veil {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(42,35,28,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 70px;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 82% -8%, var(--sand-100) 0%, transparent 60%),
    radial-gradient(900px 520px at -10% 108%, var(--clay-300) 0%, transparent 55%),
    var(--cream);
}

.hero .blob-a {
  width: 620px;
  height: 620px;
  right: -180px;
  top: -120px;
  background: linear-gradient(160deg, var(--stone-300), var(--clay-300));
  opacity: 0.55;
}

.hero .blob-b {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -80px;
  background: linear-gradient(160deg, var(--clay-300), var(--sand-100));
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy .eyebrow {
  background: var(--paper);
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  color: var(--ink);
}

.hero h1 .arabic {
  display: inline-block;
  font-size: 0.6em;
  color: inherit;
  font-weight: inherit;
  margin-inline-start: 0.15em;
}

.hero .tagline {
  margin-top: 26px;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-figure {
  position: relative;
  margin-top: 52px;
}

.hero-figure .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

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

.hero-figure .icon-badge {
  position: absolute;
  bottom: -30px;
  left: 40px;
  width: 100px;
  height: 100px;
  padding: 13px;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-figure .icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-strip {
  position: relative;
  z-index: 2;
  margin-top: 76px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.hero-strip strong {
  color: var(--ink);
}

.scroll-cue {
  position: relative;
  z-index: 2;
  margin: 44px auto 0;
  width: fit-content;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--ink-soft), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: bottom; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 168px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 90% -10%, var(--sand-100) 0%, transparent 60%),
    var(--cream);
}

.page-hero .blob-a {
  width: 460px;
  height: 460px;
  right: -140px;
  top: -140px;
  background: linear-gradient(160deg, var(--stone-300), var(--clay-300));
  opacity: 0.5;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero-inner.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-inner.center .lede {
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
}

.page-hero .lede {
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.grid {
  display: grid;
  gap: 26px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Numbers / stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 30px 16px;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--clay-600);
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pillar {
  padding: 36px 30px;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.pillar .num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clay-400);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.pillar h3 {
  margin-top: 14px;
  font-size: 1.3rem;
}

.pillar p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Origin / bio blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1fr 0.85fr;
}

.split.reverse .split-figure { order: 2; }

.split-figure {
  position: relative;
}

.split-figure .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split-figure .frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.split-copy p + p {
  margin-top: 18px;
}

.split-copy .lede-text {
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 500;
}

.split-copy p {
  color: var(--ink-soft);
}

.pull-quote {
  margin-top: 30px;
  padding-left: 22px;
  border-left: 3px solid var(--clay-400);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

/* ---------- Season tabs (evenements) ---------- */
.season-tabs {
  display: inline-flex;
  gap: 6px;
  background: var(--sand-100);
  padding: 6px;
  border-radius: var(--radius-pill);
  margin-bottom: 48px;
}

.season-tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}

.season-tab.is-active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.season-panel {
  display: none;
}

.season-panel.is-active {
  display: block;
}

/* ---------- Timeline (evenements) ---------- */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 30px 34px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--clay-300);
}

.event-card.is-past {
  opacity: 0.6;
}

.event-date {
  font-family: var(--font-display);
}

.event-date .day {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clay-600);
  line-height: 1;
}

.event-date .month {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.event-date .weekday {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-body .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay-600);
  background: var(--sand-100);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.event-body h3 {
  font-size: 1.35rem;
}

.event-meta {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.event-meta li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.event-meta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--clay-500);
}

.event-cta {
  justify-self: end;
}

.timeline-line {
  position: absolute;
  left: 99px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--clay-300) 0 6px, transparent 6px 12px);
  z-index: -1;
}

/* EAC / project columns (page 2 style) */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.trio-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trio-col-head {
  background: var(--clay-300);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  text-align: center;
  color: #3c3226;
}

.trio-item {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.trio-item strong {
  color: var(--ink);
}

.trio-item.accent {
  background: var(--sand-100);
  box-shadow: none;
}

/* ---------- Musicians (qui sommes-nous) ---------- */
.director-card {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 46px;
  box-shadow: var(--shadow-soft);
}

.director-card .frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.director-card .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-600);
}

.director-card h3 {
  margin-top: 10px;
  font-size: 1.9rem;
}

.director-card p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.director-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clay-600);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.director-more svg {
  width: 15px;
  height: 15px;
  transition: transform .3s var(--ease);
}

.director-more:hover svg {
  transform: translateX(3px);
}

.musicians-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.musician-card {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: none;
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  font-family: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.musician-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.musician-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(150deg, var(--sand-100), var(--clay-300));
}

.musician-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}

.musician-card:hover .musician-photo img {
  transform: scale(1.04);
}

.musician-photo.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2rem;
  color: #4a3d2e;
}

.musician-card-body {
  padding: 18px 20px 22px;
}

.musician-card .instrument {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-600);
}

.musician-card h4 {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.musician-card .see-more {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ---------- Bio modal ---------- */
.bio-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(24, 19, 14, 0.6);
  backdrop-filter: blur(6px);
  padding: 5vh 20px;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
}

.bio-modal-overlay.is-open {
  display: flex;
}

.bio-modal {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.bio-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(253, 248, 238, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-card);
}

.bio-modal-close svg {
  width: 18px;
  height: 18px;
}

.bio-modal-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, var(--sand-100), var(--clay-300));
}

.bio-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.bio-modal-body {
  padding: 32px 34px 40px;
  max-height: 60vh;
  overflow-y: auto;
}

.bio-modal-body .instrument {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-600);
}

.bio-modal-body h3 {
  margin-top: 8px;
  font-size: 1.6rem;
}

.bio-modal-body p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.bio-modal-body p:first-of-type {
  margin-top: 22px;
}

/* ---------- Media page ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery a, .gallery .tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: block;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery a:hover img {
  transform: scale(1.06);
}

.gallery .span-2 { grid-column: span 2; }
.gallery .span-2-row { grid-row: span 2; }

.tile-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, var(--clay-300), transparent 60%),
    linear-gradient(150deg, var(--sand-100), var(--stone-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(42,35,28,0.55);
}

.tile-placeholder svg {
  width: 34px;
  height: 34px;
}

.tile-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.gallery a:hover::after,
.gallery a:hover .tile-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Press / social row */
.social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.social-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-600);
}

.social-icon svg { width: 20px; height: 20px; }

.social-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.social-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Video feature */
.video-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  box-shadow: var(--shadow-soft);
}

.video-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(20,16,10,0.15), rgba(20,16,10,0.45));
}

.play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(253,248,238,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease);
}

.video-feature:hover .play-btn {
  transform: scale(1.08);
}

.play-btn svg {
  width: 26px;
  height: 26px;
  color: var(--ink);
  margin-left: 4px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--cream);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band .blob {
  background: linear-gradient(160deg, var(--clay-500), transparent);
  opacity: 0.5;
  width: 460px;
  height: 460px;
  right: -160px;
  top: -180px;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.cta-band p {
  margin-top: 12px;
  color: var(--stone-300);
  position: relative;
  z-index: 1;
}

.cta-band .btn--primary {
  background: var(--cream);
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.cta-band .btn--primary:hover {
  background: var(--clay-300);
}

/* ---------- Partners ---------- */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0.85;
}

.partners-row .partner {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.3;
}

.partners-row .partner span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--stone-300);
  padding: 84px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(253,248,238,0.12);
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  margin-top: 20px;
  color: var(--stone-300);
  font-size: 0.92rem;
  max-width: 30ch;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}

.footer-col li + li {
  margin-top: 11px;
}

.footer-col a {
  color: var(--stone-300);
  font-size: 0.93rem;
  transition: color .3s var(--ease);
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.footer-bottom a:hover {
  color: var(--cream);
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .trio { grid-template-columns: 1fr; }
  .musicians-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split-figure { order: -1 !important; }
  .director-card { grid-template-columns: 1fr; }
  .director-card .frame { max-width: 320px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .social-row { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .span-2 { grid-column: span 2; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .main-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    padding: 110px 32px 40px;
    overflow-y: auto;
    z-index: 50;
  }

  .site-header.nav-open .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-header.nav-open .main-nav a {
    font-size: 1.4rem;
    padding: 14px 18px;
  }

  .event-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .event-date {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .event-cta { justify-self: start; }
  .timeline-line { display: none; }
  .musicians-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 76px 0; }
  .hero { padding-top: 130px; }
  .cta-band { padding: 46px 30px; flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .social-row { grid-template-columns: 1fr; }
  .musicians-grid { grid-template-columns: 1fr 1fr; }
  .director-card { padding: 28px; }
  .grid--2 { grid-template-columns: 1fr; }
  .hero-figure .icon-badge { width: 72px; height: 72px; left: 20px; bottom: -20px; padding: 9px; }
}
