/* ═══════════════════════════════════════════════
   ONE IN A MILLION — MASTER STYLESHEET
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --charcoal: #141414;
  --dark-gray: #1E1E1E;
  --med-gray: #2A2A2A;
  --cream: #F5F0E8;
  --cream-fade: rgba(245,240,232,0.5);
  --cream-ghost: rgba(245,240,232,0.25);
  --gold-fade: rgba(201,168,76,0.15);
  --gold-ghost: rgba(201,168,76,0.06);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--black); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
select option { background: var(--dark-gray); color: var(--cream); }
textarea { font-family: 'Montserrat', sans-serif; }
input::placeholder, textarea::placeholder { color: rgba(245,240,232,0.2); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold) !important; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes rotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}
@keyframes float {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 0.6; transform: translateY(-100px) scale(1.5); }
}

.anim-fadeup { animation: fadeUp 0.7s both; }
.anim-fadeup-1 { animation: fadeUp 0.8s 0.15s both; }
.anim-fadeup-2 { animation: fadeUp 0.8s 0.3s both; }
.anim-fadeup-3 { animation: fadeUp 0.8s 0.45s both; }
.anim-fadeup-4 { animation: fadeUp 0.8s 0.6s both; }
.anim-fadein { animation: fadeIn 0.6s both; }

/* ─── PARTICLES ─── */
.particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.particle {
  position: absolute; width: 2px; height: 2px; background: var(--gold);
  border-radius: 50%; opacity: 0; animation: float 8s infinite ease-in-out;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; padding: 18px 40px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; border-bottom: 1px solid var(--gold-ghost);
  background: linear-gradient(180deg, rgba(10,10,10,0.97), rgba(10,10,10,0.85));
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700;
  letter-spacing: 3px; color: var(--gold); cursor: pointer;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
  width: 34px; height: 34px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-style: italic;
}
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
  position: relative; transition: color 0.3s; padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 600; }
.nav-links .nav-cta {
  padding: 9px 22px; border: 1px solid var(--gold); color: var(--gold) !important;
  transition: all 0.3s;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--black) !important; }

.mobile-menu-btn { display: none; background: none; border: none; color: var(--gold); font-size: 24px; cursor: pointer; }

/* ─── SECTION HELPERS ─── */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; margin-bottom: 16px;
}
.section-header p {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  color: var(--cream-fade); max-width: 550px; margin: 0 auto; line-height: 1.6;
}
.gold-line { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 16px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 420px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 140px 24px 80px;
  position: relative; background: radial-gradient(ellipse at center, var(--gold-ghost) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 72px);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
.page-hero .subtitle {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  color: var(--cream-fade); max-width: 600px; line-height: 1.6;
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-block; padding: 15px 44px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }

.btn-outline {
  display: inline-block; padding: 15px 44px; background: transparent;
  border: 1px solid var(--cream-ghost); cursor: pointer;
  color: var(--cream); font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-small {
  padding: 8px 16px; font-size: 11px; letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif; cursor: pointer; transition: all 0.3s;
  background: transparent; border: 1px solid var(--gold-ghost); color: var(--cream-fade);
}
.btn-small:hover { border-color: var(--gold); color: var(--gold); }
.btn-danger { border-color: rgba(200,60,60,0.3); color: rgba(200,60,60,0.6); }
.btn-danger:hover { border-color: #c83c3c; color: #c83c3c; }

/* ─── LOGO CIRCLE ─── */
.logo-circle {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px;
  color: var(--gold); background: var(--gold-ghost);
}
.logo-circle.lg { width: 100px; height: 100px; font-size: 36px; }
.logo-circle.xl { width: 120px; height: 120px; font-size: 44px; }

/* ─── CARDS ─── */
.card {
  background: linear-gradient(145deg, var(--charcoal), var(--dark-gray));
  border: 1px solid var(--gold-ghost); transition: all 0.4s;
}
.card:hover {
  border-color: var(--gold-fade); transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.card-link { cursor: pointer; }

/* ─── HERO (HOME) ─── */
.home-hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 120px 24px 80px;
  position: relative; background: radial-gradient(ellipse at 50% 40%, var(--gold-ghost) 0%, transparent 55%);
}
.home-hero .badge {
  font-size: 11px; font-weight: 500; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; gap: 16px;
}
.home-hero .badge .line { width: 40px; height: 1px; background: var(--gold); }
.home-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(48px, 8vw, 110px);
  font-weight: 900; line-height: 1; letter-spacing: -2px;
}
.home-hero h1 .outline { -webkit-text-stroke: 1.5px var(--gold); color: transparent; }
.home-hero h1 .gold { color: var(--gold); }
.home-hero .subtitle {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300; color: var(--cream-fade); margin-top: 28px;
  max-width: 580px; line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; margin-top: 48px; flex-wrap: wrap; justify-content: center; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.4;
}
.scroll-hint span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; }
.scroll-hint .line { width: 1px; height: 28px; background: linear-gradient(180deg, var(--gold), transparent); }

/* ─── TICKER ─── */
.ticker {
  padding: 18px 0; border-top: 1px solid var(--gold-fade);
  border-bottom: 1px solid var(--gold-fade); overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: scrollTicker 35s linear infinite; }
.ticker-item {
  font-family: 'Cormorant Garamond', serif; font-size: 15px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(201,168,76,0.35); padding: 0 32px;
  display: inline-flex; align-items: center; gap: 32px;
}
.ticker-diamond {
  display: inline-block; width: 5px; height: 5px; background: var(--gold);
  transform: rotate(45deg); opacity: 0.35;
}

/* ─── STATS BAR ─── */
.stats-bar { padding: 80px 40px; background: linear-gradient(180deg, transparent, var(--gold-ghost), transparent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; text-align: center; }
.stat-item { padding: 32px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px;
  background: var(--gold-ghost);
}
.stat-number { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream-fade); margin-top: 8px; }

/* ─── CATEGORY GRID ─── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.cat-card { padding: 40px 32px; position: relative; overflow: hidden; cursor: pointer; }
.cat-card .cat-num {
  position: absolute; top: 16px; right: 20px; font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 900; color: var(--gold-ghost);
}
.cat-card .cat-icon { font-size: 28px; margin-bottom: 16px; }
.cat-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.cat-card p { font-size: 14px; color: var(--cream-fade); line-height: 1.7; margin-bottom: 14px; }
.cat-card .cat-count { font-size: 11px; color: var(--gold); letter-spacing: 2px; }

/* ─── CATEGORY ACCORDION (categories page) ─── */
.cat-accordion { border-bottom: 1px solid var(--gold-ghost); padding: 40px 0; cursor: pointer; }
.cat-accordion-header { display: flex; align-items: center; gap: 24px; }
.cat-accordion-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: var(--gold-ghost); width: 80px; flex-shrink: 0; }
.cat-accordion-icon { font-size: 28px; width: 40px; flex-shrink: 0; }
.cat-accordion-body { flex: 1; }
.cat-accordion-body h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; }
.cat-accordion-body p { font-size: 14px; color: var(--cream-fade); margin-top: 4px; line-height: 1.6; }
.cat-accordion-toggle { font-size: 13px; color: var(--gold); letter-spacing: 2px; flex-shrink: 0; white-space: nowrap; }
.cat-accordion-toggle .arrow { display: inline-block; transition: transform 0.3s; }
.cat-accordion.open .cat-accordion-toggle .arrow { transform: rotate(90deg); }
.cat-accordion-content {
  display: none; margin-top: 28px; margin-left: 144px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}
.cat-accordion.open .cat-accordion-content { display: grid; animation: fadeUp 0.4s both; }

/* ─── WINNER CARD ─── */
.winner-card { padding: 36px 28px; position: relative; }
.winner-card .year-bg {
  position: absolute; top: 16px; right: 20px; font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900; color: var(--gold-ghost);
}
.winner-card .card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.winner-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.winner-card .card-cat { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.winner-card .card-about { font-size: 13px; color: var(--cream-ghost); line-height: 1.7; }
.winner-card .card-address { font-size: 11px; color: var(--cream-ghost); margin-top: 8px; }
.winner-card .card-link-text { font-size: 11px; color: var(--gold); letter-spacing: 2px; margin-top: 16px; font-weight: 600; }

/* ─── FEATURED WINNER ─── */
.featured-winner { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; padding: 48px; border-color: var(--gold); }
.featured-left { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.featured-badge { padding: 6px 16px; border: 1px solid var(--gold); font-size: 10px; letter-spacing: 3px; color: var(--gold); font-weight: 600; }
.featured-right .cat-label { font-size: 11px; color: var(--gold); letter-spacing: 3px; margin-bottom: 8px; text-transform: uppercase; }
.featured-right h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.featured-right .address { font-size: 13px; color: var(--cream-ghost); margin-bottom: 12px; }
.featured-right .about { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--cream-fade); line-height: 1.8; margin-bottom: 24px; }

/* ─── PROCESS STEPS ─── */
.process-step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 48px 0; border-bottom: 1px solid var(--gold-ghost); }
.process-step:last-child { border-bottom: none; }
.step-dot {
  width: 64px; height: 64px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gold);
}
.process-step h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.process-step .step-desc { font-size: 16px; color: var(--cream); margin-bottom: 12px; line-height: 1.5; }
.process-step .step-detail { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--cream-fade); line-height: 1.8; }

/* ─── PROCESS MINI (home) ─── */
.process-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.process-mini-card { text-align: center; padding: 36px 20px; position: relative; }
.process-mini-card .step-dot { margin: 0 auto 20px; }
.process-mini-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.process-mini-card p { font-size: 13px; color: var(--cream-fade); line-height: 1.7; }

/* ─── EVALUATION CRITERIA ─── */
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.criteria-card { padding: 28px; text-align: center; }
.criteria-pct { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--gold); }
.criteria-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-fade); margin-top: 8px; }

/* ─── TESTIMONIALS ─── */
.testimonial-card { padding: 40px 36px; text-align: left; position: relative; }
.testimonial-card .quote-mark {
  font-family: 'Playfair Display', serif; font-size: 72px; color: var(--gold-ghost);
  position: absolute; top: 12px; left: 24px; line-height: 1;
}
.testimonial-card .quote {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic;
  line-height: 1.7; color: var(--cream-fade); margin-bottom: 20px; padding-left: 32px;
}
.testimonial-card .author { font-size: 13px; font-weight: 600; letter-spacing: 2px; color: var(--gold); padding-left: 32px; }
.testimonial-card .role { font-size: 12px; color: var(--cream-ghost); margin-top: 2px; padding-left: 32px; }

/* ─── CREDIBILITY BAR ─── */
.credibility-bar { padding: 60px 40px; border-top: 1px solid var(--gold-ghost); border-bottom: 1px solid var(--gold-ghost); }
.credibility-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--cream-ghost); text-align: center; margin-bottom: 28px; }
.credibility-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; opacity: 0.35; }
.credibility-logos span {
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
  letter-spacing: 3px; white-space: nowrap;
}

/* ─── BENEFIT CARDS ─── */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.benefit-card { display: flex; gap: 20px; padding: 32px 28px; }
.benefit-icon {
  width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--gold-ghost); border-radius: 50%;
  background: var(--gold-ghost);
}
.benefit-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--cream-fade); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--gold-ghost); }
.faq-question { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; transition: color 0.3s; }
.faq-question:hover h4 { color: var(--gold); }
.faq-toggle { color: var(--gold); font-size: 20px; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 24px; }
.faq-item.open .faq-answer { display: block; animation: fadeUp 0.3s both; }
.faq-answer p { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--cream-fade); line-height: 1.8; }

/* ─── CTA SECTION ─── */
.cta-section { padding: 140px 40px; text-align: center; position: relative; }
.cta-section .glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; margin-bottom: 20px; position: relative;
}
.cta-section h2 .gold { color: var(--gold); }
.cta-section p {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream-fade);
  max-width: 500px; margin: 0 auto 40px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-grid h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.about-grid p { font-family: 'Cormorant Garamond', serif; font-size: 19px; line-height: 1.9; color: var(--cream-fade); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.value-card { padding: 40px 28px; text-align: left; }
.value-card .icon { font-size: 28px; margin-bottom: 16px; color: var(--gold); }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--cream-fade); line-height: 1.7; }
.judges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; }
.judge-card { text-align: center; }
.judge-card .logo-circle { margin: 0 auto; width: 72px; height: 72px; font-size: 24px; }
.judge-card .name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-top: 16px; }
.judge-card .specialty { font-size: 12px; color: var(--gold); letter-spacing: 2px; margin-top: 4px; }

/* ─── AWARD PAGE ─── */
.award-hero {
  min-height: 520px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 160px 24px 80px;
  position: relative; background: radial-gradient(ellipse at center, var(--gold-ghost) 0%, transparent 50%);
}
.award-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 64px); font-weight: 900; line-height: 1.1; margin-bottom: 8px; }
.award-hero .address { font-size: 14px; color: var(--cream-ghost); letter-spacing: 1px; }
.award-hero .phone { font-size: 14px; color: var(--gold); letter-spacing: 1px; margin-top: 4px; }
.winner-badge { padding: 8px 20px; border: 1px solid var(--gold); color: var(--gold); font-size: 11px; letter-spacing: 3px; font-weight: 600; margin-top: 16px; display: inline-block; }
.verified-dot { position: absolute; top: -4px; right: -4px; width: 28px; height: 28px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--black); }

/* Certificate */
.certificate { max-width: 800px; margin: -40px auto 0; padding: 0 24px; position: relative; z-index: 2; }
.certificate-inner { border-color: var(--gold); padding: 60px 48px; text-align: center; position: relative; }
.cert-corner {
  position: absolute; width: 24px; height: 24px;
}
.cert-corner.tl { top: 12px; left: 12px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.cert-corner.tr { top: 12px; right: 12px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.cert-corner.bl { bottom: 12px; left: 12px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.cert-corner.br { bottom: 12px; right: 12px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.cert-label { font-size: 11px; letter-spacing: 6px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.cert-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.cert-name { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: var(--gold); margin-bottom: 20px; }
.cert-desc { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream-fade); line-height: 1.7; max-width: 550px; margin: 0 auto 24px; }
.cert-footer { font-size: 12px; letter-spacing: 3px; color: var(--cream-ghost); margin-top: 8px; }

.award-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.award-detail-card { background: var(--dark-gray); border: 1px solid var(--gold-ghost); padding: 28px; }
.award-detail-card.full { grid-column: span 2; }
.award-detail-card .label { font-size: 11px; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; }
.award-detail-card .value { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }

/* ─── FILTERS ─── */
.filter-bar { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-select {
  background: var(--dark-gray); color: var(--cream); border: 1px solid var(--gold-ghost);
  padding: 10px 16px; font-family: 'Montserrat', sans-serif; font-size: 12px;
  letter-spacing: 2px; cursor: pointer; appearance: none; min-width: 180;
}

/* ─── ORBIT VISUAL ─── */
.orbit-container { position: relative; width: 260px; height: 260px; margin: 0 auto; }
.orbit-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.orbit-ring {
  position: absolute; top: 50%; left: 50%; border: 1px solid var(--gold-ghost); border-radius: 50%;
}
.orbit-ring.r1 { width: 240px; height: 240px; animation: rotate 25s linear infinite; }
.orbit-ring.r2 { width: 320px; height: 320px; animation: rotate 40s linear infinite reverse; }
.orbit-dot {
  position: absolute; top: -3px; left: 50%; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 120px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: var(--gold-ghost);
  font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--gold);
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px 40px; border-top: 1px solid var(--gold-ghost);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold); font-weight: 700; letter-spacing: 2px; }
.footer-copy { font-size: 11px; color: var(--cream-ghost); letter-spacing: 2px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-ghost); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ─── ADMIN DASHBOARD ─── */
.admin-form { max-width: 800px; margin: -20px auto 0; padding: 0 24px 60px; }
.admin-form-inner { padding: 48px 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { margin-bottom: 24px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.form-input {
  width: 100%; padding: 14px 16px; background: var(--dark-gray);
  border: 1px solid var(--gold-ghost); color: var(--cream);
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--gold); }
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.form-btns { display: flex; gap: 16px; margin-top: 8px; }

.biz-list { max-width: 1200px; margin: 0 auto; padding: 0 24px 100px; }
.biz-row {
  display: flex; align-items: center; gap: 20px; padding: 20px 24px;
  background: var(--charcoal); border: 1px solid var(--gold-ghost);
  margin-bottom: 8px; transition: all 0.3s;
}
.biz-row-info { flex: 1; min-width: 0; }
.biz-row-info h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; }
.biz-row-info p { font-size: 12px; color: var(--cream-ghost); margin-top: 2px; }
.biz-row-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ─── TOAST ─── */
.toast {
  position: fixed; top: 80px; right: 24px; z-index: 2000; padding: 16px 28px;
  background: var(--gold); color: var(--black); font-weight: 600; font-size: 13px;
  letter-spacing: 1px; animation: fadeUp 0.3s both; box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.toast.hidden { display: none; }

/* ─── LOGIN GATE ─── */
.login-overlay {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 120px 24px;
}
.login-box { max-width: 420px; width: 100%; padding: 48px 36px; }
.login-box h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.login-box .subtitle { font-size: 14px; color: var(--cream-fade); margin-bottom: 32px; }
.login-box .form-group { margin-bottom: 20px; text-align: left; }
.login-error { color: #c83c3c; font-size: 13px; margin-bottom: 16px; }

/* ─── LOADING ─── */
.loading { text-align: center; padding: 100px 40px; }
.loading-spinner {
  width: 40px; height: 40px; border: 2px solid var(--gold-ghost);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading p { font-size: 14px; color: var(--cream-fade); letter-spacing: 2px; }
.empty-state { text-align: center; padding: 80px 40px; color: var(--cream-ghost); font-style: italic; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .container { padding: 0 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-accordion-header { flex-wrap: wrap; }
  .cat-accordion-num { display: none; }
  .cat-accordion-content { margin-left: 0; }
  .process-step { grid-template-columns: 1fr; }
  .process-step .step-dot { margin-bottom: 16px; }
  .filter-bar { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .featured-winner { grid-template-columns: 1fr; text-align: center; }
  .featured-left { flex-direction: row; justify-content: center; }
  .award-details { grid-template-columns: 1fr; }
  .award-detail-card.full { grid-column: span 1; }
  .footer { flex-direction: column; text-align: center; }
  .biz-row { flex-direction: column; text-align: center; }
  .biz-row-actions { justify-content: center; }
  .benefit-grid { grid-template-columns: 1fr; }
  .credibility-logos { gap: 24px; }
}
