/* ============================================================
   TOONTOONI'S TABLE — Main Stylesheet
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron:   #E6C229;
  --saffron-d: #c9a818;
  --indigo:    #6610F2;
  --red:       #DB2655;
  --orange:    #F17105;
  --ink:       #1a1000;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--saffron);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem;
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: rgba(230,194,41,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--indigo);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; z-index: 201;
}
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1rem; line-height: 1.2;
  color: var(--ink);
}
.nav-logo-text span { color: var(--indigo); }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(26,16,0,0.55); transition: color 0.2s;
}
.nav-links a:hover { color: var(--indigo); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 4px; z-index: 201;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: var(--saffron);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--indigo); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.hero-left {
  background: var(--saffron);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 9rem 4rem 5rem;
  position: relative; z-index: 2;
}
.hero-left::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--indigo), var(--red), var(--orange));
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--indigo);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--indigo); }

.hero-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.95; letter-spacing: -0.02em; color: var(--ink);
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
}
.hero-title .line1 { display: block; }
.hero-title .line2 { display: block; font-style: normal; color: var(--indigo); }

.hero-desc {
  font-size: 1rem; line-height: 1.8; color: rgba(26,16,0,0.65);
  max-width: 400px; margin-top: 2rem;
  opacity: 0; animation: fadeUp 0.7s 0.6s forwards;
}

.hero-cta-row {
  display: flex; gap: 1rem; align-items: center; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.8s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--indigo); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--red); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 2px solid rgba(26,16,0,0.3); color: rgba(26,16,0,0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 1.8rem; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--indigo); color: var(--indigo); }

.hero-right {
  position: relative; background: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-right-geo { position: absolute; inset: 0; opacity: 0.1; pointer-events: none; }
.hero-right-logo {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  opacity: 0; animation: fadeIn 1s 0.5s forwards;
}
.hero-bird-img {
  width: 200px; height: 200px; object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.3));
}
.hero-right-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* ── SHARED UTILITIES ── */
.section  { padding: 6rem 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 3.5rem; }

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--indigo);
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1rem;
}
.label::before { content: ''; width: 24px; height: 2px; background: var(--indigo); }
.label-light { color: var(--saffron); }
.label-light::before { background: var(--saffron); }
.label-ink { color: rgba(26,16,0,0.6); }
.label-ink::before { background: rgba(26,16,0,0.5); }

h2.title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 1.4rem;
  color: var(--ink);
}
h2.title em { font-style: normal; color: var(--indigo); }
h2.title.title--dark { color: var(--ink); }
h2.title.title--dark em { color: var(--indigo); }

.body-ink { font-size: 1rem; line-height: 1.85; color: rgba(26,16,0,0.65); }
.body-ink p + p { margin-top: 1rem; }
.body-light { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.72); }
.body-light p + p { margin-top: 1rem; }

.img-ph {
  background: rgba(26,16,0,0.07);
  border: 2px dashed rgba(102,16,242,0.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.7rem; border-radius: 3px;
  color: rgba(26,16,0,0.3);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.img-ph.on-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.3);
}
.img-ph .ico { font-size: 2rem; opacity: 0.35; }
.tall { aspect-ratio: 4/5; }
.sq   { aspect-ratio: 1; }
.wide { aspect-ratio: 16/9; }

/* Photos */
.food-img-sq {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; border-radius: 3px; display: block;
}
.portrait-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: 3px; display: block;
  position: relative; z-index: 1;
}

/* Video embed */
.video-wrapper {
  aspect-ratio: 16/9; border-radius: 3px;
  overflow: hidden; background: var(--ink);
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* YouTube thumbnail fallback (when embedding is disabled) */
.yt-thumb {
  position: relative; aspect-ratio: 16/9;
  border-radius: 3px; overflow: hidden;
  display: block; text-decoration: none;
  background: var(--ink);
}
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-thumb-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
}
.yt-thumb:hover .yt-thumb-overlay { background: rgba(0,0,0,0.55); }
.yt-play-btn {
  width: 68px; height: 48px; border-radius: 12px;
  background: #ff0000;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.yt-thumb:hover .yt-play-btn { transform: scale(1.1); }
.yt-play-btn svg { margin-left: 4px; }
.yt-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}

/* Colour divider bar */
.color-bar { display: flex; gap: 6px; margin: 2rem 0; }
.color-bar span { height: 3px; border-radius: 2px; display: block; }
.bar-indigo { width: 40px; background: var(--indigo); }
.bar-red    { width: 20px; background: var(--red); }
.bar-orange { width: 10px; background: var(--orange); }

/* ── STATEMENT BAND ── */
.statement { background: var(--indigo); padding: 4.5rem 0; }
.statement .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.statement-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2; color: var(--white);
}
.statement-quote span { color: var(--saffron); }

/* Desktop separator: hero-right (indigo) bleeds into statement (indigo) — saffron border breaks it */
@media (min-width: 901px) {
  .statement { border-top: 8px solid var(--saffron); }
}

/* ── SUPPER CLUB ── */
.sc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.food-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(26,16,0,0.38); margin-bottom: 1.6rem;
}
h3.food-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.9rem;
  line-height: 1.1; margin-bottom: 1.2rem;
  letter-spacing: -0.01em; color: var(--ink);
}
h3.food-title em { color: var(--indigo); font-style: normal; }

/* ── MEET TOONIKA ── */
.meet-section { background: var(--red); }
.meet-grid {
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: 5rem; align-items: center;
}
.meet-frame { position: relative; }
.meet-frame::after {
  content: '';
  position: absolute;
  top: 18px; left: 18px; right: -18px; bottom: -18px;
  border: 2px solid rgba(255,255,255,0.3);
  z-index: 0; pointer-events: none;
}
.meet-name {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 0.5rem;
}
.meet-name em { font-style: normal; color: var(--saffron); }

.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }
.pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.3rem 0.9rem; border-radius: 100px;
}
.ig-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--saffron); border: 2px solid var(--saffron);
  padding: 0.8rem 1.8rem; border-radius: 2px; margin-top: 0.6rem;
  transition: background 0.2s, color 0.2s;
}
.ig-btn:hover { background: var(--saffron); color: var(--ink); }

/* ── BEYOND THE TABLE ── */
.beyond-section { background: var(--orange); position: relative; overflow: hidden; }
.beyond-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--red));
}
.beyond-geo {
  position: absolute; right: -60px; top: -60px;
  width: 460px; height: 460px; opacity: 0.08; pointer-events: none;
}
.beyond-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.ig-badge { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.8rem; }
.ig-icon-circle {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center;
}
.ig-handle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.15rem; line-height: 1.2; color: var(--ink);
}
.ig-handle small {
  display: block; font-size: 0.7rem; font-weight: 600;
  color: rgba(26,16,0,0.5); letter-spacing: 0.1em;
  font-style: normal; font-family: 'Nunito', sans-serif;
}
.beyond-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  background: var(--indigo); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 2px; margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.beyond-btn:hover { background: var(--red); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--indigo);
  padding: 4.5rem 0 2rem;
  border-top: 4px solid var(--saffron);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo-row { margin-bottom: 1rem; }
.footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.5rem;
  color: var(--white);
}
.footer-brand img {
  height: 40px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand span { color: var(--saffron); }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.4); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 1rem;
}
.footer-col a {
  display: block; text-decoration: none;
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  margin-bottom: 0.55rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--saffron); }
.footer-location { margin-top: 0.4rem; font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.74rem; color: rgba(255,255,255,0.3);
}
.footer-dots { display: flex; gap: 6px; }
.footer-dots span { width: 8px; height: 8px; border-radius: 50%; display: block; }
.dot-saffron { background: var(--saffron); }
.dot-red     { background: var(--red); }
.dot-orange  { background: var(--orange); }
.dot-muted   { background: rgba(255,255,255,0.3); }

/* ── UPCOMING EVENTS ── */
.events-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(26,16,0,0.1);
}
.events-header { margin-bottom: 3rem; }
.events-header .title { margin-top: 0.5rem; }

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

.event-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--white);
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(26,16,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,16,0,0.12);
}

.event-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.event-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.event-card:hover .event-thumb img { transform: scale(1.05); }
.event-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(102,16,242,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.event-card:hover .event-thumb-overlay { opacity: 1; }
.event-thumb-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.55rem 1.4rem; border-radius: 2px;
}

.event-info { padding: 1.5rem; }
.event-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--indigo); display: block; margin-bottom: 0.6rem;
}
.event-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.15rem;
  line-height: 1.25; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 0.8rem;
}
.event-desc {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(26,16,0,0.6); margin-bottom: 1.2rem;
}
.event-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--indigo);
  border-bottom: 1px solid rgba(102,16,242,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.event-card:hover .event-link {
  color: var(--red); border-color: rgba(219,38,85,0.4);
}

/* ── PRESS SECTION ── */
.press-section {
  background: #0f0a1e; /* deep near-black, distinct from indigo sections */
}
.press-section .label-light { color: var(--saffron); }
.press-section .label-light::before { background: var(--saffron); }

/* Section header row */
.press-header {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 3.5rem;
}
.press-header-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, transparent 100%);
}

/* Publication badges (shared) */
.press-pub-badge {
  display: inline-flex; flex-direction: column;
  align-items: flex-start; gap: 0;
  padding: 0.55rem 1rem;
  border-radius: 3px;
  border-left: 3px solid var(--saffron);
  background: rgba(255,255,255,0.05);
}
.press-pub-badge--cnt { border-color: rgba(230,194,41,0.6); }
.press-pub-badge--ht  { border-color: var(--red); }

.press-pub-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); line-height: 1.2;
}
.press-pub-edition {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); line-height: 1.2;
}
.press-pub-badge--fw  .press-pub-edition { color: var(--saffron); opacity: 0.8; }
.press-pub-badge--cnt .press-pub-edition { color: var(--saffron); opacity: 0.7; }
.press-pub-badge--ht  .press-pub-edition { color: var(--red); opacity: 0.8; }

/* ── FEATURED QUOTE ── */
.press-featured {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 0; align-items: start;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.press-featured-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 11rem; font-weight: 900; line-height: 0.75;
  color: var(--saffron); opacity: 0.3;
  user-select: none; pointer-events: none;
  padding-top: 0.5rem;
}
.press-featured-body { display: flex; flex-direction: column; gap: 2rem; }
.press-featured-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.45; letter-spacing: -0.01em;
  color: var(--white);
}
.press-featured-footer {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
}
.press-featured-dot { color: rgba(255,255,255,0.2); font-size: 1.2rem; }
.press-featured-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.press-featured-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-left: auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron); text-decoration: none;
  border-bottom: 1px solid rgba(230,194,41,0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.press-featured-link:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ── SECONDARY QUOTES ── */
.press-secondary-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.press-secondary {
  padding: 2.5rem 3rem 2.5rem 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.press-secondary:last-child {
  padding: 2.5rem 0 2.5rem 3rem;
  border-right: none;
}
.press-secondary .press-pub-badge { margin-bottom: 1.5rem; }
.press-secondary-quote {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255,255,255,0.68);
  font-style: italic; flex: 1;
  margin-bottom: 1.8rem;
}
.press-secondary-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.press-secondary-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.press-secondary-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.2s;
}
.press-secondary-link:hover { color: var(--saffron); }

/* ── TEAM SECTION ── */
.team-section { background: var(--saffron); }
.team-intro { max-width: 640px; margin-bottom: 3.5rem; }

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

.team-card {
  background: var(--white);
  border-radius: 4px; overflow: hidden;
}
.team-photo-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.team-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }
.team-photo-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--indigo); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 2px;
}

.team-info { padding: 1.5rem 1.6rem 1.8rem; }
.team-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.25rem;
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 0.2rem;
}
.team-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 0.9rem;
  display: block;
}
.team-bio {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(26,16,0,0.6); margin-bottom: 1rem;
}
.team-ig {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-decoration: none;
  color: rgba(26,16,0,0.5);
  transition: color 0.2s;
}
.team-ig:hover { color: var(--indigo); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero              { grid-template-columns: 1fr; }
  .hero-right        { min-height: 55vw; }
  .hero-left         { padding: 8rem 1.5rem 3rem; }
  nav                { padding: 1rem 1.5rem; }
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
  .container         { padding: 0 1.5rem; }
  .statement .container,
  .sc-grid,
  .meet-grid,
  .beyond-grid,
  .footer-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .meet-frame::after { display: none; }
  .events-grid,
  .team-grid              { grid-template-columns: 1fr; }
  .press-featured         { grid-template-columns: 64px 1fr; }
  .press-featured-mark    { font-size: 6rem; }
  .press-secondary-grid   { grid-template-columns: 1fr; }
  .press-secondary        { padding: 2rem 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .press-secondary:last-child { padding: 2rem 0; border-bottom: none; }
  .press-featured-link    { margin-left: 0; }
}
