/* ============================================================
   ARTHUR DE DONCKER — Motorsport Driver
   Colors & typography drawn from the 2026 Partnership Deck
   ============================================================ */

:root {
  --black: #0b0b0b;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --cream: #f3efe1;
  --cream-2: #ede8d5;
  --gold: #c9a227;
  --gold-light: #e1b63a;
  --gold-dark: #9e7d1a;
  --white: #ffffff;
  --muted: #8a8a8a;
  --text: #1a1a1a;
  --text-dim: #555;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  --max: 1240px;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* Custom cursor */
.cur {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: multiply;
}
.cur-r {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

@media (max-width: 900px), (pointer: coarse) {
  body { cursor: auto; }
  .cur, .cur-r { display: none; }
}

img { max-width: 100%; height: auto; display: block; }
/* Inside elements that set a fixed height (cards, gallery cells), the parent
   constrains the image and object-fit handles the crop. */
.news-card__image img,
.detail-gallery__item img,
.gal-item img,
.kg-item img,
.about__image-full img,
.partner-card__logo img,
.contact-bg img,
.hero__bg img,
.disc-bg__img,
.pal-bg__img,
.partners-bg__img,
.roadmap-bg__img {
  height: 100%;
  width: 100%;
}
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.display,
.section-title,
.splash__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--black);
  margin-bottom: 2.5rem;
}

.section-title.light { color: var(--white); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.gold { color: var(--gold); }

/* AD monogram — uses PNG mask so it picks up any color we set */
.ad-mark {
  display: inline-block;
  width: 58px;
  height: 58px;
  background-color: var(--gold);
  -webkit-mask: url('assets/logo-ad.png') no-repeat center / contain;
          mask: url('assets/logo-ad.png') no-repeat center / contain;
  font-size: 0;
  line-height: 0;
  color: transparent;
  vertical-align: middle;
  transition: background-color 0.2s ease;
}
.ad-mark--big {
  width: 140px;
  height: 140px;
  margin-bottom: 1.5rem;
}
.logo-gold {
  /* #c9a227 — matches var(--gold) used in footer bar and accents */
  filter: brightness(0) saturate(100%) invert(61%) sepia(97%) saturate(430%) hue-rotate(16deg) brightness(96%) contrast(90%);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  transition: all 0.3s ease;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.footer__left .ad-mark { width: 48px; height: 48px; }
.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.2s !important;
}
.nav__cta:hover { background: var(--gold-light); color: var(--black) !important; }
.nav__cta::after { display: none; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: space-between;
  padding: 9px 6px;
  cursor: pointer;
}
.nav__toggle span {
  height: 2px;
  background: var(--gold);
  display: block;
  transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero__corner-logo {
  position: fixed;
  top: 6px;
  left: 24px;
  z-index: 101;
}
.hero__corner-logo img {
  height: 48px;
  width: auto;
}

.hero {
  background: var(--black);
  color: var(--white);
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero__bar {
  height: 14px;
  background: var(--gold);
  position: relative;
  z-index: 3;
}
.hero__bar--bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 32px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--black);
  font-weight: 700;
  height: 38px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%),
    linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
}
.hero__content {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
}
.hero__content .display {
  font-size: clamp(3.2rem, 8vw, 7rem);
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero__content .display span { display: block; }
.hero__tag {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.hero__disciplines {
  color: var(--gold-light);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.8rem;
  font-weight: 400;
}
.hero__disciplines a {
  color: var(--gold-light);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.hero__disciplines a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.hero__disciplines a:hover {
  color: var(--white);
}
.hero__disciplines a:hover::after {
  transform: scaleX(1);
}
.hero__meta {
  color: var(--cream);
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}
.hero__meta .flag { font-size: 1.1rem; vertical-align: middle; }
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  background: var(--cream);
  padding: 0 0 80px;
  overflow: hidden;
}
.about__grid-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
}
.about__image-full {
  position: relative;
  min-height: 600px;
}
.about__image-full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__text {
  padding: 80px 60px 100px;
}
.about__text p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.8rem;
}
.chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ============================================================
   DISCIPLINES
   ============================================================ */

.disciplines {
  background: var(--black);
  color: var(--cream);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}
.disciplines .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.disc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.disc-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}
.disc-bg__img--active {
  opacity: 1;
}
.disc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.disciplines .container {
  position: relative;
  z-index: 2;
}
.disciplines .eyebrow { color: var(--gold); }
.disc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.disc-card {
  background: var(--black-2);
  border: 1px solid rgba(201,162,39,0.15);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.disc-card--mini {
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(11, 11, 11, 0.6);
  backdrop-filter: blur(4px);
}
.disc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.disc-card:hover {
  background: var(--black-3);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.disc-card:hover::before { width: 100%; }
.disc-card__num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
}
.disc-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.disc-card p {
  color: #b5b5b5;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.disc-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,162,39,0.2);
}
.disc-card--mini {
  flex-direction: column;
  gap: 10px;
}
.disc-card--mini h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
}
.disc-card__detail {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.disc-card--mini:hover .disc-card__detail { opacity: 1; }
.disc-card--mini .disc-card__num,
.disc-card--mini p,
.disc-card--mini .disc-card__tag { display: none; }

.disc-card--feature {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--black);
  border-color: var(--gold);
}
.disc-card--feature .disc-card__num,
.disc-card--feature h3 { color: var(--black); }
.disc-card--feature p { color: #2a2412; }
.disc-card--feature .disc-card__tag {
  color: var(--black);
  border-top-color: rgba(0,0,0,0.25);
}

/* ============================================================
   DETAIL PAGE (Single-Seater etc.)
   ============================================================ */

.detail-page {
  background: var(--cream);
  padding: 140px 0 160px;
}
.detail-block {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.detail-block:last-of-type { border-bottom: none; }
.detail-block__header {
  margin-bottom: 2rem;
}
.detail-block__year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: var(--white);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 0.8rem;
  margin-right: 8px;
}
.detail-block__year-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.detail-block__badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  background: var(--black);
  color: var(--gold);
  border-radius: 2px;
  margin-bottom: 0.8rem;
}
.detail-block__header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.detail-block__sub {
  font-size: 0.95rem;
  color: var(--text-dim);
}
.detail-block__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}
.detail-block__stats .stat {
  background: var(--black);
}
.detail-block__text {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 850px;
  margin-bottom: 2.5rem;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.detail-gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  height: 280px;
}
.detail-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.detail-gallery__item:hover img { transform: scale(1.05); }
.detail-gallery__item--wide {
  grid-column: span 2;
}
.detail-gallery__item--full {
  grid-column: 1 / -1;
  height: 360px;
}
.detail-back {
  text-align: center;
  padding-top: 40px;
}
.detail-back .btn {
  color: var(--black);
  border-color: rgba(0,0,0,0.2);
}
.detail-back .btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Karting gallery structured layout */
.karting-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kg-row {
  display: grid;
  gap: 8px;
}
.kg-row--hero {
  grid-template-columns: 1fr;
}
.kg-row--duo {
  grid-template-columns: 1fr 1fr;
}
.kg-row--trio {
  grid-template-columns: 1fr 1fr 1fr;
}
.kg-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}
.kg-row--hero .kg-item { height: 420px; }
.kg-row--duo .kg-item { height: 350px; }
.kg-row--trio .kg-item { height: 300px; }
.kg-row--portraits {
  grid-template-columns: repeat(4, 1fr);
}
.kg-row--portraits-3 {
  grid-template-columns: repeat(3, 1fr);
}
.kg-row--portraits .kg-item { height: 480px; }
.kg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}
.kg-item:hover img { transform: scale(1.05); }
.kg-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 18px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.kg-item:hover .kg-caption { opacity: 1; }

.disc-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ============================================================
   PALMARES
   ============================================================ */

.palmares {
  background: var(--black);
  padding: 180px 0 200px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.pal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pal-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}
.pal-bg__img--active { opacity: 1; }
.pal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}
.palmares .container {
  position: relative;
  z-index: 2;
}
.palmares .section-title { color: var(--white); }
.palmares .eyebrow { color: var(--gold); }
.pal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pal-card {
  background: var(--white);
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pal-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.pal-year {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.pal-event {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.pal-result {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.pal-note {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.pal-card--hero {
  background: var(--black);
  color: var(--cream);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
}
.pal-card--simple {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
}
.pal-card--simple .pal-event {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.pal-card--hero .pal-event { color: var(--white); }
.pal-card--hero .pal-result { color: var(--gold); }
.pal-card--hero .pal-note { color: #999; }

/* ============================================================
   SPLASH (F4)
   ============================================================ */

.splash {
  position: relative;
  padding: 180px 0;
  overflow: hidden;
  color: var(--white);
}
.splash__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.splash__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.splash__content { position: relative; z-index: 2; }
.splash__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 2.5rem;
  color: var(--white);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
}
.stat {
  border: 1px solid var(--gold);
  padding: 24px 20px;
  text-align: center;
  background: rgba(11,11,11,0.55);
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0.5rem;
}

/* ============================================================
   ROAD MAP
   ============================================================ */

.roadmap {
  background: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.roadmap-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.roadmap-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.roadmap-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}
.roadmap .container {
  position: relative;
  z-index: 2;
}
.roadmap .section-title { color: var(--white); }
.roadmap .eyebrow { color: var(--gold); }
.timeline {
  position: relative;
  max-width: 900px;
  margin-left: 80px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -40px;
  width: 4px;
  background: var(--gold);
}
.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  padding: 30px 0;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 38px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border: 4px solid rgba(0,0,0,0.4);
  border-radius: 50%;
  z-index: 1;
}
.tl-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  padding-right: 20px;
  border-right: 2px solid rgba(201,162,39,0.3);
}
.tl-status {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  margin-bottom: 0.6rem;
  border-radius: 2px;
}
.tl-status--done { background: rgba(255,255,255,0.15); color: #aaa; }
.tl-status--next { background: var(--gold); color: var(--black); }
.tl-status--target { background: var(--black); color: var(--gold); }
.tl-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tl-content p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   MEDIA / BRAND POWER
   ============================================================ */

.media {
  background: var(--black);
  color: var(--cream);
  padding: 120px 0;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 4rem;
}
.brand-card {
  background: var(--black-2);
  padding: 40px 28px;
  text-align: center;
  border-top: 4px solid var(--gold);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.brand-card:hover { transform: translateY(-6px); }
.brand-grid--about {
  grid-template-columns: repeat(3, 1fr);
}
.brand-grid--about .brand-card {
  padding: 48px 32px;
}
.brand-grid--about .brand-card__big {
  font-size: 4rem;
}
.brand-card--light {
  background: var(--white);
  border-top-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.brand-card--light .brand-card__big { color: var(--black); }
.brand-card--light .brand-card__title { color: var(--black); }
.brand-card--light .brand-card__sub { color: var(--text-dim); }
.about-brand {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.brand-card__big {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.brand-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.brand-card__sub {
  font-size: 0.82rem;
  color: #888;
}
.pullquote {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 2rem;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  background: var(--cream);
  padding: 120px 0;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(201,162,39,0.92);
  color: var(--black);
  font-weight: 700;
}
.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }

/* ============================================================
   QUOTE SECTION
   ============================================================ */

.quote {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  color: var(--white);
}
.quote__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.55));
}
.quote__inner { position: relative; }
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.quote__author {
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================================
   CONTACT / PARTNERSHIP
   ============================================================ */

.contact {
  background: var(--black);
  color: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.55) 100%);
}
.contact .container {
  position: relative;
  z-index: 2;
}
.contact .section-title { margin-bottom: 0.8rem; }
.contact__lead {
  max-width: 700px;
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.tiers {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  margin-bottom: 4rem;
}
.tier {
  background: var(--black-2);
  border: 1px solid rgba(201,162,39,0.2);
  padding: 36px 30px;
  border-radius: var(--radius);
}
.tier--featured {
  background: var(--black-3);
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(201,162,39,0.2);
}
.tier__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.tier--featured .tier__name { color: var(--gold); }
.tier__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201,162,39,0.25);
  line-height: 1;
}
.tier ul { list-style: none; }
.tier ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 0.9rem;
  color: #bfbfbf;
  line-height: 1.5;
}
.tier ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin: 0 0 1rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Contacts section (full details) */
.contacts-section {
  background: var(--black);
  color: var(--cream);
  padding: 140px 0 160px;
  position: relative;
  min-height: 100vh;
}
.contacts-section .section-title { color: var(--white); }
.contacts-lead {
  max-width: 700px;
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.contact-block {
  background: var(--black-2);
  border: 1px solid rgba(201,162,39,0.15);
  border-top: 3px solid var(--gold);
  padding: 18px 20px;
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}
.contact-block:hover {
  border-color: var(--gold);
}
.contact-block--social {
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, var(--black-2) 100%);
}
.contact-block__label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}
.contact-block__role {
  font-size: 0.72rem;
  color: #888;
  margin-bottom: 0.7rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.contact-block__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-block__link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--cream);
  transition: color 0.2s ease;
}
.contact-block__link:hover { color: var(--gold); }
.contact-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.contact-block__icon svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}
.contacts-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,162,39,0.15);
}
.contacts-footer p {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}
.contact-quote {
  padding: 2rem 1.5rem;
  border-left: 2px solid var(--gold);
  position: sticky;
  top: 120px;
}
.contact-quote__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.contact-quote__author {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-style: italic;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form__field label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 2px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}
.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a227' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
  cursor: pointer;
}
.contact-form__field select option {
  background: var(--black);
  color: var(--cream);
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}
.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  cursor: pointer;
}
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-card {
  background: var(--black-2);
  border-left: 4px solid var(--gold);
  padding: 26px 28px;
  border-radius: 2px;
}
.contact-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.contact-card a {
  display: block;
  font-size: 0.92rem;
  color: var(--gold);
  padding: 3px 0;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,162,39,0.15);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.footer__text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cream);
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer__sub {
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 0.1em;
}
.footer__right {
  display: flex;
  gap: 30px;
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.footer__right a:hover { color: var(--gold); }
.footer__bar {
  height: 8px;
  background: var(--gold);
}

/* ============================================================
   SCHEDULE
   ============================================================ */

.schedule {
  background: var(--black);
  color: var(--cream);
  padding: 140px 0 180px;
  min-height: 100vh;
}
.sched-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sched-card {
  display: flex;
  align-items: stretch;
  background: var(--black-2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sched-card:hover {
  transform: translateX(6px);
  box-shadow: -6px 0 20px rgba(201,162,39,0.15);
}
.sched-card--past { opacity: 0.65; }
.sched-card--past:hover { opacity: 1; }
.sched-card--highlight { border-left-color: var(--gold-light); border-left-width: 6px; }
.sched-date {
  flex-shrink: 0;
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  background: rgba(201,162,39,0.08);
  border-right: 1px solid rgba(201,162,39,0.15);
}
.sched-month {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.sched-day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-top: 4px;
}
.sched-info {
  flex: 1;
  padding: 14px 20px;
}
.sched-series {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.sched-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.sched-detail {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 8px;
}
.sched-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  border-radius: 2px;
  margin-right: 8px;
}
.sched-badge--done { background: #333; color: #999; }
.sched-badge--next { background: var(--gold); color: var(--black); }
.sched-result {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 6px;
}

/* ============================================================
   NEWS
   ============================================================ */

.news {
  background: var(--black);
  color: var(--cream);
  padding: 120px 0 160px;
  min-height: 100vh;
}

/* Compact press page — fits 7 cards on one screen */
#press {
  padding: 80px 0 140px;
  min-height: 100vh;
}
#press .news-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
#press .news-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: 1.2fr 1fr;
}
#press .news-card--featured .news-card__image { min-height: 200px; }
#press .news-card__image { height: 140px; }
#press .news-card__body {
  padding: 16px 18px 20px;
}
#press .news-card h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
#press .news-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0.7rem;
}
#press .news-card__date {
  font-size: 0.62rem;
  margin-bottom: 0.4rem;
}
#press .news-card__link {
  font-size: 0.72rem;
  margin-bottom: 0.6rem;
}
#press .news-card__tag {
  font-size: 0.6rem;
  padding-top: 0.6rem;
}
#press .news-card:hover {
  transform: none;
}
#press .section-title {
  margin-bottom: 1.5rem;
}

.news-category {
  margin-bottom: 4rem;
}
.news-category:last-child {
  margin-bottom: 0;
}
.news-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(201,162,39,0.3);
}
.news-lead {
  max-width: 700px;
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Gallery section */
.gallery-section {
  background: var(--black);
  color: var(--cream);
  padding: 140px 0 180px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.gallery-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gallery-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.gallery-bg__img--active { opacity: 1; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}
.gallery-section .container {
  position: relative;
  z-index: 2;
}
.gallery-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 3rem;
}
.gallery-tab {
  background: rgba(11, 11, 11, 0.6);
  backdrop-filter: blur(4px);
  color: var(--white);
  border: 1px solid rgba(201,162,39,0.15);
  padding: 40px 32px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
}
.gallery-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item.is-hidden { display: none; }

.gallery-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 96vw;
  max-width: none;
  margin: 1.5rem calc(50% - 50vw + 8px) 0;
  padding: 0 4px;
}
.gallery-pager__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--radius);
  background: rgba(11, 11, 11, 0.5);
  transition: all 0.25s ease;
}
.gallery-pager__link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.gallery-pager__link--prev:hover { transform: translateX(-4px); }
.gallery-pager__link--next:hover { transform: translateX(4px); }
.gallery-pager__arrow {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

/* Full-screen gallery carousel (sub-pages) */
.gallery-carousel {
  position: relative;
  width: 96vw;
  max-width: none;
  margin: 0 calc(50% - 50vw + 8px);
  height: 95vh;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
}
.gallery-carousel .gallery-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  aspect-ratio: auto;
  cursor: default;
  border-radius: 0;
}
.gallery-carousel .gallery-item.is-active {
  opacity: 1;
  z-index: 1;
}
.gallery-carousel .gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
  transition: none;
  transform: none;
}
.gallery-carousel .gallery-item:hover img { transform: none; }
.gallery-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 11, 11, 0.75);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.4rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  line-height: 1;
  padding: 0;
}
.gallery-carousel__nav:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.05);
}
.gallery-carousel__nav--prev { left: 20px; }
.gallery-carousel__nav--next { right: 20px; }
.gallery-carousel__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  background: rgba(11, 11, 11, 0.75);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 8px 18px;
  border-radius: 20px;
  z-index: 10;
}
.gallery-carousel__counter .cur { color: var(--gold); }
@media (max-width: 720px) {
  .gallery-carousel { height: 55vh; }
  .gallery-carousel__nav { width: 44px; height: 44px; font-size: 1.8rem; }
  .gallery-carousel__nav--prev { left: 8px; }
  .gallery-carousel__nav--next { right: 8px; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-2);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-item--feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item__caption {
  opacity: 1;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--black-2);
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border-top-color: var(--gold);
}
.news-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top-color: var(--gold);
}
.news-card__image {
  overflow: hidden;
  height: 220px;
}
.news-card--featured .news-card__image { height: auto; min-height: 280px; }
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card__image img { transform: scale(1.05); }
.news-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
}
.news-card__date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.news-card p {
  color: #aaa;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
}
.news-card__link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.news-card__link:hover { color: var(--gold-light); }
.news-card__tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(201,162,39,0.2);
}

/* ============================================================
   PARTNERS PAGE
   ============================================================ */

.nav__links a.active { color: var(--gold); }
.nav__links a.active::after { width: 100%; }

.page-hero {
  background: var(--black);
  color: var(--white);
  padding-top: 72px;
  position: relative;
}
.page-hero__bar {
  height: 14px;
  background: var(--gold);
}
.page-hero__bar--bottom { margin-top: 0; }
.page-hero__inner {
  padding: 100px 32px 90px;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  color: var(--white);
  margin: 1rem 0 2rem;
  line-height: 0.95;
}
.page-hero__title span { display: block; }
.page-hero__lead {
  max-width: 720px;
  margin: 0 auto;
  color: #bfbfbf;
  font-size: 1.05rem;
  line-height: 1.8;
}

.partners-section {
  background: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.partners-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.partners-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}
.partners-bg__img--active { opacity: 1; }
.partners-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}
.partners-section .container {
  position: relative;
  z-index: 2;
}
.partners-section .section-title { color: var(--white); }
.partners-section .eyebrow { color: var(--gold); }
.partners-section .section-title { margin-bottom: 3rem; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.06);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.partner-card__logo {
  background: var(--white);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}
.partner-card__body {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.partner-card__tier {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.partner-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.partner-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}
.partner-card--logo-only {
  border-top: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.partner-card--logo-only:hover {
  transform: translateY(-4px);
  box-shadow: none;
}
.partner-card--logo-only img {
  transition: transform 0.3s ease;
}
.partner-card--logo-only:hover img {
  transform: scale(1.05);
}
.partner-card--logo-only.logo-large:hover img,
.partner-card--logo-only:hover img.logo-large {
  transform: scale(1.47);
}
.partner-card--logo-only:hover img.logo-small {
  transform: scale(0.74);
}
.partner-card--logo-only:hover .partner-card__caption {
  color: var(--gold);
}
.partner-card__caption {
  transition: color 0.3s ease;
}
.partner-card--logo-only .partner-card__logo {
  height: 140px;
  border-bottom: none;
  background: transparent;
  padding: 32px 40px;
  width: 100%;
}
.partner-card--logo-only .partner-card__logo img {
  max-height: 100%;
  width: auto;
}
.partner-card--logo-only .logo-invert {
  filter: brightness(0) invert(1);
}
.partner-card--logo-only .logo-large {
  transform: scale(1.4);
  transform-origin: center;
}
.partner-card--logo-only .logo-small {
  transform: scale(0.7);
  transform-origin: center;
}
.partner-card--logo-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.partner-card__caption {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  padding: 0 10px 18px;
  line-height: 1.5;
}

/* Logo wall */
.logo-wall {
  background: var(--black);
  color: var(--cream);
  padding: 120px 0;
  text-align: center;
}
.eyebrow.light { color: var(--gold); }
.logo-wall__lead {
  color: #999;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.logo-wall__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,162,39,0.25);
  border: 1px solid rgba(201,162,39,0.3);
  max-width: 980px;
  margin: 0 auto;
}
.logo-wall__cell {
  background: var(--black-2);
  aspect-ratio: 5 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.logo-wall__cell:hover {
  background: var(--white);
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}
.logo-wall__cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.logo-wall__cell:hover img {
  filter: none;
}

/* Join CTA */
.join-cta {
  background: var(--black);
  padding: 100px 0 140px;
  border-top: 1px solid rgba(201,162,39,0.15);
}
.join-cta__inner { text-align: center; }
.join-cta__text { max-width: 780px; margin: 0 auto; }
.join-cta .section-title { margin-bottom: 1.5rem; }
.join-cta p {
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   RESPONSIVE IMAGE FIXES — make pictures scale with viewport
   ============================================================ */

/* Use aspect-ratio so images scale proportionally to their container.
   This kicks in for medium-large screens. */
@media (max-width: 1280px) {
  .news-card__image,
  .detail-gallery__item,
  .partner-card__logo,
  .gal-item,
  .kg-item {
    height: auto;
  }
  .news-card__image { aspect-ratio: 16 / 10; }
  .news-card--featured .news-card__image { aspect-ratio: 4 / 3; min-height: 0; }
  .detail-gallery__item { aspect-ratio: 4 / 3; }
  .detail-gallery__item--full { aspect-ratio: 16 / 9; height: auto; }
  .gal-item { aspect-ratio: 4 / 3; }
  .kg-row--hero .kg-item { aspect-ratio: 16 / 7; height: auto; }
  .kg-row--duo .kg-item { aspect-ratio: 4 / 3; height: auto; }
  .kg-row--trio .kg-item { aspect-ratio: 4 / 3; height: auto; }
  .kg-row--portraits .kg-item { aspect-ratio: 3 / 4; height: auto; }
  .partner-card__logo { aspect-ratio: 3 / 1; height: auto; min-height: 100px; }
}

@media (max-width: 1024px) {
  .disc-grid { grid-template-columns: repeat(3, 1fr); }
  .pal-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .hero__content { padding: 60px 24px; }
  .about__grid-full { grid-template-columns: 1fr; }
  .about__image-full { min-height: 0; aspect-ratio: 4 / 3; }
  .about__text { padding: 50px 24px 60px; }
  .hero__content .display { font-size: clamp(2.4rem, 8vw, 4.5rem); }
  .hero { min-height: 80vh; }
  .schedule, .palmares, .news, .contact, .contacts-section, .detail-page {
    min-height: 0;
  }
  .brand-grid--about { grid-template-columns: repeat(3, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gal-item--tall { grid-row: auto; }
  .gal-item--wide { grid-column: auto; }
  .timeline { margin-left: 60px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wall__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: auto; display: flex; flex-direction: column; }
  .news-card--featured .news-card__image { min-height: 220px; }
  #press .news-grid { grid-template-columns: repeat(2, 1fr); }
  #press .news-card--featured { grid-column: 1 / -1; }
  .sched-grid { grid-template-columns: 1fr; }
  .detail-block__stats { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery__item--wide { grid-column: auto; }
  .kg-row--trio { grid-template-columns: 1fr 1fr; }
  .kg-row--portraits { grid-template-columns: repeat(2, 1fr); }
  .kg-row--portraits-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Hamburger menu shows on tablets/phones (incl. phones in landscape).
   We have 10 nav items, so we need a wider breakpoint than the typical 720px. */
@media (max-width: 1024px), (orientation: landscape) and (max-height: 600px) {
  .nav__inner { padding: 14px 20px; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px;
    gap: 18px;
    border-bottom: 1px solid rgba(201,162,39,0.25);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero__content { padding: 50px 20px; }
  .hero__content .display { font-size: 2.8rem; }
  .hero__bar--bottom { font-size: 0.62rem; flex-direction: column; height: auto; padding: 10px; gap: 4px; }
  .about, .disciplines, .palmares, .roadmap, .media, .gallery, .contact { padding: 80px 0; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
  .disciplines { min-height: 0; padding: 80px 0 60px; }
  .pal-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .contacts { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-quote { position: static; }
  .tl-item { grid-template-columns: 1fr; gap: 10px; }
  .tl-year { text-align: left; border-right: none; border-left: 3px solid var(--gold); padding-left: 12px; padding-right: 0; }
  .tl-item::before { left: -48px; top: 28px; }
  .timeline { margin-left: 58px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__right { flex-direction: column; gap: 8px; }
  .partners-grid { grid-template-columns: 1fr; }
  .logo-wall__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--feature { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 9; }
  .gallery-tabs { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-tab { padding: 28px 20px; font-size: 1.3rem; }
  .page-hero__inner { padding: 70px 20px; }
  .sched-date { width: 80px; padding: 16px 10px; }
  .sched-info { padding: 16px 20px; }
  .sched-info h3 { font-size: 1.15rem; }
  .news-card--featured { grid-column: auto; display: flex; flex-direction: column; }
  .detail-block__stats { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-gallery__item { height: 220px; }
  .kg-row--trio { grid-template-columns: 1fr; }
  .kg-row--duo { grid-template-columns: 1fr; }
  .kg-row--portraits { grid-template-columns: repeat(2, 1fr); }
  .kg-row--portraits-3 { grid-template-columns: 1fr; }
  .kg-row--portraits .kg-item { height: 360px; }
}
