/* ================================================
   HEXAGON SOCIETY — Global Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Cormorant:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --bordeaux:     #7B2333;
  --bordeaux-dk:  #5A1825;
  --midnight:     #0D1B2A;
  --midnight-lt:  #162032;
  --black:        #0A0A0A;
  --stone:        #B5A99A;
  --stone-lt:     #D9D2CA;
  --cream:        #F5F0EA;
  --white:        #FFFFFF;
  --gold:         #C9A96E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:   0.4s var(--ease);
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.t-hero {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.t-section {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.t-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
}
.t-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.t-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
.t-editorial {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  line-height: 1.75;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 40px;
}
section { position: relative; }

/* ─── NAVIGATION ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px 40px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--gold); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}
.lang-toggle button {
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 4px 2px;
}
.lang-toggle button.active,
.lang-toggle button:hover { color: var(--white); }
.lang-toggle .sep { opacity: 0.3; }
.btn-member {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--bordeaux);
  padding: 10px 20px;
  transition: background var(--transition);
}
.btn-member:hover { background: var(--bordeaux-dk); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay__close {
  position: absolute;
  top: 28px;
  right: 40px;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--bordeaux);
  color: var(--white);
  border: 1px solid var(--bordeaux);
}
.btn--primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn--dark:hover {
  background: transparent;
  color: var(--black);
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 14px; }
.link-arrow--light { color: var(--white); }
.link-arrow--gold { color: var(--gold); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.3) 50%,
    rgba(10,10,10,0.15) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.hero__desc {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── SECTION PADDING ────────────────────────────── */
.section-xl { padding: 140px 0; }
.section-lg { padding: 100px 0; }
.section-md { padding: 70px 0; }
.section-sm { padding: 50px 0; }

/* ─── SECTION HEADER ─────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}
.section-header--center { text-align: center; }
.section-header .t-label {
  color: var(--bordeaux);
  margin-bottom: 16px;
  display: block;
}
.section-header--light .t-label { color: var(--gold); }

/* ─── DIVIDER ──────────────────────────────────────── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--bordeaux);
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }
.divider--gold { background: var(--gold); }
.divider--light { background: rgba(255,255,255,0.3); }

/* ─── MANIFESTO SECTION ──────────────────────────── */
.manifesto {
  background: var(--cream);
}
.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto__text .t-editorial { color: var(--midnight); }

/* ─── KEY FIGURES ─────────────────────────────────── */
.figures {
  background: var(--midnight);
  color: var(--white);
}
.figures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.figures__item {
  background: var(--midnight);
  padding: 60px 40px;
  text-align: center;
}
.figures__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.figures__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── THREE PILLARS ──────────────────────────────── */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  position: relative;
  padding: 80px 50px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.pillar:hover::before { transform: scale(1.06); }
.pillar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 100%);
  transition: background var(--transition);
}
.pillar:hover .pillar__overlay {
  background: linear-gradient(to top, rgba(123,35,51,0.85) 0%, rgba(10,10,10,0.2) 100%);
}
.pillar__content { position: relative; z-index: 2; }
.pillar__number {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: absolute;
  top: 40px;
  left: 50px;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.pillar__sub {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

/* ─── VIDEO SECTION ──────────────────────────────── */
.video-section {
  background: var(--black);
  color: var(--white);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.video-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.video-card:hover img { transform: scale(1.06); }
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background var(--transition);
}
.video-card:hover .video-card__overlay { background: rgba(123,35,51,0.6); }
.video-card__play {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__play svg { width: 18px; height: 18px; fill: var(--white); margin-left: 3px; }
.video-card__name {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 20px;
}

/* ─── UNITED ARTISTS ─────────────────────────────── */
.united-artists {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.united-artists__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.united-artists__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.3) 100%);
}
.united-artists__content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: 640px;
}
.united-artists__tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 36px;
}
.tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
}

/* ─── PUBLICATIONS ───────────────────────────────── */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.pub-card {
  background: var(--cream);
  transition: background var(--transition);
  cursor: pointer;
}
.pub-card:hover { background: var(--stone-lt); }
.pub-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pub-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.pub-card:hover .pub-card__image img { transform: scale(1.05); }
.pub-card__body { padding: 28px 24px; }
.pub-card__cat {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 10px;
}
.pub-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--midnight);
}
.pub-card__excerpt {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(10,10,10,0.6);
  line-height: 1.65;
}

/* ─── MEMBERSHIP SECTION ─────────────────────────── */
.membership {
  background: var(--midnight);
  color: var(--white);
}
.membership-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.tier {
  background: var(--midnight-lt);
  padding: 52px 40px;
  position: relative;
  transition: background var(--transition);
}
.tier--featured {
  background: var(--bordeaux);
}
.tier__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 5px 12px;
}
.tier__name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.tier__price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}
.tier__price sup {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 400;
}
.tier__period {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.tier__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.tier__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.tier__feature::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── QUOTE BLOCK ─────────────────────────────────── */
.quote-block {
  background: var(--bordeaux);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto 24px;
}
.quote-block cite {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer__brand .nav__logo { font-size: 1.4rem; margin-bottom: 20px; display: block; }
.footer__brand p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 300px;
}
.footer__col h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--white); }
.footer__newsletter {
  margin-top: 32px;
}
.footer__newsletter p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer__newsletter form {
  display: flex;
  gap: 0;
  max-width: 360px;
}
.footer__newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
}
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer__newsletter button {
  padding: 12px 20px;
  background: var(--bordeaux);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.footer__newsletter button:hover { background: var(--bordeaux-dk); }

/* ─── PAGE HERO (interior pages) ───────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--midnight);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}
.page-hero--image {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  text-align: left;
}
.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero--image .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.3) 100%);
}
.page-hero__content { position: relative; z-index: 2; padding: 80px 40px; }
.page-hero .t-label { color: var(--gold); margin-bottom: 20px; display: block; }

/* ─── EVENT CARDS ─────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.event-card {
  background: var(--cream);
  cursor: pointer;
  transition: all var(--transition);
}
.event-card:hover { background: var(--white); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.event-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.event-card:hover .event-card__image img { transform: scale(1.05); }
.event-card__body { padding: 30px 28px; }
.event-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.event-card__cat {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.event-card__date {
  font-size: 0.72rem;
  color: rgba(10,10,10,0.45);
}
.event-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--midnight);
  margin-bottom: 12px;
}
.event-card__speakers {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(10,10,10,0.55);
  font-style: italic;
}

/* ─── SPEAKER WALL ───────────────────────────────── */
.speaker-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--stone-lt);
}
.speaker-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition);
  cursor: pointer;
}
.speaker-card:hover { background: var(--cream); }
.speaker-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 4px;
}
.speaker-card__role {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(10,10,10,0.45);
  font-style: italic;
}

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 2px; }

/* ─── ANIMATIONS ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .figures__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .speaker-wall { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .container, .container--narrow { padding: 0 24px; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { min-height: 320px; }
  .membership-tiers { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .pub-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .speaker-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero__content { padding: 60px 24px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .section-xl { padding: 80px 0; }
  .section-lg { padding: 60px 0; }
  .events-grid { grid-template-columns: 1fr; }
  .figures__grid { grid-template-columns: 1fr; }
  .speaker-wall { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .tier { padding: 36px 24px; }
}

/* ─── UTILITY ─────────────────────────────────────── */
.bg-dark { background: var(--black); color: var(--white); }
.bg-midnight { background: var(--midnight); color: var(--white); }
.bg-bordeaux { background: var(--bordeaux); color: var(--white); }
.bg-cream { background: var(--cream); }
.text-gold { color: var(--gold); }
.text-bordeaux { color: var(--bordeaux); }
.text-stone { color: var(--stone); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.hidden { display: none !important; }

/* ─── MASTERCLASSES ACCESS ───────────────────────── */
.access-gate {
  background: var(--midnight-lt);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 60px 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.access-gate input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin: 20px 0 16px;
  outline: none;
  text-align: center;
  letter-spacing: 0.1em;
}
.access-gate input::placeholder { color: rgba(255,255,255,0.25); }

/* ─── FILTER BAR ─────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--stone-lt);
  color: rgba(10,10,10,0.6);
  cursor: pointer;
  background: transparent;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--white);
}
