/* ============================================================
   INTERNATIONAL RESTAURANT AWARDS — GLOBAL DESIGN SYSTEM
   Deep Forest Green (#1C3A28) primary structure,
   warm antique gold (#C8952A) accent — buttons, highlights, CTAs.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1C3A28;        /* deep forest green */
  --primary-light: #2E5A40;
  --gold: #C8952A;           /* warm antique gold */
  --gold-dark: #9A6D1A;
  --gold-light: #F0C060;
  --gold-pale: #FDF6E8;
  --white: #FFFFFF;
  --navy: #101E14;           /* very dark green-black */
  --navy-light: #1C3228;
  --champagne: #FDF5E0;
  --forest: #2E7D52;
  --silver: #B0BDB5;
  --beige: #F4F8F2;
  --text-dark: #0F1E14;
  --text-body: #2A3D2E;
  --text-muted: #5A7060;
  --bg-light: #F4F8F2;
  --bg-section: #EBF3ED;
  --border: rgba(46,122,82,0.18);
  --border-strong: rgba(46,122,82,0.40);
  --shadow-sm: 0 2px 8px rgba(15,30,20,0.08);
  --shadow: 0 6px 24px rgba(15,30,20,0.12);
  --shadow-lg: 0 16px 48px rgba(15,30,20,0.18);
  --shadow-gold: 0 8px 28px rgba(200,149,42,0.32);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; object-position: top center; }
.award-card-img, .blog-card-img, .region-card-img, .winner-card-img, .content-split-img img { object-fit: cover; object-position: top center; }
.page-hero-bg, .hero-slide { background-position: top center; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Montserrat', sans-serif; color: var(--primary); }
p { line-height: 1.7; color: var(--text-body); }
.lead { font-size: 1.15rem; color: var(--text-body); line-height: 1.75; }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.container { width: 92%; max-width: 1380px; margin: 0 auto; padding: 0 16px; }
.container-narrow { width: 92%; max-width: 900px; margin: 0 auto; padding: 0 16px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 90px 0; }
.section-alt { background: var(--bg-light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }
.section-primary { background: var(--primary); }
.section-primary h1, .section-primary h2, .section-primary h3 { color: var(--white); }
.section-primary p { color: rgba(255,255,255,0.85); }
.section-gold-grad { background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
.text-center { text-align: center; }
.mt-2{margin-top:8px;} .mt-4{margin-top:16px;} .mt-6{margin-top:24px;}
.mb-4{margin-bottom:16px;} .mb-6{margin-bottom:24px;} .mb-8{margin-bottom:32px;}

.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header .eyebrow { margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 640px; }
.section-header.center p { margin: 0 auto; }
.gold-rule { width: 56px; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); margin: 14px 0; }
.gold-rule.center { margin: 14px auto; }

/* NAVIGATION */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(28,58,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,122,82,0.15);
  transition: all var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.brand-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 0.02em;
}
.brand-logo-text span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
/* Header brand: two-line name, both lines same size, no caption */
.brand-logo-text.brand-logo-2line { line-height: 1.04; }
.brand-logo-text.brand-logo-2line span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.02em; text-transform: none;
}
.nav-main { display: flex; align-items: center; gap: 2px; }
.nav-main a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em;
  text-transform: none; color: rgba(255,255,255,0.82);
  padding: 6px 9px; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap;
}
.nav-main a:hover { color: var(--gold); background: rgba(46,122,82,0.1); }
.nav-main a.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.6rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
  text-transform: none; color: rgba(255,255,255,0.8);
  padding: 9px 18px; transition: all var(--transition);
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(46,122,82,0.08); }
.nav-cta {
  font-family: 'Montserrat', sans-serif !important; font-size: 0.68rem !important;
  font-weight: 700 !important; letter-spacing: 0.04em !important;
  text-transform: none !important;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)) !important;
  color: var(--navy) !important; padding: 8px 16px !important; border-radius: 2px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 20px; overflow-y: auto;
  z-index: 999; flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em; text-transform: none; color: rgba(255,255,255,0.82);
  padding: 14px 16px; border-bottom: 1px solid rgba(46,122,82,0.1);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta {
  margin-top: 16px; background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--navy); text-align: center; padding: 14px; border-radius: var(--radius);
  font-weight: 700; letter-spacing: 0.1em;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 2px; cursor: pointer;
  transition: all var(--transition); border: none; text-decoration: none; white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,149,42,0.45); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--gold-pale); color: var(--primary); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--primary); color: var(--white); }
.btn-navy:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.65rem; }
.btn-lg { padding: 18px 38px; font-size: 0.78rem; }
.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* HERO */
.hero { position: relative; height: 92vh; min-height: 600px; max-height: 900px; overflow: hidden; margin-top: 68px; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: top center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,rgba(28,58,40,0.82) 0%,rgba(16,30,20,0.7) 40%,rgba(16,30,20,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-text { max-width: 760px; }
.hero-text .eyebrow { color: var(--gold-light); margin-bottom: 16px; display: block; font-size: 0.78rem; }
.hero-text h1 { color: var(--white); margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-text p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 28px; max-width: 580px; }
.hero-indicators { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 28px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; cursor: pointer; transition: all var(--transition); }
.hero-dot.active { background: var(--gold); width: 40px; }

/* PAGE HERO */
.page-hero { position: relative; height: 340px; overflow: hidden; margin-top: 68px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: top center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(28,58,40,0.88),rgba(16,30,20,0.75)); }
.page-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.page-hero-content .eyebrow { color: var(--gold-light); margin-bottom: 10px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p { color: rgba(255,255,255,0.85); max-width: 580px; font-size: 1rem; }
.region-hero { height: 380px; }

/* BREADCRUMB */
.breadcrumb { padding: 12px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.breadcrumb div { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-family: 'Montserrat', sans-serif; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--gold); }

/* STATS BAR */
.stats-bar {
  background: linear-gradient(135deg,var(--navy),var(--primary));
  padding: 28px 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stats-grid { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; padding: 8px 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(46,122,82,0.3);
}
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; display: block; }

/* CARDS */
.award-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--border); cursor: pointer;
}
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.award-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.6s ease; }
.award-card:hover .award-card-img { transform: scale(1.05); }
.award-card-body { padding: 18px; }
.award-card-icon {
  width: 34px; height: 34px; background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; margin-bottom: 0; margin-right: 10px; vertical-align: middle; flex-shrink: 0;
}
.award-card h3 { display: inline; font-size: 1.05rem; margin-bottom: 0; color: var(--primary); vertical-align: middle; }
.award-card-body > p { display: block; margin-top: 8px; }
.award-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.award-card-link {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  margin-top: 12px; transition: gap var(--transition);
}
.award-card:hover .award-card-link { gap: 10px; }

.winner-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition); }
.winner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.winner-card-img { width: 100%; height: 220px; object-fit: cover; cursor: pointer; }
.winner-card-body { padding: 18px; }
.winner-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 10px;
}
.winner-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.winner-card .location { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* CTA SECTIONS */
.cta-banner { padding: 56px 0; position: relative; overflow: hidden; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner-text { flex: 1; min-width: 280px; }
.cta-banner-text .eyebrow { display: block; margin-bottom: 8px; }
.cta-banner-text h2 { margin-bottom: 10px; }
.cta-banner-text p { color: rgba(255,255,255,0.82); max-width: 520px; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cta-center { text-align: center; padding: 64px 0; }
.cta-center .eyebrow { display: block; margin-bottom: 10px; }
.cta-center h2 { margin-bottom: 14px; }
.cta-center p { max-width: 560px; margin: 0 auto 28px; color: var(--text-muted); }
.cta-image-section { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; }
.cta-image-bg { position: absolute; inset: 0; background-size: cover; background-position: top center; }
.cta-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(28,58,40,0.9),rgba(16,30,20,0.8)); }
.cta-image-content { position: relative; z-index: 2; text-align: center; padding: 60px 0; width: 100%; }
.cta-image-content .eyebrow { color: var(--gold-light); display: block; margin-bottom: 12px; }
.cta-image-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-image-content p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 28px; }

/* TESTIMONIALS */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative; transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.testimonial-card::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 4rem;
  color: var(--gold); opacity: 0.5; position: absolute; top: 8px; left: 20px; line-height: 1;
}
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.75; color: var(--text-body); margin-bottom: 18px; padding-top: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-info h4 { font-size: 0.9rem; margin-bottom: 2px; color: var(--primary); }
.testimonial-info span { font-size: 0.72rem; color: var(--text-muted); font-family: 'Montserrat', sans-serif; }
.star-rating { color: var(--gold); font-size: 0.8rem; margin-bottom: 8px; }

/* GALLERY */
.gallery-grid {
  column-count: 5;
  column-gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gallery-item {
  display: block; width: 100%; margin: 0; padding: 0;
  break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--navy); border: 0; outline: 0;
}
.gallery-item img {
  width: 100%; height: auto; display: block; margin: 0; vertical-align: bottom;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
  filter: saturate(0.92) brightness(0.96);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1.05); }
.gallery-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(28,58,40,0.55) 0%,rgba(46,122,82,0.15) 100%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none; z-index: 2;
}
.gallery-item::after {
  content: '↗'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.4);
  width: 48px; height: 48px; background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; opacity: 0; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none; z-index: 3; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
@media (max-width: 1280px) { .gallery-grid { column-count: 4; } }
@media (max-width: 900px)  { .gallery-grid { column-count: 3; } }
@media (max-width: 600px)  { .gallery-grid { column-count: 2; } }

/* VIDEOS */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card-info { padding: 16px; }
.video-card-info .eyebrow { margin-bottom: 4px; font-size: 0.62rem; }
.video-card-info h4 { color: var(--white); font-size: 0.95rem; font-family: 'Montserrat', sans-serif; }

.video-4-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.video-4-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); transition: all var(--transition); }
.video-4-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-4-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-4-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-4-info { padding: 14px 16px; }
.video-4-info .eyebrow { font-size: 0.58rem; margin-bottom: 4px; display: block; }
.video-4-info h4 { color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; line-height: 1.4; }

.highlights-split { display: grid; grid-template-columns: 70% 1fr; gap: 24px; align-items: stretch; }
.highlights-video { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.highlights-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.highlights-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.highlights-widget { background: linear-gradient(160deg,var(--primary) 0%,var(--navy) 100%); border-radius: var(--radius-lg); padding: 28px 22px; border: 1px solid rgba(46,122,82,0.2); display: flex; flex-direction: column; justify-content: space-between; }
.highlights-widget-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 4px; line-height: 1.2; }
.highlights-widget-sub { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.hw-stat { padding: 12px 0; border-bottom: 1px solid rgba(46,122,82,0.15); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hw-stat:last-of-type { border-bottom: none; }
.hw-value { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; }
.hw-label { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.65); text-align: right; line-height: 1.4; }
.hw-cta { margin-top: 20px; display: block; text-align: center; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 12px; border-radius: 2px; text-decoration: none; transition: all var(--transition); }
.hw-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--white); text-align: left; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--primary); transition: all var(--transition); gap: 12px;
}
.faq-question:hover { background: var(--bg-light); color: var(--gold); }
.faq-item.open .faq-question { background: var(--gold-pale); color: var(--primary); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.7rem; transition: all var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 16px 22px 20px; font-size: 0.88rem; color: var(--text-body); line-height: 1.75; border-top: 1px solid var(--border); background: var(--bg-light); }

/* BLOG */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 500; color: var(--text-muted); margin-bottom: 10px; }
.blog-category { background: var(--gold-pale); color: var(--gold-dark); padding: 2px 8px; border-radius: 2px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.6rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.blog-card .read-more { margin-top: 14px; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: gap var(--transition); }
.blog-card:hover .read-more { gap: 9px; }

/* REGION/COUNTRY CARDS */
.region-card { position: relative; height: 260px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.region-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.region-card:hover .region-card-img { transform: scale(1.08); }
.region-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(28,58,40,0.85) 0%,rgba(28,58,40,0.2) 60%); transition: background var(--transition); }
.region-card:hover .region-card-overlay { background: linear-gradient(0deg,rgba(28,58,40,0.95) 0%,rgba(28,58,40,0.3) 60%); }
.region-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.region-card-content .eyebrow { font-size: 0.6rem; margin-bottom: 4px; }
.region-card-content h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.region-card-content span { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.7); }

/* BENEFITS */
.benefit-item { display: flex; gap: 18px; padding: 20px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all var(--transition); }
.benefit-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.benefit-icon { width: 50px; height: 50px; background: linear-gradient(135deg,rgba(46,122,82,0.15),rgba(46,122,82,0.08)); border: 1px solid var(--border-strong); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.benefit-text h4 { margin-bottom: 5px; font-size: 1rem; }
.benefit-text p { font-size: 0.85rem; color: var(--text-muted); }

/* PROCESS STEPS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.process-step { text-align: center; padding: 28px 20px; position: relative; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; right: -14px; top: 38px; color: var(--gold); font-size: 1.2rem; }
.step-number { width: 58px; height: 58px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* CONTACT */
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.contact-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--navy); }
.contact-details h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-details a { color: var(--gold); font-size: 0.88rem; }
.contact-details a:hover { color: var(--gold-dark); }
.contact-details p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; height: 380px; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* PARTICIPATE */
.participate-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; }
.participate-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 18px 20px; text-align: left; transition: all var(--transition); position: relative; overflow: hidden;
}
.participate-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
}
.participate-box:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow); }
.pb-icon { font-size: 1.3rem; display: inline; vertical-align: middle; margin-right: 7px; line-height: 1; }
.participate-box h4 { display: inline; vertical-align: middle; font-size: 0.92rem; color: var(--primary); font-family: 'Montserrat', sans-serif; font-weight: 700; }
.participate-box p { display: block; margin-top: 7px; font-size: 0.76rem; color: var(--text-muted); line-height: 1.6; }

/* MAJOR AWARD BOXES */
.major-awards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.major-award-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 22px; transition: all var(--transition); position: relative; overflow: hidden;
}
.major-award-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
  transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.major-award-box:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.major-award-box:hover::before { transform: scaleX(1); }
.major-award-logo { font-size: 2rem; margin-bottom: 14px; display: block; }
.major-award-box h4 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.major-award-box p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.mab-link { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); transition: color var(--transition); }
.mab-link:hover { color: var(--gold-dark); }

/* TABS */
.tab-bar { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  text-transform: none; padding: 12px 18px; border: none; background: transparent;
  color: var(--text-muted); cursor: pointer; transition: all var(--transition); position: relative;
}
.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.tab-btn.active { color: var(--primary); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--gold); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* STICKY FULL-WIDTH TAB BAR (About page) */
.sticky-tab-bar {
  position: sticky; top: 68px; z-index: 900;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.sticky-tab-bar .tab-bar {
  margin-bottom: 0;
  border-bottom: none;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.sticky-tab-bar .tab-bar::-webkit-scrollbar { height: 3px; }
.sticky-tab-bar .tab-bar::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.sticky-tab-bar .tab-btn { white-space: nowrap; flex-shrink: 0; }
.tab-content { padding-top: 48px; }
.tab-content .tab-pane { scroll-margin-top: 130px; }
@media (max-width: 900px) {
  .sticky-tab-bar .tab-bar { justify-content: flex-start; }
}

/* AWARD NOMINATION FORM (embedded central form) */
.award-nomination-form-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.award-nomination-form-section iframe {
  width: 100%;
  min-height: 1800px;
  border: 0;
  display: block;
}

/* FEE PAGE */
.fee-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.fee-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.fee-amount { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.fee-period { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; color: var(--text-muted); }
.fee-feature-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.fee-feature { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.fee-feature::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* MISC */
.gold-text { color: var(--gold); }
.divider { height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 40px 0; opacity: 0.4; }
.tag { display: inline-flex; align-items: center; gap: 5px; font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.tag-gold { background: var(--gold-pale); color: var(--gold-dark); border: 1px solid var(--border-strong); }
.tag-navy { background: var(--primary); color: var(--white); }
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }
.content-split-text .eyebrow { display: block; margin-bottom: 10px; }
.content-split-text h2 { margin-bottom: 14px; }
.content-split-text p { margin-bottom: 14px; color: var(--text-muted); }
.content-split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-split-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.content-split-img::before { content: ''; position: absolute; top: -10px; left: -10px; width: 60px; height: 60px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); z-index: 1; }
.content-split-img::after { content: ''; position: absolute; bottom: -10px; right: -10px; width: 60px; height: 60px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); z-index: 1; }
.lazy { opacity: 0; transition: opacity 0.5s ease; }
.lazy.loaded { opacity: 1; }
.highlight-card { background: linear-gradient(135deg,var(--gold-pale),var(--champagne)); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 28px; }
.prose p { margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.spec-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.spec-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
.spec-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.icon-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 20px; padding: 5px 12px; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 600; color: var(--primary); }

/* MARQUEE / NOMINEES */
.marquee-section { background: var(--navy); padding: 56px 0; overflow: hidden; }
.marquee-row { display: flex; gap: 0; overflow: hidden; margin-bottom: 14px; }
.marquee-row:last-child { margin-bottom: 0; }
.marquee-track { display: flex; gap: 0; animation: marquee-ltr 28s linear infinite; }
.marquee-row.reverse .marquee-track { animation: marquee-rtl 32s linear infinite; }
.marquee-track-clone { display: flex; gap: 0; animation: marquee-ltr 28s linear infinite; }
.marquee-row.reverse .marquee-track-clone { animation: marquee-rtl 32s linear infinite; }
.nominee-chip {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,149,42,0.2);
  border-radius: 4px; padding: 10px 20px; margin: 0 8px;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.7); letter-spacing: 0.05em; white-space: nowrap;
  transition: all var(--transition);
}
.nominee-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,149,42,0.08); }
@keyframes marquee-ltr { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-rtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* CATEGORY FULL CARDS */
.category-full-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 200px 1fr; box-shadow: var(--shadow-sm); transition: all var(--transition); margin-bottom: 16px; }
.category-full-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.category-full-card img { width: 200px; height: 160px; object-fit: cover; }
.category-full-card-body { padding: 22px; }
.category-full-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.category-full-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.subcategory-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.subcategory-tag { background: var(--bg-light); border: 1px solid var(--border); color: var(--text-muted); font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 2px; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(46,122,82,0.15); }
.footer-brand p { font-size: 0.83rem; line-height: 1.75; margin: 14px 0 18px; color: rgba(255,255,255,0.6); }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { width: 52px; height: 52px; background: rgba(46,122,82,0.12); border: 1px solid rgba(46,122,82,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: rgba(255,255,255,0.85); transition: all var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-newsletter p { font-size: 0.83rem; margin-bottom: 12px; color: rgba(255,255,255,0.6); }
.newsletter-form { display: flex; }
.newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(46,122,82,0.2); border-right: none; border-radius: var(--radius) 0 0 var(--radius); color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.82rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { padding: 10px 16px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); border: none; border-radius: 0 var(--radius) var(--radius) 0; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; cursor: pointer; }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom { padding: 18px 0 10px; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 8px 18px; flex-wrap: wrap; justify-content: center; padding: 12px 0; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold); }

.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999; transition: all var(--transition); font-size: 1.5rem; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }

/* FOOTER DISCLAIMER (legible on dark navy footer) */
.footer-disclaimer {
  margin-top: 18px; padding: 22px 0 28px;
  border-top: 1px solid rgba(46,122,82,0.18);
  font-family: 'Inter', sans-serif; font-size: 0.7rem; line-height: 1.7;
  color: rgba(255,255,255,0.42);
}
.footer-disclaimer strong { color: rgba(255,255,255,0.6); }
.footer-disclaimer a { color: var(--gold); text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--gold-light); }

/* ============================================================
   NOMINEES / WINNERS DIRECTORY  (table, filters, pagination)
   ============================================================ */
.directory-toolbar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.directory-filters { display: grid; grid-template-columns: 180px 200px 1fr auto; gap: 12px; align-items: center; }
.dir-select, .dir-search {
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; color: var(--text-body);
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; outline: none; transition: border-color var(--transition); width: 100%;
}
.dir-select:focus, .dir-search:focus { border-color: var(--gold); }
.dir-search::placeholder { color: var(--text-muted); }
.directory-count { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); margin-top: 14px; }
.directory-count strong { color: var(--primary); }

.directory-table-wrap { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); }
.directory-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.directory-table thead th {
  background: linear-gradient(135deg,var(--primary),var(--navy)); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-align: left; padding: 14px 16px; white-space: nowrap;
}
.directory-table tbody td { padding: 12px 16px; border-top: 1px solid var(--border); vertical-align: middle; color: var(--text-body); }
.dir-row { transition: background var(--transition); }
.dir-row:hover { background: var(--gold-pale); }
.dir-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); display: block; }
.dir-initial {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy);
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.25rem; border: 2px solid var(--gold-light);
}
.dir-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); font-size: 0.86rem; }
.dir-designation { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.dir-cat-pill { display: inline-block; background: var(--gold-pale); color: var(--gold-dark); border: 1px solid var(--border-strong); border-radius: 2px; padding: 3px 9px; font-family: 'Montserrat', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.03em; line-height: 1.45; }
.dir-region { font-size: 0.72rem; color: var(--text-muted); }
.dir-toggle {
  font-family: 'Montserrat', sans-serif; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: transparent; border: 1px solid var(--border-strong); border-radius: 2px; padding: 7px 12px;
  display: inline-flex; align-items: center; gap: 6px; transition: all var(--transition); white-space: nowrap;
}
.dir-toggle:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.dir-toggle .chev { transition: transform var(--transition); }
.dir-row.open .dir-toggle .chev { transform: rotate(180deg); }
.dir-detail-row > td { padding: 0; border-top: none; background: var(--bg-light); }
.dir-detail { padding: 20px 22px 24px; }
.dir-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px 28px; }
.dir-detail-item { font-size: 0.8rem; }
.dir-detail-item .k { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.dir-detail-item .v { color: var(--text-body); line-height: 1.55; }
.dir-detail-social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.dir-social-link {
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border-strong); color: var(--primary); font-weight: 700; font-size: 0.85rem;
  transition: all var(--transition); text-decoration: none;
}
.dir-social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.dir-empty { text-align: center; padding: 56px 20px; color: var(--text-muted); }
.dir-empty h3 { color: var(--primary); margin-bottom: 8px; }

.directory-pager { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 26px; }
.pager-btn {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--primary);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); min-width: 38px; padding: 9px 12px;
  cursor: pointer; transition: all var(--transition);
}
.pager-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.pager-btn.active { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); border-color: var(--gold); }
.pager-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pager-ellipsis { color: var(--text-muted); padding: 0 4px; }

/* ============================================================
   VIDEO FACADE (testimonials — thumbnail then inline play)
   ============================================================ */
.video-facade { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; padding: 0; margin: 0; cursor: pointer; overflow: hidden; background: var(--navy); }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.5s ease, opacity var(--transition); }
.video-facade:hover img { transform: scale(1.05); opacity: 1; }
.video-facade::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(16,30,20,0.45),rgba(16,30,20,0.05)); pointer-events: none; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(200,149,42,0.95); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; padding-left: 4px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.4); transition: all var(--transition); z-index: 2;
}
.video-facade:hover .video-play-btn { background: var(--gold-light); transform: translate(-50%,-50%) scale(1.08); }

/* ============================================================
   FEE / COST  (comparison table + winner package boxes)
   ============================================================ */
.fee-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.fee-table { width: 100%; border-collapse: collapse; min-width: 760px; background: var(--white); }
.fee-table th, .fee-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.fee-table thead th { background: linear-gradient(135deg,var(--primary),var(--navy)); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.fee-table thead th.featured { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); }
.fee-table tbody th { text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.74rem; color: var(--primary); background: var(--bg-light); white-space: nowrap; }
.fee-table tbody td.featured { background: rgba(200,149,42,0.07); }
.fee-table .fee-row-price td, .fee-table .fee-row-price th { font-size: 0.95rem; }
.fee-table .fee-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); display: block; line-height: 1; }
.fee-table tbody tr:hover td:not(.featured) { background: var(--gold-pale); }
.fee-yes { color: var(--forest); font-weight: 700; }
.fee-no { color: var(--silver); }

.pkg-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; align-items: stretch; }
.pkg-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 20px; display: flex; flex-direction: column; transition: all var(--transition); }
.pkg-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.pkg-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-gold); }
.pkg-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); font-family: 'Montserrat', sans-serif; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; white-space: nowrap; }
.pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-dark); line-height: 1; margin-bottom: 4px; }
.pkg-was { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-decoration: line-through; margin-bottom: 14px; }
.pkg-card .pkg-spacer { margin-bottom: 14px; }
.pkg-list { display: flex; flex-direction: column; gap: 9px; margin: 6px 0 18px; flex: 1; }
.pkg-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.78rem; color: var(--text-body); line-height: 1.5; }
.pkg-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pkg-card .btn { width: 100%; }

/* 2-COLUMN FAQ (About / Fee tabs) */
.faq-list.faq-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.faq-list.faq-2col .faq-item { align-self: start; }

/* COPY / SELECTION PROTECTION (nominees & winners) */
body[data-protect] { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
body[data-protect] input, body[data-protect] textarea, body[data-protect] select { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }

/* ============================================================
   INLINE VIDEO COMPONENT (.vid) — thumbnail then inline play
   ============================================================ */
.vid { position: relative; aspect-ratio: 16 / 9; width: 100%; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; background: var(--navy); box-shadow: var(--shadow); }
.vid .vid-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, opacity var(--transition); opacity: 0.92; }
.vid:hover .vid-thumb { transform: scale(1.05); opacity: 1; }
.vid .vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%; border: none;
  background: rgba(200,149,42,0.95); color: var(--navy); font-size: 1.25rem; padding-left: 4px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 6px 22px rgba(0,0,0,0.4); transition: all var(--transition); z-index: 2;
}
.vid:hover .vid-play { background: var(--gold-light); transform: translate(-50%,-50%) scale(1.08); }
.vid-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.vid-card .vid { border-radius: 0; }
.vid-card-info { padding: 14px 16px; }
.vid-card-info .eyebrow { font-size: 0.6rem; margin-bottom: 4px; display: block; }
.vid-card-info h4 { font-size: 0.92rem; color: var(--primary); font-family: 'Montserrat', sans-serif; }

/* CARD HEADER: icon + heading on one line */
.card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-head h3, .card-head h4 { margin: 0; }
.card-head .ch-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius);
  background: linear-gradient(135deg,rgba(46,122,82,0.15),rgba(46,122,82,0.06));
  border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}

/* PACKAGE INCLUSIONS — product photo cards (whole product visible) */
.incl-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.incl-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.incl-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.incl-media { background: linear-gradient(135deg,var(--gold-pale),var(--beige)); display: flex; align-items: center; justify-content: center; height: 240px; padding: 20px; }
.incl-media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; box-shadow: none; }
.incl-media .incl-icon { font-size: 3.4rem; }
.incl-body { padding: 18px 20px 22px; }
.incl-body .card-head { margin-bottom: 8px; }
.incl-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* GALA HIGHLIGHTS + CTA (70/30) */
.gala-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.gala-hl-split { display: grid; grid-template-columns: 7fr 3fr; gap: 24px; align-items: stretch; margin-top: 24px; }
.gala-cta-box { background: linear-gradient(160deg,var(--primary),var(--navy)); border: 1px solid rgba(46,122,82,0.25); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; }
.gala-cta-box h3 { color: var(--white); margin-bottom: 8px; }
.gala-cta-box p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin-bottom: 14px; }
.gala-cta-box .spec-list li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.12); }
.gala-agenda-list { display: flex; flex-direction: column; gap: 0; }
.gala-agenda-list li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.gala-agenda-list li:last-child { border-bottom: none; }
.gala-agenda-time { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold-dark); flex-shrink: 0; width: 78px; }
.gala-agenda-text { font-size: 0.9rem; color: var(--text-body); }

/* JUDGING CRITERIA — weighted icon cards */
.criteria-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.criteria-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; transition: all var(--transition); position: relative; }
.criteria-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.criteria-card .crit-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.criteria-card .crit-icon { font-size: 1.6rem; }
.criteria-card .crit-weight { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.criteria-card h4 { font-size: 0.98rem; margin-bottom: 4px; }
.criteria-card p { font-size: 0.78rem; color: var(--text-muted); }
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }

/* CATEGORIES PAGE — per-sector image header */
.cat-section { margin-top: 54px; }
.cat-section-head { display: grid; grid-template-columns: 360px 1fr; gap: 32px; align-items: center; margin-bottom: 26px; }
.cat-section-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 10; position: relative; }
.cat-section-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.cat-section-img:hover img { transform: scale(1.05); }
.cat-section-intro .eyebrow { display: block; margin-bottom: 8px; }
.cat-section-intro h2 { margin-bottom: 12px; }
.cat-section-intro p { color: var(--text-muted); margin-bottom: 12px; }
.cat-count-badge { display: inline-block; }
@media (max-width: 760px) {
  .cat-section-head { grid-template-columns: 1fr; gap: 18px; }
  .cat-section-img { aspect-ratio: 16 / 9; }
}

/* VERTICAL LEFT-TAB FAQ PAGE (reuses shared .tab-btn / .tab-pane + initTabs) */
.vtab-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.vtab-nav { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 6px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow-sm); }
.vtab-nav .tab-btn {
  text-align: left; justify-content: flex-start; font-size: 0.8rem; text-transform: none; letter-spacing: 0.02em;
  color: var(--text-body); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
.vtab-nav .tab-btn::after { display: none; }
.vtab-nav .tab-btn:hover { background: var(--bg-light); color: var(--gold-dark); }
.vtab-nav .tab-btn.active { background: linear-gradient(135deg,var(--primary),var(--navy)); color: var(--white); }
.vtab-nav .tab-btn .vtab-ic { font-size: 1.1rem; }
@media (max-width: 800px) {
  .vtab-layout { grid-template-columns: 1fr; }
  .vtab-nav { position: static; flex-direction: row; overflow-x: auto; }
  .vtab-nav .tab-btn { white-space: nowrap; }
}

/* DIRECTORY / FEE / FACADE RESPONSIVE */
@media (max-width: 1100px) {
  .pkg-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1000px) {
  .criteria-grid { grid-template-columns: repeat(2,1fr); }
  .gala-split { grid-template-columns: 1fr; }
  .gala-hl-split { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .directory-filters { grid-template-columns: 1fr 1fr; }
  .directory-filters .dir-search { grid-column: 1 / -1; }
  .directory-table { font-size: 0.78rem; }
  .directory-table .col-industry, .directory-table .col-company { display: none; }
  .dir-detail-grid { grid-template-columns: repeat(2,1fr); }
  .faq-list.faq-2col { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .directory-filters { grid-template-columns: 1fr; }
  .directory-filters .dir-search { grid-column: auto; }
  .directory-table .col-region, .directory-table .col-year { display: none; }
  .pkg-grid { grid-template-columns: 1fr; }
  .dir-detail-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.animate-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; }
  .major-awards-grid { grid-template-columns: repeat(3,1fr); }
  .participate-grid { grid-template-columns: repeat(3,1fr); }
  .video-4-grid { grid-template-columns: repeat(2,1fr); }
  .highlights-split { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .major-awards-grid { grid-template-columns: repeat(2,1fr); }
  .participate-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .content-split { grid-template-columns: 1fr; gap: 32px; }
  .content-split.reverse { direction: ltr; }
  .video-grid { grid-template-columns: 1fr; }
  .category-full-card { grid-template-columns: 1fr; }
  .category-full-card img { width: 100%; height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .major-awards-grid { grid-template-columns: 1fr; }
  .participate-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero { height: 70vh; min-height: 480px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-banner-inner { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item::after { display: none; }
  .tab-bar { gap: 2px; }
  .tab-btn { font-size: 0.65rem; padding: 10px 12px; }
  .video-4-grid { grid-template-columns: 1fr; }
}
