/* ============================================================
   CTCA UK — Main Stylesheet
   Palette: Black #080808 | Charcoal #171717 | Dark Grey #292929
            Red #B10304 | White #FFFFFF | Off-White #F7F7F5
            Light Grey #E6E6E6 | Mid Grey #A5A5A5 | Text Grey #606060
   Fonts: Montserrat (headings) | Inter (body)
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --ctca-red:        #B10304;
  --ctca-red-dark:   #850203;
  --ctca-red-bright: #D30A12;
  --ctca-black:      #080808;
  --ctca-charcoal:   #171717;
  --ctca-dark-grey:  #292929;
  --ctca-white:      #FFFFFF;
  --ctca-off-white:  #F7F7F5;
  --ctca-light-grey: #E6E6E6;
  --ctca-mid-grey:   #A5A5A5;
  --ctca-text-grey:  #606060;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ctca-dark-grey);
  background: var(--ctca-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ctca-red); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--ctca-red); outline-offset: 2px; border-radius: 2px; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--ctca-charcoal); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 4px 4px;
  font-size: .875rem; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ctca-black);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.0625rem, 2vw, 1.375rem); }
h4 { font-size: 1.0625rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ctca-red);
  margin-bottom: .75rem;
}
.section-label--light { color: rgba(255,255,255,.55); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section       { padding: 5rem 0; }
.section--sm   { padding: 3rem 0; }
.section--lg   { padding: 7rem 0; }

/* Section backgrounds — new palette */
.section--ivory,
.section--off-white  { background: var(--ctca-off-white); }
.section--navy,
.section--dark       { background: var(--ctca-charcoal); color: #fff; }
.section--navy  h1,  .section--navy  h2,  .section--navy  h3,
.section--dark  h1,  .section--dark  h2,  .section--dark  h3  { color: #fff; }
.section--charcoal   { background: var(--ctca-dark-grey); color: #fff; }
.section--charcoal h1, .section--charcoal h2, .section--charcoal h3 { color: #fff; }
.section--beige      { background: var(--ctca-off-white); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--ctca-red); outline-offset: 2px; }
.btn:active { transform: translateY(1px); }
.btn:hover  { text-decoration: none; }

/* Primary — red */
.btn--red     { background: var(--ctca-red); color: #fff; border-color: var(--ctca-red); }
.btn--red:hover { background: var(--ctca-red-dark); border-color: var(--ctca-red-dark); color: #fff; }

/* Secondary — black */
.btn--navy    { background: var(--ctca-black); color: #fff; border-color: var(--ctca-black); }
.btn--navy:hover { background: var(--ctca-dark-grey); border-color: var(--ctca-dark-grey); color: #fff; }
.btn--dark    { background: var(--ctca-charcoal); color: #fff; border-color: var(--ctca-charcoal); }
.btn--dark:hover { background: var(--ctca-dark-grey); color: #fff; }

/* Outline — black border */
.btn--outline {
  background: transparent;
  color: var(--ctca-black);
  border-color: var(--ctca-black);
}
.btn--outline:hover { background: var(--ctca-black); color: #fff; }

/* Outline — red border */
.btn--outline-red {
  background: transparent;
  color: var(--ctca-red);
  border-color: var(--ctca-red);
}
.btn--outline-red:hover { background: var(--ctca-red); color: #fff; }

/* Outline — white (for dark backgrounds) */
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn--sm  { padding: .5rem 1.25rem; font-size: .8125rem; }
.btn--lg  { padding: 1rem 2.25rem; font-size: .9375rem; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--ctca-light-grey);
  border-radius: 4px;
  overflow: hidden;
}
.card__body  { padding: 1.5rem; }
.card__title { font-size: 1.0625rem; margin-bottom: .5rem; }
.card__meta  { font-size: .8125rem; color: var(--ctca-text-grey); margin-bottom: .75rem; }
.card__img   { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* Grid helpers */
.grid   { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ── Site Topbar ──────────────────────────────────────────── */
.site-topbar {
  background: var(--ctca-charcoal);
  border-bottom: 1px solid var(--ctca-dark-grey);
  position: sticky; top: 0; z-index: 101;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; gap: 1rem;
}
.topbar-left {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ctca-mid-grey);
}
.topbar-right {
  display: flex; align-items: center; gap: 1.25rem;
}
.topbar-right a {
  font-size: .7rem;
  font-weight: 500;
  color: var(--ctca-mid-grey);
  letter-spacing: .01em;
  transition: color .15s;
}
.topbar-right a:hover { color: #fff; text-decoration: none; }
.topbar-right a + a::before {
  content: '';
  display: inline-block;
  width: 1px; height: 10px;
  background: var(--ctca-dark-grey);
  margin-right: 1.25rem;
  vertical-align: middle;
}

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 36px; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--ctca-light-grey);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.site-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.header-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── Main Nav ─────────────────────────────────────────────── */
.main-nav { flex: 1; }
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: flex-end;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: .25rem;
  padding: .5rem .875rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ctca-dark-grey);
  border-radius: 0;
  transition: color .15s;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -1px; left: .875rem; right: .875rem;
  height: 2px; background: var(--ctca-red);
  transform: scaleX(0); transition: transform .2s;
}
.nav-link:hover { color: var(--ctca-black); text-decoration: none; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-item--active > .nav-link { color: var(--ctca-red); }
.nav-item--active > .nav-link::after { transform: scaleX(1); }
.nav-chevron { transition: transform .2s; flex-shrink: 0; color: var(--ctca-mid-grey); }
.nav-item--has-dropdown:hover > .nav-link .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 1px); left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--ctca-light-grey);
  border-top: 2px solid var(--ctca-red);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: .375rem 0;
  z-index: 200;
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown__link {
  display: block;
  padding: .5625rem 1.125rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .7875rem;
  font-weight: 500;
  color: var(--ctca-dark-grey);
  transition: background .12s, color .12s;
}
.nav-dropdown__link:hover { background: var(--ctca-off-white); color: var(--ctca-red); text-decoration: none; }

/* Language switcher */
.lang-switcher {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ctca-text-grey);
  padding: .25rem .5rem;
  border-radius: 3px;
  border: 1px solid var(--ctca-light-grey);
  transition: color .2s, border-color .2s;
}
.lang-switcher:hover { color: var(--ctca-black); border-color: var(--ctca-dark-grey); text-decoration: none; }

/* Header CTA */
.header-cta {
  font-size: .8125rem;
  padding: .5rem 1.125rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle__bar {
  display: block; width: 22px; height: 2px;
  background: var(--ctca-black);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Site banner (admin-configurable announcement) */
.site-banner { position: sticky; top: 0; z-index: 102; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: var(--ctca-charcoal);
  padding: 3.5rem 0 2.75rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--ctca-red);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p  { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 640px; margin-bottom: 0; }

/* ── Home Hero ────────────────────────────────────────────── */
.home-hero {
  background:
    linear-gradient(105deg, rgba(8,8,8,.86) 42%, rgba(8,8,8,.42) 100%),
    url('../images/hero-bg.png') center 30% / cover no-repeat,
    var(--ctca-black);
  padding: 5.5rem 0 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--ctca-red);
  z-index: 1;
}
.home-hero .container { position: relative; z-index: 1; }
.home-hero .stats-bar  { position: relative; z-index: 1; }

.home-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ctca-red);
  margin-bottom: 1.75rem;
}
.home-hero__badge::before {
  content: '';
  display: inline-block; width: 24px; height: 2px;
  background: var(--ctca-red);
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 720px;
  letter-spacing: -.01em;
}
.home-hero h1 .accent { color: var(--ctca-red); }
.home-hero > .container > p {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Stats bar */
.stats-bar {
  background: var(--ctca-charcoal);
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 4rem;
  padding: 2.25rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item__num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-item__label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .5rem;
}

/* ── Festival banner ──────────────────────────────────────── */
.festival-banner {
  background: var(--ctca-red);
  padding: .875rem 0;
}
.festival-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.festival-banner__label {
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .2rem;
}
.festival-banner__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.875rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.festival-banner__meta {
  font-size: .8125rem; color: rgba(255,255,255,.75);
}

/* ── About Section ────────────────────────────────────────── */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-block__text h2 { margin-bottom: 1rem; }
.about-block__text p  { color: var(--ctca-text-grey); }
.about-block__image img { border-radius: 3px; width: 100%; }

/* About stats row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2.75rem;
    border-top: 1px solid var(--ctca-light-grey);
}
.about-stats--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.about-stat { position: relative; padding-left: 1.25rem; }
.about-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: .15rem;
    bottom: .15rem;
    width: 3px;
    border-radius: 2px;
    background: var(--ctca-red);
}
.about-stat__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--ctca-black);
    letter-spacing: -.02em;
}
.about-stat__label {
    margin-top: .6rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--ctca-text-grey);
}

/* ── Mission pillars ──────────────────────────────────────── */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--ctca-light-grey); }
.mission-pillar {
  padding: 2.25rem;
  border-right: 1px solid var(--ctca-light-grey);
  position: relative;
}
.mission-pillar:last-child { border-right: none; }
.mission-pillar::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--ctca-red);
}
.mission-pillar h3 { font-size: 1rem; margin-bottom: .625rem; color: var(--ctca-black); }
.mission-pillar p  { font-size: .9rem; color: var(--ctca-text-grey); margin: 0; line-height: 1.65; }

/* ── Team ─────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}
.team-card { text-align: center; }
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--ctca-light-grey);
  background: var(--ctca-off-white);
}
.team-card__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--ctca-charcoal); color: rgba(255,255,255,.35);
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
}
.team-card__name { font-size: 1rem; font-weight: 700; color: var(--ctca-black); margin-bottom: .25rem; }
.team-card__role { font-size: .8125rem; color: var(--ctca-text-grey); }

/* ── Members ──────────────────────────────────────────────── */
.members-group { margin-bottom: 3rem; }
.members-group__header {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--ctca-black);
  padding-bottom: .75rem;
  margin-bottom: 1.5rem;
}
.members-group__count {
  font-size: .75rem; font-weight: 700;
  background: var(--ctca-black); color: #fff;
  padding: .2rem .6rem; border-radius: 2px;
  letter-spacing: .04em;
}
.member-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--ctca-light-grey);
  border-radius: 3px;
  transition: box-shadow .2s;
}
.member-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.member-card__logo {
  width: 64px; height: 64px;
  object-fit: contain; border-radius: 3px;
  flex-shrink: 0;
  background: var(--ctca-off-white); padding: .25rem;
}
.member-card__name { font-size: .9375rem; font-weight: 700; color: var(--ctca-black); margin-bottom: .25rem; }
.member-card__desc { font-size: .8125rem; color: var(--ctca-text-grey); }
.member-card__link { font-size: .8125rem; color: var(--ctca-red); margin-top: .25rem; display: inline-block; }
.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1rem; }

/* ── Festival ─────────────────────────────────────────────── */
.festival-editions { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.edition-card {
  background: #fff;
  border: 1px solid var(--ctca-light-grey);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.edition-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.edition-card__img {
  width: 100%; height: 200px; object-fit: cover;
  background: var(--ctca-charcoal);
}
.edition-card__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 2rem; color: rgba(255,255,255,.2);
}
.edition-card__body { padding: 1.25rem; }
.edition-card__edition {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ctca-red); margin-bottom: .25rem;
}
.edition-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--ctca-black); margin-bottom: .5rem; }
.edition-card__meta  { font-size: .8125rem; color: var(--ctca-text-grey); }

/* ── Events ───────────────────────────────────────────────── */
.event-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.5rem; align-items: start;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--ctca-light-grey);
  border-radius: 3px;
}
.event-date-box {
  text-align: center;
  background: var(--ctca-black);
  color: #fff;
  border-radius: 3px;
  padding: .75rem;
  min-width: 64px;
}
.event-date-box__day  { font-size: 1.75rem; font-weight: 800; line-height: 1; font-family: 'Montserrat', sans-serif; }
.event-date-box__mon  { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .6; margin-top: .2rem; }
.event-date-box__year { font-size: .65rem; opacity: .45; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; }
.contact-email-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ctca-light-grey);
}
.contact-email-row:last-child { border-bottom: none; }
.contact-email-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--ctca-red);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: .375rem;
  color: var(--ctca-black);
  letter-spacing: .01em;
}
.form-group label .req { color: var(--ctca-red); }
.form-control {
  width: 100%;
  padding: .625rem .875rem;
  border: 1.5px solid var(--ctca-light-grey);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--ctca-dark-grey);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--ctca-red);
  box-shadow: 0 0 0 3px rgba(177,3,4,.1);
}
.form-control--error { border-color: var(--ctca-red); }
.field-error { color: var(--ctca-red); font-size: .8125rem; margin-top: .25rem; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-group--honey { display: none !important; }

/* ── Alerts ───────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 3px;
  border-left: 3px solid;
  margin-bottom: 1.25rem;
  font-size: .9375rem;
}
.alert--success { background: #f0fdf4; border-color: #16a34a; color: #15803d; }
.alert--error   { background: #fef2f2; border-color: var(--ctca-red); color: #991b1b; }
.alert--warning { background: #fffbeb; border-color: #d97706; color: #92400e; }
.alert--info    { background: #f7f7f5; border-color: var(--ctca-charcoal); color: var(--ctca-black); }

/* ── History timeline ─────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--ctca-light-grey);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -2.375rem; top: .375rem;
  width: 12px; height: 12px;
  background: var(--ctca-red); border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--ctca-red);
}
.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 800;
  color: var(--ctca-red); margin-bottom: .25rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.timeline-item h3 { font-size: 1rem; margin-bottom: .375rem; }
.timeline-item p  { font-size: .9rem; color: var(--ctca-text-grey); margin: 0; }

/* ── Admin ────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--ctca-charcoal);
  padding: 2rem 0;
}
.admin-logo {
  display: block;
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1rem;
}
.admin-logo img { height: 40px; width: auto; }
.admin-nav__link {
  display: flex; align-items: center; gap: .75rem;
  padding: .625rem 1.5rem;
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color .15s, background .15s;
}
.admin-nav__link:hover { color: #fff; background: rgba(255,255,255,.07); text-decoration: none; }
.admin-nav__link--active { color: #fff; background: rgba(255,255,255,.1); border-left: 3px solid var(--ctca-red); }
.admin-main { background: #f5f5f3; padding: 2rem; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.admin-topbar h1 { font-size: 1.5rem; }
.admin-card { background: #fff; border: 1px solid var(--ctca-light-grey); border-radius: 4px; padding: 1.5rem; margin-bottom: 1.5rem; }
.admin-card__title { font-size: 1.0625rem; margin-bottom: 1rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--ctca-light-grey); font-size: .875rem; }
.admin-table th { font-weight: 700; background: #fafafa; color: var(--ctca-black); font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; }
.admin-table tr:last-child td { border-bottom: none; }
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 2px; font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge--green  { background: #f0fdf4; color: #16a34a; }
.badge--red    { background: #fef2f2; color: var(--ctca-red); }
.badge--gray   { background: #f3f4f6; color: #6b7280; }
.badge--orange { background: #fff7ed; color: #c2410c; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: #fff; border: 1px solid var(--ctca-light-grey); border-radius: 4px; padding: 1.25rem; text-align: center; }
.stat-card__num   { font-size: 2rem; font-weight: 800; color: var(--ctca-black); line-height: 1; font-family: 'Montserrat', sans-serif; }
.stat-card__label { font-size: .75rem; color: var(--ctca-text-grey); margin-top: .375rem; }

/* ── Cookie notice ────────────────────────────────────────── */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--ctca-black); color: #fff;
  padding: .875rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  font-size: .875rem;
  transform: translateY(0); transition: transform .3s;
  border-top: 2px solid var(--ctca-red);
}
.cookie-notice.is-hidden { transform: translateY(110%); }
.cookie-notice p { margin: 0; }
.cookie-notice a { color: rgba(255,255,255,.6); }
.cookie-notice a:hover { color: #fff; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  font-size: .8125rem; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.65); }
.breadcrumb__sep { color: rgba(255,255,255,.2); }

/* ── Prose content ────────────────────────────────────────── */
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.5rem 0 .75rem; }
.prose p  { margin-bottom: 1rem; line-height: 1.75; color: var(--ctca-text-grey); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .375rem; color: var(--ctca-text-grey); }
.prose a  { color: var(--ctca-red); }
.prose blockquote {
  border-left: 3px solid var(--ctca-red);
  padding: 1rem 1.5rem;
  background: var(--ctca-off-white);
  margin: 1.5rem 0;
  font-style: italic; color: var(--ctca-text-grey);
}

/* ── Policy review notice ─────────────────────────────────── */
.policy-notice {
  background: #fffbeb;
  border: 1px solid #d97706;
  border-radius: 3px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: .875rem;
  color: #92400e;
}

/* ── Install wizard ───────────────────────────────────────── */
.install-wrapper {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--ctca-off-white);
  padding: 2rem;
}
.install-card {
  background: #fff;
  border: 1px solid var(--ctca-light-grey);
  border-radius: 4px;
  padding: 2.5rem;
  max-width: 560px; width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.install-card h1 { font-size: 1.5rem; margin-bottom: .5rem; }
.install-card p.sub { color: var(--ctca-text-grey); margin-bottom: 2rem; }
.install-steps { display: flex; gap: .5rem; margin-bottom: 2rem; }
.install-step { flex: 1; height: 3px; border-radius: 2px; background: var(--ctca-light-grey); }
.install-step--done   { background: var(--ctca-charcoal); }
.install-step--active { background: var(--ctca-red); }

/* ── Site Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--ctca-charcoal);
  color: rgba(255,255,255,.7);
  border-top: 3px solid var(--ctca-red);
}
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 3rem;
}
.footer-col--identity { padding-right: 1rem; }
.footer-logo { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo img { height: 48px; width: auto; }
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ctca-red);
  margin-bottom: .75rem;
}
.footer-about {
  font-size: .8125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex; align-items: center; gap: .75rem;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  color: rgba(255,255,255,.5);
  transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.5); text-decoration: none; }

.footer-col__title {
  font-family: 'Montserrat', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.125rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-nav a:hover { color: #fff; text-decoration: none; }

.footer-contact { font-size: .8125rem; }
.footer-contact p { color: rgba(255,255,255,.55); margin-bottom: .875rem; line-height: 1.6; }
.footer-contact p:last-child { margin-bottom: 0; }
.footer-contact strong { color: rgba(255,255,255,.75); display: block; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .25rem; }
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  background: var(--ctca-black);
  padding: 1.125rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copyright {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}
.footer-legal-nav {
  display: flex; gap: 1.5rem;
}
.footer-legal-nav a {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  transition: color .15s;
}
.footer-legal-nav a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-red    { color: var(--ctca-red); }
.text-navy   { color: var(--ctca-black); }
.text-gold   { color: var(--ctca-text-grey); }
.text-muted  { color: var(--ctca-text-grey); }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: .5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mt-2  { margin-top: 1rem; }
.mt-4  { margin-top: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.divider { border: none; border-top: 1px solid var(--ctca-light-grey); margin: 2rem 0; }
.divider--red { border-top-color: var(--ctca-red); }

/* ── 404 ──────────────────────────────────────────────────── */
.error-page {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem;
}
.error-page__num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800; line-height: 1;
  color: var(--ctca-red); opacity: .12;
}
.error-page h1 { margin-top: -.5em; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-block     { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-grid    { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; gap: 2.5rem; }
  .admin-layout    { grid-template-columns: 1fr; }
  .admin-sidebar   { display: none; }
  .stat-cards      { grid-template-columns: repeat(2, 1fr); }
  .about-stats     { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; margin-top: 2.5rem; padding-top: 2rem; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-col--identity { grid-column: 1 / -1; padding-right: 0; }
  .mission-pillar  { border-right: none; border-bottom: 1px solid var(--ctca-light-grey); }
  .mission-pillar:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .site-topbar     { display: none; }
  .site-header     { top: 0; }
  .nav-toggle      { display: flex; }
  .main-nav {
    display: none;
    position: fixed; inset: 72px 0 0;
    background: #fff;
    overflow-y: auto;
    padding: 1rem 0 3rem;
    z-index: 99;
    border-top: 1px solid var(--ctca-light-grey);
  }
  .main-nav.is-open { display: block; }
  .main-nav__list  { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link {
    padding: .875rem 1.5rem;
    border-radius: 0;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--ctca-black);
    border-bottom: 1px solid var(--ctca-light-grey);
  }
  .nav-link::after { display: none; }
  .nav-item--active > .nav-link { color: var(--ctca-red); background: rgba(177,3,4,.04); }
  .nav-chevron { color: var(--ctca-mid-grey); }
  .nav-dropdown {
    display: none;
    position: static;
    background: var(--ctca-off-white);
    border: none; border-radius: 0;
    box-shadow: none; padding: 0;
    border-top: none;
  }
  .nav-item--has-dropdown.is-open .nav-dropdown { display: block; }
  .nav-dropdown__link {
    color: var(--ctca-text-grey);
    padding: .625rem 1.5rem .625rem 2.5rem;
    border-bottom: 1px solid var(--ctca-light-grey);
  }
  .nav-dropdown__link:hover { color: var(--ctca-red); background: rgba(177,3,4,.04); }
  .nav-toggle__bar { background: var(--ctca-black); }
  .header-cta { display: none; }
  .stats-bar__grid   { grid-template-columns: repeat(2, 1fr); }
  .home-hero         { padding: 3.5rem 0 0; }
  .festival-banner__inner { flex-direction: column; text-align: center; }
  .about-block__image { order: -1; }
  .team-grid         { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .festival-editions { grid-template-columns: 1fr; }
  .members-grid      { grid-template-columns: 1fr; }
  .event-card        { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stat-cards        { grid-template-columns: 1fr 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .container        { padding: 0 1rem; }
  .stats-bar__grid  { grid-template-columns: 1fr 1fr; }
  .hero-ctas        { flex-direction: column; align-items: flex-start; }
  .stat-cards       { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-legal-nav { flex-wrap: wrap; justify-content: center; }
}

/* ── What We Do grid (Our History page) ─────────────────── */
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ctca-light-grey);
}
.what-we-do-item {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--ctca-light-grey);
  border-bottom: 1px solid var(--ctca-light-grey);
  position: relative;
}
.what-we-do-item:nth-child(3n) { border-right: none; }
.what-we-do-item:nth-last-child(-n+3) { border-bottom: none; }
.what-we-do-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ctca-red);
  margin-bottom: .75rem;
}
.what-we-do-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--ctca-black);
}
.what-we-do-item p {
  font-size: .875rem;
  color: var(--ctca-text-grey);
  margin: 0;
  line-height: 1.6;
}

/* ── Member names grid (Homepage) ──────────────────────────── */
.member-names-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 1.75rem 0 1.5rem;
}
.member-name-tag {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ctca-charcoal);
  background: #fff;
  border: 1px solid var(--ctca-light-grey);
  border-radius: 2px;
  padding: .45rem .9rem;
  letter-spacing: .01em;
}

/* ── Admin bar (visible only to logged-in admins) ────────── */
.admin-bar {
  background: var(--ctca-black);
  border-bottom: 2px solid var(--ctca-red);
  padding: .45rem 0;
  position: sticky;
  top: 0;
  z-index: 1100;
}
.admin-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.admin-bar__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ctca-red);
}
.admin-bar__links {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
}
.admin-bar__links a {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: .3rem .7rem;
  border-radius: 2px;
  transition: background .15s, color .15s;
}
.admin-bar__links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-bar__links a.admin-bar__exit {
  color: #fff;
  background: var(--ctca-red);
  margin-left: .5rem;
}
.admin-bar__links a.admin-bar__exit:hover { background: #8c0203; }

@media (max-width: 768px) {
  .what-we-do-grid { grid-template-columns: 1fr; }
  .what-we-do-item { border-right: none; border-bottom: 1px solid var(--ctca-light-grey); }
  .what-we-do-item:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════
   FESTIVAL 2026 PAGE
   ════════════════════════════════════════════════════════════ */

/* ── Extra-large button ─────────────────────────────────────── */
.btn--xl {
  padding: .9rem 2.25rem;
  font-size: 1rem;
  letter-spacing: .04em;
}

/* ── Festival hero ──────────────────────────────────────────── */
.fest-hero {
  position: relative;
  background:
    url('../images/festival-2026.png') center / cover no-repeat,
    var(--ctca-black);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
  overflow: hidden;
}
.fest-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8,8,8,.96) 40%,
    rgba(177,3,4,.55) 100%
  );
  z-index: 0;
}
.fest-hero::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--ctca-red);
  z-index: 2;
}
.fest-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.fest-hero__edition {
  font-family: 'Montserrat', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ctca-red);
  margin-bottom: 1.25rem;
}
.fest-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.fest-hero__title span { color: var(--ctca-red); }
.fest-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* meta strip */
.fest-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 0;
  margin-bottom: 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 3px;
  padding: 1rem 1.5rem;
}
.fest-meta-item { display: flex; flex-direction: column; gap: .2rem; }
.fest-meta-item__label {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ctca-red);
  text-transform: uppercase;
}
.fest-meta-item__val {
  font-size: .9375rem;
  font-weight: 500;
  color: #fff;
}
.fest-meta-sep {
  width: 1px; height: 2.5rem;
  background: rgba(255,255,255,.15);
  margin: 0 1.5rem;
}

/* countdown */
.fest-countdown {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
}
.fest-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  padding: .8rem 1.25rem;
  min-width: 80px;
}
.fest-countdown__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.fest-countdown__lbl {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ctca-red);
  margin-top: .35rem;
}
.fest-countdown__colon {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  align-self: center;
  padding-bottom: .5rem;
}

/* hero CTAs */
.fest-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* ── Jump nav ───────────────────────────────────────────────── */
.fest-jumps {
  background: var(--ctca-black);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 900;
}
.fest-jumps__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fest-jumps__inner::-webkit-scrollbar { display: none; }
.fest-jump {
  display: block;
  padding: .85rem 1.25rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.fest-jump:hover { color: #fff; border-bottom-color: var(--ctca-red); }

/* ── Stats bar ──────────────────────────────────────────────── */
.fest-stats-bar {
  background: var(--ctca-charcoal);
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fest-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}
.fest-stat__num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ctca-red);
  letter-spacing: -.02em;
}
.fest-stat__lbl {
  display: block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
}

/* ── Festival detail list ───────────────────────────────────── */
.fest-detail-list {
  margin: 1.5rem 0 2rem;
  border: 1px solid var(--ctca-light-grey);
  border-radius: 3px;
  overflow: hidden;
}
.fest-detail-row {
  display: flex;
  align-items: baseline;
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--ctca-light-grey);
  gap: 1rem;
}
.fest-detail-row:last-child { border-bottom: none; }
.fest-detail-row__key {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ctca-red);
  min-width: 90px;
  flex-shrink: 0;
}
.fest-detail-row__val {
  font-size: .9rem;
  color: var(--ctca-charcoal);
}

/* ── Highlights grid ────────────────────────────────────────── */
.fest-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ctca-light-grey);
}
.fest-highlight {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--ctca-light-grey);
  border-bottom: 1px solid var(--ctca-light-grey);
  position: relative;
}
.fest-highlight:nth-child(3n)         { border-right: none; }
.fest-highlight:nth-last-child(-n+3)  { border-bottom: none; }
.fest-highlight__num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ctca-red);
  margin-bottom: .75rem;
}
.fest-highlight h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ctca-black);
  margin-bottom: .6rem;
}
.fest-highlight p {
  font-size: .875rem;
  color: var(--ctca-text-grey);
  margin: 0;
  line-height: 1.65;
}

/* ── Ticket band ────────────────────────────────────────────── */
.fest-ticket-band {
  background: var(--ctca-charcoal);
}
.fest-ticket-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.fest-ticket-btns {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── EXPO section ───────────────────────────────────────────── */
.fest-expo-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.fest-expo-bullets {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.fest-expo-bullet {
  display: flex;
  gap: 1rem;
  font-size: .9rem;
  color: var(--ctca-charcoal);
}
.fest-expo-bullet__mark {
  color: var(--ctca-red);
  font-weight: 700;
  flex-shrink: 0;
  width: 1rem;
}
.fest-expo-card {
  background: var(--ctca-black);
  color: #fff;
  padding: 2rem;
  border-radius: 3px;
  position: sticky;
  top: 100px;
}
.fest-expo-card__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ctca-red);
  margin-bottom: 1rem;
}
.fest-expo-card__detail {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: .4rem;
}
.fest-expo-card__detail strong { color: #fff; }

/* ── Sponsor tiers ──────────────────────────────────────────── */
.sponsor-tier {
  margin-bottom: 3rem;
}
.sponsor-tier__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ctca-text-grey);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--ctca-light-grey);
  padding-bottom: .5rem;
}
.sponsor-tier__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.sponsor-tier__logos--lead { justify-content: flex-start; }
.sponsor-tier__logos--major { gap: 2rem; }
.sponsor-tier__logos--supporting { gap: 1.25rem; }

.sponsor-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--ctca-light-grey);
  border-radius: 3px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  min-width: 140px;
  max-width: 180px;
}
.sponsor-logo:hover {
  border-color: var(--ctca-red);
  box-shadow: 0 2px 12px rgba(177,3,4,.08);
}
.sponsor-logo--lead {
  min-width: 220px;
  max-width: 280px;
  padding: 1.75rem 2.5rem;
}
.sponsor-logo img {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.sponsor-logo--lead img { max-height: 80px; max-width: 200px; }
.sponsor-logo__name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ctca-charcoal);
  margin: .65rem 0 0;
}
.sponsor-logo__role {
  font-size: .7rem;
  color: var(--ctca-text-grey);
  margin: .2rem 0 0;
}

/* Become a sponsor strip */
.fest-sponsor-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--ctca-off-white);
  border: 1px solid var(--ctca-light-grey);
  border-radius: 3px;
  padding: 2rem 2.5rem;
  margin-top: 1.5rem;
}
.fest-sponsor-cta h3 { margin-bottom: .4rem; color: var(--ctca-black); }
.fest-sponsor-cta p  { margin: 0; color: var(--ctca-text-grey); font-size: .9rem; }

/* ── Festival Magazine ──────────────────────────────────────── */
.fest-magazine-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.fest-magazine-card {
  background: var(--ctca-black);
  padding: 2rem;
  border-radius: 3px;
  position: sticky;
  top: 100px;
}
.fest-magazine-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.fest-magazine-list li {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  padding-left: 1rem;
  position: relative;
}
.fest-magazine-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--ctca-red);
  font-weight: 700;
}
.fest-magazine-list li:last-child { border-bottom: none; }

/* ── Final CTA ──────────────────────────────────────────────── */
.fest-final-cta { background: var(--ctca-charcoal); }
.fest-final-cta__kicker {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ctca-red);
  margin-bottom: .25rem;
}

/* ── T&Cs accordion ─────────────────────────────────────────── */
.fest-tcs {
  border: 1px solid var(--ctca-light-grey);
  border-radius: 3px;
  background: #fff;
}
.fest-tcs__toggle {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ctca-charcoal);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fest-tcs__toggle::-webkit-details-marker { display: none; }
.fest-tcs__toggle::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ctca-text-grey);
  transition: transform .2s;
}
details[open] .fest-tcs__toggle::after { transform: rotate(45deg); }
.fest-tcs__body {
  padding: .25rem 1.25rem 1.25rem;
  border-top: 1px solid var(--ctca-light-grey);
}

/* ── Festival page responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .fest-expo-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .fest-expo-card     { position: static; }
  .fest-magazine-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fest-magazine-card  { position: static; }
}
@media (max-width: 768px) {
  .fest-hero          { min-height: 70vh; padding: 4rem 0 2.5rem; }
  .fest-hero__meta    { flex-direction: column; gap: .75rem; }
  .fest-meta-sep      { display: none; }
  .fest-stats-grid    { grid-template-columns: repeat(3,1fr); }
  .fest-highlights-grid { grid-template-columns: 1fr; }
  .fest-highlight     { border-right: none; border-bottom: 1px solid var(--ctca-light-grey); }
  .fest-highlight:last-child { border-bottom: none; }
  .fest-ticket-inner  { flex-direction: column; align-items: flex-start; }
  .fest-sponsor-cta   { flex-direction: column; align-items: flex-start; }
  .fest-countdown__unit { min-width: 60px; padding: .6rem .9rem; }
  .fest-countdown__num  { font-size: 1.75rem; }
  .sponsor-tier__logos  { gap: 1rem; }
  .sponsor-logo         { min-width: 110px; max-width: 140px; padding: 1rem; }
  .sponsor-logo--lead   { min-width: 160px; max-width: 200px; }
}
@media (max-width: 480px) {
  .fest-stats-grid    { grid-template-columns: 1fr 1fr; }
}
