/* ===========================
   IVORY & GOLD — CSS
   =========================== */

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --gold: #b8972a;
  --gold-light: #d4af37;
  --gold-pale: #f0e6c0;
  --charcoal: #1a1814;
  --ink: #2d2a24;
  --muted: #7a7060;
  --white: #ffffff;
  --shadow: rgba(26,24,20,0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Josefin Sans', 'Gill Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-pale); }

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.centered { text-align: center; }
.section-title.light { color: var(--cream); }

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 3.5rem;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,151,42,0.2);
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 30px var(--shadow);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: all 0.25s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(184,151,42,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 30%, rgba(212,175,55,0.07) 0%, transparent 60%);
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.55);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 3rem;
}
.dot { color: var(--gold); }

.btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--gold);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,151,42,0.4); }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,240,232,0.3);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollBob 2s infinite ease-in-out;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,151,42,0.5), transparent);
}

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

/* ========== ABOUT ========== */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: start;
  margin-top: 1rem;
}

.about-text p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ========== PRIZES ========== */
.prizes {
  background: var(--charcoal);
}
.prizes .section-label { color: var(--gold-pale); }
.prizes .section-title { color: var(--cream); }

.prizes-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
}

.prize-card {
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(184,151,42,0.25);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.prize-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.gold::before { background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.silver::before { background: linear-gradient(90deg, transparent, #a0a8b0, transparent); }
.bronze::before { background: linear-gradient(90deg, transparent, #b87333, transparent); }

.prize-card.featured {
  background: rgba(184,151,42,0.08);
  border-color: rgba(184,151,42,0.45);
  padding: 4rem 2rem;
  transform: translateY(-1rem);
}

.prize-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.prize-card.featured:hover { transform: translateY(-7rem) !important; }

.prize-rank {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.gold .prize-rank { color: var(--gold); }

.prize-medal {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.gold .prize-medal { color: var(--gold-light); }
.silver .prize-medal { color: #a0a8b0; }
.bronze .prize-medal { color: #b87333; }

.prize-amount {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.gold .prize-amount { color: var(--gold-light); }

.prize-name {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.prize-desc {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.6;
}

.prize-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}

/* ========== RULES ========== */
.rules { background: var(--cream-dark); }

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(184,151,42,0.2);
}

.rule-block {
  padding: 2.5rem 2.5rem;
  border-bottom: 1px solid rgba(184,151,42,0.2);
  border-right: 1px solid rgba(184,151,42,0.2);
  transition: background 0.3s;
  position: relative;
}
.rule-block:nth-child(even) { border-right: none; }
.rule-block:hover { background: rgba(184,151,42,0.04); }

.rule-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(184,151,42,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rule-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.rule-block p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}
.rule-block p strong { color: var(--ink); font-weight: 400; }

/* ========== JUDGES ========== */
.judges { background: var(--cream); }

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

.judge-card {
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.judge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px var(--shadow);
}

.judge-card.featured-judge {
  border-color: rgba(184,151,42,0.4);
  background: linear-gradient(180deg, rgba(184,151,42,0.04) 0%, var(--white) 100%);
}

.judge-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid rgba(184,151,42,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.avatar-art {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.judge-name {
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.judge-title {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.judge-bio {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ========== REGISTER ========== */
.register {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.register::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,151,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.register-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.register .section-title { margin-bottom: 0.8rem; }
.register > .register-inner > p {
  color: rgba(245,240,232,0.5);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,151,42,0.25);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.25);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(184,151,42,0.08);
}

.btn-submit {
  align-self: flex-start;
  padding: 1rem 3rem;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,151,42,0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}
.form-success.visible { display: block; }
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.form-success p {
  color: var(--cream);
  font-size: 1.1rem;
  font-family: var(--font-display);
}

/* ========== FOOTER ========== */
.footer {
  background: #111009;
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.3;
}
.footer-logo span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.65rem;
  color: rgba(122,112,96,0.5);
  letter-spacing: 0.08em;
}

/* ========== HERO SVG ========== */
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ========== REGISTRATION ENHANCEMENTS ========== */
.req-star { color: var(--gold); }

.form-section-title {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184,151,42,0.25);
  margin-top: 0.5rem;
}

.field-note {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.38);
  line-height: 1.6;
  margin-top: 0.3rem;
}

/* File upload */
.upload-group { gap: 0.6rem; }

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px dashed rgba(184,151,42,0.35);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 0.4rem;
}
.file-upload-label:hover {
  background: rgba(184,151,42,0.07);
  border-color: var(--gold);
}
.file-upload-label input[type="file"] {
  display: none;
}
.upload-icon {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.6;
  min-width: 24px;
}
.upload-text {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.03em;
}
.upload-text.has-file {
  color: var(--gold);
}

/* Payment box */
.payment-box {
  border: 1px solid rgba(184,151,42,0.3);
  background: rgba(184,151,42,0.06);
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}
.payment-amount span {
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 300;
}
.payment-info p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.7;
}
.payment-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.badge {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(184,151,42,0.3);
  padding: 0.3rem 0.75rem;
  color: rgba(245,240,232,0.4);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.6;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.success-sub {
  font-family: var(--font-sans) !important;
  font-size: 0.8rem !important;
  color: rgba(245,240,232,0.45) !important;
  margin-top: 0.8rem !important;
}
.gold-link { color: var(--gold); text-decoration: none; }
.gold-link:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .prizes-grid { grid-template-columns: 1fr; }
  .prize-card.featured { transform: none; }
  .prize-card.featured:hover { transform: translateY(-6px) !important; }
  .rules-grid { grid-template-columns: 1fr; }
  .rule-block { border-right: none; }
  .judges-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 200;
  }
  .nav-links.open a {
    font-size: 1rem;
    color: var(--cream);
  }
  .nav-links.open .nav-cta {
    color: var(--gold) !important;
  }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .hero-title { font-size: 3rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== TALLY REGISTRATION SECTION ========== */
.register-intro {
  color: rgba(245,240,232,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.register-intro strong { color: var(--gold-light); font-weight: 400; }

.tally-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(184,151,42,0.2);
}

.tally-step {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid rgba(184,151,42,0.15);
  transition: background 0.2s;
}
.tally-step:last-child { border-bottom: none; }
.tally-step:hover { background: rgba(184,151,42,0.05); }

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  min-width: 2rem;
  margin-top: 0.1rem;
}

.tally-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.tally-step p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.7;
  margin: 0;
}

.tally-requirements {
  background: rgba(184,151,42,0.06);
  border: 1px solid rgba(184,151,42,0.2);
  padding: 1.8rem 2rem;
  margin-bottom: 2.5rem;
}

.req-heading {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tally-requirements ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tally-requirements li {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.btn-tally {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  background: var(--gold);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-sans);
  transition: all 0.3s;
  margin-bottom: 1rem;
}
.btn-tally:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,151,42,0.35);
}

.tally-note {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.25);
}

/* ========== REGISTRATION COUNTDOWN ========== */
.btn-tally-disabled {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  background: rgba(255,255,255,0.07);
  color: rgba(245,240,232,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: not-allowed;
  margin-bottom: 1rem;
  pointer-events: none;
}

.countdown-bar {
  display: flex;
  gap: 1.5rem;
  margin: 1.2rem 0 1rem;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  min-width: 2.5rem;
  text-align: center;
}

.countdown-label {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

.countdown-divider {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(184,151,42,0.3);
  align-self: flex-start;
  margin-top: 0.2rem;
}

.opens-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  margin-bottom: 0.8rem;
  display: block;
}

.footer-judge-link {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(122,112,96,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-judge-link:hover { color: var(--gold); }
