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

:root {
  --gold: #B8943F;
  --gold-light: #D4AF5A;
  --gold-dark: #8B6914;
  --cream: #FAF8F4;
  --cream-2: #F5F0E6;
  --cream-3: #EDE5D4;
  --text: #1A1A1A;
  --text-mid: #444444;
  --text-light: #777777;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 148, 63, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}

.nav-brand {
  order: 1;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 7px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav-brand:hover { color: var(--gold); }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 58px; width: auto; mix-blend-mode: multiply; }

.hero-logo-img {
  width: 460px;
  max-width: 100%;
  margin-bottom: 32px;
  display: block;
  mix-blend-mode: multiply;
}

.footer-logo { display: block; text-decoration: none; }
.footer-logo-img { width: 180px; height: auto; }

.nav-links {
  order: 2;
  display: flex;
  flex: 1;
  justify-content: center;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.2s;
  padding-bottom: 2px;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active { border-bottom: 1.5px solid var(--gold); }

.nav-ctas {
  order: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-partner-nav { display: none; }

.btn-nominate-nav {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nominate-nav:hover { background: var(--gold-dark); }

.btn-partner-nav {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-partner-nav:hover { background: var(--text); color: var(--white); }

/* ─── SCROLL OFFSET (fixed nav) ─── */
section[id], footer[id] { scroll-margin-top: 64px; }

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ─── SHARED BUTTONS ─── */
.btn-gold {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--text); color: var(--white); }

.btn-learn {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 22px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-learn:hover { background: var(--text); color: var(--white); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-awards-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-awards-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  max-width: 80px;
}

.hero-awards-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--gold);
  white-space: nowrap;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

#hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-ring-1 { width: 520px; height: 520px; border: 1px solid rgba(184,148,63,0.2); }
.hero-ring-2 { width: 760px; height: 760px; border: 1px solid rgba(184,148,63,0.1); }

/* ─── ABOUT ─── */
#about {
  background: var(--white);
  padding: 100px 0;
}

.about-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.about-left { width: 100%; }

.about-heading {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.about-heading span { color: var(--gold); font-style: italic; }

.about-body {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 12px;
}
.about-body + .btn-learn { margin-top: 24px; }

/* ─── MEANING ─── */
#meaning {
  background: var(--cream);
  padding: 90px 0;
  border-top: 1px solid rgba(184,148,63,0.12);
  border-bottom: 1px solid rgba(184,148,63,0.12);
}

.meaning-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.meaning-left { flex: 0 0 380px; text-align: center; }

.meaning-of {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.meaning-name {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 18px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.meaning-tagline {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--text-mid);
}

.meaning-diamond {
  display: block;
  margin: 14px auto 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.meaning-right {
  flex: 1;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-mid);
}

/* ─── CATEGORIES ─── */
#categories {
  background: var(--cream-2);
  padding: 70px 0;
}

.categories-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.categories-heading {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--text);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cat-card:nth-child(3n+1):last-child { grid-column: 2; }

.cat-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(184,148,63,0.15);
  background: var(--white);
  transition: all 0.25s;
  text-align: center;
}
.cat-card:hover {
  border-color: rgba(184,148,63,0.4);
  box-shadow: 0 6px 24px rgba(184,148,63,0.08);
}

.cat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-icon svg { width: 44px; height: 44px; stroke: var(--gold); fill: none; stroke-width: 1.3; }

.cat-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.cat-divider {
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.cat-desc {
  font-size: 12px;
  line-height: 1.85;
  color: var(--text-mid);
  text-align: center;
}

.view-all-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ─── AWARDS 2026 / HOST ─── */
#awards-2026 {
  background: var(--white);
  padding: 100px 0 0;
}

.awards-2026-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.host-block {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  margin-top: 50px;
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(184,148,63,0.15);
}

.host-photo-wrap { flex: 0 0 320px; }

.host-photo-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.host-photo-caption {
  background: var(--cream-2);
  padding: 14px 20px;
  text-align: center;
}

.host-caption-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text);
}

.host-caption-role {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.host-content { flex: 1; padding-top: 6px; }

.host-role-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.host-name {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
}

.host-bio {
  font-size: 13px;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 520px;
}

.host-accolades {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
}

.host-accolade {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.host-accolade::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.host-quotes {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(184,148,63,0.15);
}

.host-quote-item { display: flex; flex-direction: column; gap: 5px; }

.host-quote-text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.host-quote-source {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── JUDGES ─── */
.judges-block {
  padding: 80px 0;
  border-top: 1px solid rgba(184,148,63,0.15);
}

.judges-heading {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.judges-subhead {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 52px;
}

.judges-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.judge-card { flex: 1; display: flex; flex-direction: column; }

.judge-photo-wrap { width: 100%; overflow: hidden; background: var(--cream-2); }

.judge-photo-wrap img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.judge-info {
  background: var(--cream-2);
  padding: 20px 22px 26px;
  flex: 1;
}

.judge-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.2;
}

.judge-frsa { font-size: 14px; font-style: italic; font-weight: 400; letter-spacing: 0; }

.judge-role {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.judge-org {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.judge-divider {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}

.judge-bio { font-size: 12px; line-height: 1.9; color: var(--text-mid); }

/* ─── TIMELINE ─── */
.timeline-block { padding: 80px 0; }

.timeline-heading {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 14px;
  text-align: center;
}

.timeline-subhead {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 52px;
}

.timeline-track {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(184,148,63,0.3);
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-date {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-label {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* ─── GALA ─── */
#gala {
  background: var(--white);
  padding: 90px 0;
}

.gala-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}

.gala-content {
  flex: 1;
  padding: 0 60px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gala-heading {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gala-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 320px;
  margin-bottom: 28px;
}

.gala-details {
  flex: 0 0 220px;
  background: var(--cream-2);
  padding: 50px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.gala-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.gala-detail-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.gala-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.gala-detail-text {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.6;
}

/* ─── TICKETS ─── */
#tickets {
  background: var(--cream-2);
  padding: 90px 0;
  border-top: 1px solid rgba(184,148,63,0.12);
}

.tickets-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.tickets-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tickets-heading {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.tickets-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 28px;
}

.tickets-card {
  flex: 0 0 320px;
  background: var(--white);
  border: 1px solid rgba(184,148,63,0.25);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ticket-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(184,148,63,0.2);
}

.ticket-price-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.ticket-price {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.ticket-price-per {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

.ticket-includes-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.ticket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ticket-features li {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.ticket-date-wrap {
  padding-top: 20px;
  border-top: 1px solid rgba(184,148,63,0.2);
}

.ticket-date-wrap p {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── PARTNERS ─── */
#partners {
  background: var(--cream);
  padding: 90px 0;
  border-top: 1px solid rgba(184,148,63,0.12);
}

.partners-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.partners-header { text-align: center; margin-bottom: 52px; }

.partners-heading {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  margin-top: 10px;
  color: var(--text);
}

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

.partner-item {
  background: var(--white);
  border: 1px solid rgba(184,148,63,0.18);
  padding: 30px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.partner-item:hover {
  border-color: rgba(184,148,63,0.45);
  box-shadow: 0 6px 28px rgba(184,148,63,0.08);
}

.partner-logo-img-wrap {
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-logo-img-wrap img {
  max-width: 100%;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-divider {
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.partner-item-name {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

.partner-item--dark {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.08);
}
.partner-item--dark:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

.partner-logo-text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-text-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text-mid);
}

/* ─── FAQ ─── */
#faq {
  background: var(--white);
  padding: 90px 0;
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-header { text-align: center; margin-bottom: 52px; }

.faq-heading {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--text);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-top: 1px solid rgba(184,148,63,0.18); }
.faq-item:last-child { border-bottom: 1px solid rgba(184,148,63,0.18); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }

.faq-question-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  color: var(--gold);
}

.faq-question-icon::before,
.faq-question-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.faq-question-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-question-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ─── KEY DATES ─── */
#key-dates {
  background: #1C1812;
  padding: 80px 0 90px;
}

.kd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.kd-heading-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 70px;
  justify-content: center;
}

.kd-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.kd-heading {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 1px;
}

.kd-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}

.kd-track::before {
  content: '';
  position: absolute;
  top: 76px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: rgba(184,148,63,0.3);
}

.kd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.kd-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.kd-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
}

.kd-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #1C1812;
  box-shadow: 0 0 0 1.5px var(--gold);
  margin-bottom: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.kd-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.5;
}

.kd-date {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: rgba(250,248,244,0.7);
  line-height: 1.55;
}

/* ─── CTA BANNER ─── */
#cta {
  background: var(--cream-2);
  padding: 70px 40px;
  border-top: 1px solid rgba(184,148,63,0.12);
  border-bottom: 1px solid rgba(184,148,63,0.12);
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-text p {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  background: var(--cream);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(184,148,63,0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top { display: flex; gap: 60px; margin-bottom: 50px; }
.footer-brand { flex: 0 0 180px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 10px;
}

.footer-cols { flex: 1; display: flex; gap: 40px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 12px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 12px; margin-top: 10px; }

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 11px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(184,148,63,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 11px; color: var(--text-light); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 11px;
  color: var(--text-light);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: var(--text-light); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  order: 4;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── TABLET (1024px) ─── */
@media (max-width: 1024px) {
  .kd-track { grid-template-columns: repeat(3, 1fr); gap: 44px 0; }
  .kd-track::before { display: none; }
  .gala-content { padding: 0 30px 0 0; }
  .gala-details { flex: 0 0 180px; padding: 40px 20px; }
  .footer-cols { gap: 30px; }
  nav { padding: 0 24px; }
  .nav-links { gap: 28px; }
  .nav-links a { font-size: 9px; letter-spacing: 1.2px; }
}

/* ─── MOBILE (768px) ─── */
@media (max-width: 768px) {
  /* NAV */
  nav { padding: 0 20px; height: 60px; }
  .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .btn-partner-nav { display: block; }
  .nav-links {
    display: none;
    flex: none;
    justify-content: flex-start;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px 20px 28px;
    border-bottom: 1px solid rgba(184,148,63,0.18);
    gap: 20px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  section[id], footer[id] { scroll-margin-top: 60px; }
  .nav-links a { font-size: 13px; }

  /* HERO */
  #hero { min-height: auto; padding-top: 60px; }
  .hero-inner { flex-direction: column; padding: 40px 20px 60px; max-width: 100%; }
  .hero-logo-img { width: 300px; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; max-width: 320px; }
  .hero-btns .btn-gold, .hero-btns .btn-outline { text-align: center; padding: 16px 28px; }
  .hero-ring { display: none; }

  /* AWARDS 2026 / HOST */
  #awards-2026 { padding: 60px 0 0; }
  .awards-2026-inner { padding: 0 20px; }
  .host-block { flex-direction: column; gap: 32px; padding-bottom: 50px; }
  .host-photo-wrap { flex: none; width: 100%; }
  .host-photo-wrap img { height: 420px; object-position: center 15%; }
  .host-name { font-size: 38px; }
  .host-bio { max-width: 100%; }
  .timeline-block { padding: 50px 0; }
  .timeline-track { flex-direction: column; gap: 24px; }
  .timeline-track::before { display: none; }
  .timeline-item { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; justify-content: flex-start; }
  .timeline-dot { flex-shrink: 0; margin-bottom: 0; margin-top: 3px; }

  /* ABOUT */
  #about { padding: 60px 0; }
  .about-inner { padding: 0 20px; }
  .about-heading { font-size: 38px; }
  .about-body { max-width: 100%; }

  /* MEANING */
  #meaning { padding: 60px 0; }
  .meaning-inner { flex-direction: column; padding: 0 20px; gap: 28px; text-align: center; }
  .meaning-left { flex: none; width: 100%; }
  .meaning-name { font-size: 48px; letter-spacing: 10px; }
  .meaning-right { text-align: left; }

  /* CATEGORIES */
  #categories { padding: 60px 0; }
  .categories-inner { padding: 0 20px; }
  .categories-heading { font-size: 26px; margin-bottom: 28px; }
  .categories-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-card:nth-child(3n+1):last-child { grid-column: 1; }
  .cat-card { padding: 24px 20px; }

  /* GALA */
  #gala { padding: 60px 0; }
  .gala-inner { flex-direction: column; padding: 0 20px; gap: 32px; }
  .gala-content { padding: 0; }
  .gala-heading { font-size: 34px; }
  .gala-details { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; gap: 20px 30px; padding: 28px 20px; background: var(--cream-2); }
  .gala-detail-item { flex: 0 0 auto; }

  /* TICKETS */
  #tickets { padding: 60px 0; }
  .tickets-inner { flex-direction: column; padding: 0 20px; gap: 32px; }
  .tickets-card { flex: none; width: 100%; padding: 32px 24px; }
  .tickets-heading { font-size: 28px; line-height: 1.3; }

  /* PARTNERS */
  #partners { padding: 60px 0; }
  .partners-inner { padding: 0 20px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .partner-logo-img-wrap { height: 74px; }
  .partner-logo-img-wrap img { max-height: 74px; }

  /* JUDGES */
  .judges-block { padding: 50px 0; }
  .judges-grid { flex-direction: column; gap: 24px; }
  .judge-card { width: 100%; }
  .judge-photo-wrap img { height: 320px; object-position: center 15%; }

  /* FAQ */
  #faq { padding: 60px 0; }
  .faq-inner { padding: 0 20px; }
  .faq-heading { font-size: 28px; }
  .faq-header { margin-bottom: 32px; }

  /* KEY DATES */
  #key-dates { padding: 60px 0 70px; }
  .kd-inner { padding: 0 20px; }
  .kd-heading { font-size: 26px; }
  .kd-heading-wrap { margin-bottom: 48px; gap: 16px; }
  .kd-track {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .kd-track::before { display: none; }

  /* CTA */
  #cta { padding: 50px 20px; }
  .cta-inner { flex-direction: column; text-align: center; gap: 28px; align-items: center; }
  .cta-btns { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .cta-text h2 { font-size: 30px; }

  /* FOOTER */
  footer { padding: 50px 0 24px; }
  .footer-inner { padding: 0 20px; }
  .footer-top { flex-direction: column; gap: 32px; margin-bottom: 36px; }
  .footer-cols { flex-wrap: wrap; gap: 28px 20px; }
  .footer-col { flex: 0 0 calc(50% - 10px); min-width: 120px; }
  .footer-col:last-child { flex: 0 0 100%; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* HERO AWARDS ROW */
  .hero-awards-text { letter-spacing: 3px; font-size: 13px; white-space: normal; text-align: center; }
  .hero-awards-line { max-width: 40px; }

  /* TOUCH TARGETS */
  .nav-hamburger { min-height: 44px; min-width: 44px; }
  .social-icon { width: 36px; height: 36px; }
}

/* ─── SMALL MOBILE (480px) ─── */
@media (max-width: 480px) {
  .hero-logo-img { width: 250px; }
  .meaning-name { font-size: 36px; letter-spacing: 7px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn-gold,
  .cta-btns .btn-outline { width: 100%; text-align: center; }
  .about-heading { font-size: 36px; }
  .gala-heading { font-size: 28px; }
  .kd-track { grid-template-columns: 1fr; gap: 32px; }
  .kd-track::before { display: none; }
  .footer-col { flex: 0 0 100%; }
}
