/* ============================================================
   TCP AWARDS — GRAND STYLESHEET
   All pages share this file. Edit here to update everything.
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Mukta+Vaani:wght@400;500;600;700;800&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Core palette */
  --gold:          #C9A84C;
  --gold-light:    #E2C97E;
  --gold-dark:     #A07830;
  --gold-pale:     #F7F0DF;
  --red:           #E11F26;
  --red-dark:      #B8181E;
  --red-pale:      #FEF1F1;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #FAFAF8;
  --cream:         #F5F1EA;
  --light-gray:    #EDEBE6;
  --mid-gray:      #9E9A93;
  --dark-gray:     #4A4640;
  --near-black:    #1A1714;

  /* Typography */
  --font-display:  'Mukta Vaani', sans-serif;
  --font-body:     'Roboto', sans-serif;

  /* Spacing */
  --section-pad:   90px;
  --container:     1200px;
  --radius:        4px;
  --radius-lg:     12px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(26,23,20,0.07);
  --shadow-md:     0 6px 24px rgba(26,23,20,0.10);
  --shadow-lg:     0 16px 48px rgba(26,23,20,0.13);
  --shadow-gold:   0 4px 20px rgba(201,168,76,0.25);

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark-gray);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.t-heading {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--near-black);
}

p { max-width: 68ch; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark  { background: var(--near-black); color: var(--off-white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-red    { color: var(--red); }

/* ============================================================
   DECORATIVE ELEMENTS
   ============================================================ */
.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 24px;
  border-radius: 2px;
}

.gold-rule--left { margin-left: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0;
}

#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--light-gray), var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 44px;
  width: auto;
  transition: filter 0.3s var(--ease);
}

/* When header is transparent (top of page), logo is white — for dark hero pages */
#site-header:not(.scrolled) .header-logo img {
  filter: brightness(0) invert(1);
}

/* Light hero override — home page uses body.light-hero */
.light-hero #site-header {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--light-gray);
}

.light-hero #site-header .header-logo img {
  filter: none;
}

/* Nav links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark-gray);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  position: relative;
}

/* Dark hero pages — white nav links when at top */
#site-header:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.9);
}

/* Light hero — always dark nav links */
.light-hero #site-header .nav-link {
  color: var(--dark-gray);
}

.light-hero #site-header .nav-link:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.light-hero #site-header .header-hamburger span,
.light-hero #site-header:not(.scrolled) .header-hamburger span {
  background: var(--dark-gray);
}

/* Light hero nav CTA */
.light-hero #site-header .nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-gold) !important;
  border: none !important;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

#site-header:not(.scrolled) .nav-link:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.1);
}

.nav-link.active {
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-gray);
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--light-gray);
}

.nav-dropdown-menu a:last-child { border-bottom: none; }

.nav-dropdown-menu a:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.nav-dropdown-menu .year-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 2px 6px;
  border-radius: 20px;
  float: right;
  margin-top: 1px;
}

/* CTA button in nav */
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35) !important;
}

#site-header:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.4);
}

#site-header:not(.scrolled) .nav-cta:hover {
  background: rgba(255,255,255,0.25) !important;
}

/* Light hero nav CTA */
.light-hero #site-header:not(.scrolled) .nav-cta {
  background: var(--gold) !important;
  color: white !important;
  border: none;
  box-shadow: var(--shadow-gold) !important;
}
.light-hero #site-header:not(.scrolled) .nav-cta:hover {
  background: var(--gold-dark) !important;
}

/* Mobile hamburger */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

#site-header:not(.scrolled) .header-hamburger span {
  background: white;
}

/* Mobile nav — light theme matching header */
.mobile-nav {
  display: block;
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 999;
  padding: 96px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--near-black);
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--dark-gray);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--red); }

/* Hamburger active state — becomes X */
.header-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.2s;
}

.header-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,32,46,0.25);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,32,46,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-sm { font-size: 11px; padding: 10px 22px; }
.btn-lg { font-size: 14px; padding: 18px 44px; }

/* Arrow icon */
.btn-arrow::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.2s;
  background: none;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--near-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://shpages.com/wp-content/uploads/2025/06/site-cover-01-01.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,23,20,0.75) 0%,
    rgba(26,23,20,0.5) 50%,
    rgba(160,120,48,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 32px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-year {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.55s forwards;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.85s forwards;
}

.hero-deadline {
  position: absolute;
  bottom: 48px;
  right: 0;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  color: var(--white);
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1s forwards;
  backdrop-filter: blur(8px);
}

.hero-deadline .label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.hero-deadline .date {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(36px, 4vw, 54px);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 18px;
}

.about-text p strong {
  color: var(--near-black);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}

.stat-card:hover { background: var(--gold-pale); }

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ============================================================
   VOTING CATEGORIES (Home page)
   ============================================================ */
.categories-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 0;
}

.tab-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--mid-gray);
  padding: 12px 24px;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.tab-btn.active {
  color: var(--gold-dark);
}

.tab-btn.active::after,
.tab-btn:hover::after {
  transform: scaleX(1);
}

.tab-btn:hover { color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.category-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.category-card:hover::before { transform: scaleX(1); }

.category-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.category-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.category-card p {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ============================================================
   PARTICIPATION / PROCESS STEPS
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.4;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 1;
}

.step:hover .step-number {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--mid-gray);
  margin: 0 auto;
  max-width: 200px;
}

/* ============================================================
   SPONSORS BLOCK
   ============================================================ */

/* Hidden sponsor tiers — managed by editor_sponsors.php */
.sponsors-section [data-hidden="true"] { display: none; }
.sponsors-section {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--light-gray);
}

.sponsors-tier {
  margin-bottom: 48px;
}

.sponsors-tier:last-child { margin-bottom: 0; }

.sponsors-tier-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sponsors-tier-label::before,
.sponsors-tier-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

.sponsors-tier-label.gold-tier { color: var(--gold-dark); }
.sponsors-tier-label.gold-tier::before,
.sponsors-tier-label.gold-tier::after { background: var(--gold-light); }

.sponsors-logos {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

/* Fixed column layouts */
.sponsors-logos--4 { grid-template-columns: repeat(4, 1fr); }

/* Χορηγοί Επικοινωνίας — 2 columns, centered */
.sponsors-logos--comm {
  grid-template-columns: repeat(2, 1fr);
  max-width: 50%;
  margin: 0 auto;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  transition: all 0.3s var(--ease);
  /* Fixed height — all logos same height per tier */
  height: 90px;
}

.sponsor-logo img {
  /* Uniform height, scale adjustable via --logo-scale */
  height: calc(44px * var(--logo-scale, 1));
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}

.sponsor-logo:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(160, 120, 48, 0.18);
  transform: translateY(-3px);
}

.sponsor-logo:hover img {
  transform: scale(1.04);
}

/* Gold tier — taller cells and larger logos */
.sponsors-tier.gold .sponsor-logo {
  height: 110px;
}
.sponsors-tier.gold .sponsor-logo img {
  height: calc(56px * var(--logo-scale, 1));
}

@media (max-width: 1024px) {
  .sponsors-logos--4 { grid-template-columns: repeat(3, 1fr); }
  .sponsors-logos--comm { max-width: 70%; }
}
@media (max-width: 768px) {
  .sponsors-logos--4 { grid-template-columns: repeat(2, 1fr); }
  .sponsors-logos--comm { max-width: 100%; }
}
@media (max-width: 480px) {
  .sponsors-logos--4 { grid-template-columns: repeat(2, 1fr); }
}

/* Organizer */
.organizer-block {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
}

.organizer-block .organizer-logo img {
  max-height: 56px;
  margin: 0 auto;
  filter: none;
  opacity: 1;
}

.organizer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.organizer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: background 0.2s, transform 0.2s;
}

.organizer-social a:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.organizer-social img { width: 18px; height: 18px; object-fit: contain; }

/* ============================================================
   BUTTON SHINE ANIMATION
   Looping shimmer sweep across buttons
   ============================================================ */
.btn-gold,
.btn-red {
  overflow: hidden;
}

.btn-gold::before,
.btn-red::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.0) 70%,
    transparent 100%
  );
  transform: skewX(-15deg);
  animation: btn-shine 3.5s ease-in-out infinite;
}

.btn-red::before {
  animation-delay: 1.75s;
}

@keyframes btn-shine {
  0%   { left: -75%; opacity: 0; }
  10%  { opacity: 1; }
  50%  { left: 125%; opacity: 1; }
  51%  { opacity: 0; }
  100% { left: 125%; opacity: 0; }
}

/* ============================================================
   WARM & ORGANIC TOUCHES
   Subtle texture, warmer shadows, organic shapes
   ============================================================ */

/* Warm paper texture on cream sections */
.section--cream,
.about-home,
.showcase-section {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
}

/* Warmer box shadows on cards */
.category-card {
  box-shadow: 0 2px 8px rgba(160, 120, 48, 0.06);
}
.category-card:hover {
  box-shadow: 0 8px 28px rgba(160, 120, 48, 0.13);
}

/* Organic gold divider — slightly wavy feel via border-radius */
.gold-rule {
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
}

/* Warm tinted scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection color — warm gold */
::selection {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

/* Organic hover on sponsor logos — warm lift */
.sponsor-logo:hover {
  box-shadow: 0 8px 24px rgba(160, 120, 48, 0.18);
}

/* ============================================================
   CONTACT LINK
   ============================================================ */
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--dark-gray);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.contact-link span { font-size: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-logo img:hover { opacity: 1; }

.footer-copy { color: rgba(255,255,255,0.4); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HERO (inner pages — smaller than home)
   ============================================================ */
.page-hero {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  padding: 140px 0 72px;
  text-align: center;
}

/* Subtle warm glow — matches home hero */
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out) 0.1s, transform 0.7s var(--ease-out) 0.1s;
}
.page-hero-eyebrow.visible { opacity: 1; transform: translateY(0); }
.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.page-hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--near-black);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-hero h1 .hline {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-out);
}
.page-hero h1 .hline.visible { transform: translateY(0); }
.page-hero h1 .hline-gold { color: var(--gold); }

.page-hero p {
  font-size: 16px;
  color: var(--mid-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out) 0.55s, transform 0.7s var(--ease-out) 0.55s;
}
.page-hero p.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NOTICE BANNER (e.g. voting closed, candidacies closed)
   ============================================================ */
.notice-banner {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.notice-banner.notice-closed {
  background: var(--red-pale);
  border-color: #f4b8be;
}

.notice-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.notice-text strong {
  display: block;
  font-size: 15px;
  color: var(--near-black);
  margin-bottom: 2px;
}

.notice-text span {
  font-size: 13px;
  color: var(--dark-gray);
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--near-black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-input::placeholder { color: var(--mid-gray); }

.form-textarea { resize: vertical; min-height: 100px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239E9A93' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 13px;
  color: var(--dark-gray);
  line-height: 1.5;
}

.form-submit { margin-top: 32px; }

.form-placeholder-note {
  background: var(--cream);
  border: 1px dashed var(--gold-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 16px;
  text-align: center;
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--cream);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.pricing-card:hover,
.pricing-card.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
  box-shadow: var(--shadow-gold);
}

.pricing-qty {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--near-black);
}

.pricing-price span { font-size: 13px; font-weight: 400; color: var(--mid-gray); }

/* ============================================================
   SPONSORS PAGE
   ============================================================ */
.sponsors-page-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.sponsors-page-intro h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

/* ============================================================
   VOTING PAGE
   ============================================================ */
.vote-step {
  display: none;
}
.vote-step.active { display: block; }

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

.business-type-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.business-type-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.business-type-card.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.business-type-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.business-type-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.business-type-card p {
  font-size: 13px;
  color: var(--mid-gray);
  margin: 0 auto;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 70px; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { max-width: 440px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 20px; }
  .header-nav { display: none; }
  .header-hamburger { display: flex; }
  .mobile-nav { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .business-type-cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .form-card { padding: 32px 24px; }
  .hero-deadline { position: static; margin-top: 40px; display: inline-block; }
  .categories-tabs { overflow-x: auto; padding-bottom: 0; }
  .tab-btn { font-size: 12px; padding: 10px 16px; }
  .category-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
