/* ============================================================
   Canada's Automotive Awards — Main Stylesheet
   Design: Navy + Gold + White (high-trust, consumer-facing)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --navy:          #0D2340;
    --navy-mid:      #1A3A5C;
    --navy-light:    #1E4976;
    --navy-pale:     #EBF2FA;
    --gold:          #C9A96E;
    --gold-bright:   #E8C97A;
    --gold-dark:     #A8843A;
    --gold-bg:       #FDF8EE;
    --white:         #FFFFFF;
    --off-white:     #F5F7FA;
    --slate:         #6B7280;
    --slate-dark:    #374151;
    --border:        #E2E7F0;
    --border-gold:   rgba(201,169,110,0.3);
    --success:       #10B981;
    --success-bg:    #ECFDF5;
    --shadow-sm:     0 1px 3px rgba(13,35,64,0.08), 0 1px 2px rgba(13,35,64,0.04);
    --shadow-md:     0 4px 16px rgba(13,35,64,0.10), 0 2px 4px rgba(13,35,64,0.06);
    --shadow-lg:     0 10px 40px rgba(13,35,64,0.14), 0 4px 8px rgba(13,35,64,0.08);
    --shadow-gold:   0 8px 32px rgba(201,169,110,0.20);
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     28px;
    --pad-section:   clamp(72px, 8vw, 120px);
    --pad-h:         clamp(20px, 5vw, 60px);
    --nav-h:         84px;
    --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;
    --font-heading:  'DM Sans', system-ui, -apple-system, sans-serif;
    --font-display:  'DM Sans', system-ui, -apple-system, sans-serif;
    --transition:    0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--slate-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-light); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
main { flex: 1; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 800; }
h2 { font-size: clamp(22px, 3vw, 38px); }
h3 { font-size: clamp(18px, 2vw, 26px); }
h4 { font-size: 18px; }
p { color: var(--slate); line-height: 1.7; }

/* ── Container ──────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad-h);
}
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pad-h);
}
.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--pad-h);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13,35,64,0.25);
}
.btn-primary:hover {
    background: var(--navy-light);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(13,35,64,0.35);
    transform: translateY(-1px);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--navy);
    box-shadow: 0 12px 40px rgba(201,169,110,0.35);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: var(--white);
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    overflow: visible;  /* allows badge to overflow below */
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--pad-h);
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
/* Badge overflows below the nav bar */
.logo-badge-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-badge-img {
    height: 128px;  /* nav-h is 84px — overflows significantly, biased down */
    width: auto;
    position: relative;
    top: 18px;      /* bias overflow downward */
    filter: drop-shadow(0 4px 18px rgba(201,169,110,0.45));
    transition: transform 0.3s cubic-bezier(0.34,1.3,0.64,1), filter var(--transition);
    z-index: 2;
}
.site-logo:hover .logo-badge-img {
    transform: scale(1.07) rotate(-4deg);
    filter: drop-shadow(0 6px 20px rgba(201,169,110,0.55));
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-main {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.site-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
}
.site-nav ul a,
.site-nav ul button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-dark);
    transition: all var(--transition);
}
.site-nav ul a:hover,
.site-nav ul button:hover { background: var(--off-white); color: var(--navy); }
.has-dropdown { position: relative; }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.22s cubic-bezier(0.16,1,0.3,1);
    z-index: 100;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    padding: 6px 12px 4px;
    display: block;
}
.nav-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 8px;
}
.nav-dropdown li a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    color: var(--slate-dark);
}
.nav-dropdown li a:hover { background: var(--navy-pale); color: var(--navy); }
.nav-dropdown-all {
    font-weight: 600;
    color: var(--navy) !important;
}
/* Nav: "Nominate" accent link */
.nav-link-nominate {
    color: var(--gold-dark) !important;
    font-weight: 600 !important;
    text-decoration: underline;
    text-decoration-color: rgba(201,169,110,0.5);
    text-underline-offset: 3px;
    transition: all var(--transition);
}
.nav-link-nominate:hover {
    color: var(--gold-dark) !important;
    text-decoration-color: var(--gold-dark);
    background: var(--gold-bg) !important;
}
/* Nav: "Award Winners" bold toggle */
.nav-winners-toggle {
    font-weight: 700 !important;
    color: var(--navy) !important;
}
/* Dropdown region items */
.dropdown-region-flag { margin-right: 6px; }
.dropdown-coming-soon {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--navy-pale);
    color: var(--slate);
    padding: 2px 6px;
    border-radius: 50px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Nominate button in header */
.btn-nominate-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(201,169,110,0.3);
}
.btn-nominate-nav:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(201,169,110,0.45);
    transform: translateY(-1px);
}
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(145deg, #071929 0%, var(--navy) 40%, #112B4A 100%);
    padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
    position: relative;
    overflow: hidden;
}
.hero-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--pad-h);
    position: relative;
    z-index: 2;
}
/* Split layout: text left, badge right */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.hero-content { text-align: left; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 22px;
}
.eyebrow-star { color: var(--gold); font-size: 10px; }
.hero h1 {
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.15;
    font-family: var(--font-display);
}
.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright), var(--gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
/* Badge column */
.hero-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.hero-badge-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-badge-main {
    width: clamp(180px, 20vw, 260px);
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 20px rgba(201,169,110,0.35)) drop-shadow(0 16px 48px rgba(0,0,0,0.5));
    animation: hero-badge-float 6s ease-in-out infinite;
}
.hero-badge-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 70%);
    animation: hero-badge-pulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes hero-badge-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}
@keyframes hero-badge-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.12); }
}
.hero-badge-caption {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
/* Stats row */
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: clamp(32px, 5vw, 64px);
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}
.hero-stat-num span { color: var(--gold-bright); }
.hero-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
    display: block;
}

/* ── Nominations Band ────────────────────────────────────────── */
.nominate-band {
    background: var(--gold-bg);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 16px 0;
}
.nominate-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.nominate-band-text {
    font-size: 14px;
    color: var(--slate-dark);
}
.nominate-band-text strong { color: var(--navy); }

/* ── Section Styles ──────────────────────────────────────────── */
.section { padding: var(--pad-section) 0; }
.section-alt { background: var(--white); }
.section-navy {
    background: var(--navy);
    color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.7); }
.section-gold { background: var(--gold-bg); }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
}
.section-navy .section-eyebrow { color: var(--gold-bright); }
.section-header p {
    font-size: 18px;
    max-width: 560px;
    margin: 14px auto 0;
}

/* ── City Grid ───────────────────────────────────────────────── */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.city-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
}
.city-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.city-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: inherit;
}
.city-card:hover::before { transform: scaleX(1); }
.city-card-flag { font-size: 28px; margin-bottom: 10px; }
.city-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    display: block;
}
.city-card-province {
    font-size: 12px;
    color: var(--slate);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    display: block;
}
.city-card-count {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

/* ── Nominee Badge on Dealer Cards ──────────────────────────── */
.dealer-card-nominee-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(232,201,122,0.08));
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    flex-shrink: 0;
}
/* Nominate button on dealer cards */
.btn-nominate-card {
    background: transparent;
    border: 1.5px solid var(--border-gold);
    color: var(--gold-dark);
    font-weight: 600;
    transition: all var(--transition);
}
.btn-nominate-card:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-color: transparent;
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,169,110,0.3);
}
/* Nominate button on dealer profile */
.btn-nominate-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(201,169,110,0.25);
}
.btn-nominate-primary:hover {
    box-shadow: 0 6px 24px rgba(201,169,110,0.45);
    transform: translateY(-2px);
}
.contact-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0 12px;
}
.contact-nominate-label {
    font-size: 12px;
    color: var(--slate);
    text-align: center;
    margin-bottom: 10px;
}

/* ── Badge Showcase Section ──────────────────────────────────── */
.badge-showcase-section {
    background: var(--navy);
}
.badge-showcase-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: center;
}
.badge-showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.badge-showcase-glow {
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.badge-showcase-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 32px rgba(201,169,110,0.4)) drop-shadow(0 24px 60px rgba(0,0,0,0.5));
    animation: hero-badge-float 6s ease-in-out infinite;
}
.badge-showcase-content .section-eyebrow { color: var(--gold-bright); }
.badge-showcase-content h2 { color: var(--white); font-family: var(--font-display); margin-bottom: 16px; }
.badge-showcase-content p { color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.badge-showcase-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.badge-showcase-actions .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}
.badge-showcase-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

/* ── Dealer Cards ────────────────────────────────────────────── */
.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.dealer-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.dealer-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.dealer-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.dealer-card-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--navy-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    font-family: var(--font-heading);
}
.dealer-card-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--success-bg);
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    flex-shrink: 0;
}
.dealer-card-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}
.dealer-card-address {
    font-size: 13px;
    color: var(--slate);
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 14px;
}
.dealer-card-desc {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dealer-card-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.dealer-card-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.dealer-card-footer .btn { flex: 1; justify-content: center; font-size: 13.5px; padding: 9px 14px; }

/* ── Award Category Cards ────────────────────────────────────── */
.award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.award-cat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}
.award-cat-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: inherit;
}
.award-cat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.award-cat-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.award-cat-desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Winner Spotlight ────────────────────────────────────────── */
.winner-spotlight {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(36px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.winner-spotlight::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(201,169,110,0.06);
}
.winner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 16px;
}
.winner-spotlight h2 {
    color: var(--white);
    font-size: clamp(22px, 3vw, 34px);
    margin-bottom: 12px;
}
.winner-spotlight .winner-address {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 16px;
}
.winner-citation {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    margin-bottom: 28px;
    font-style: italic;
}
.winner-badge-col {
    text-align: center;
    flex-shrink: 0;
}
.winner-badge-img {
    width: clamp(180px, 20vw, 260px);
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(201,169,110,0.4));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Breadcrumbs ─────────────────────────────────────────────── */
.breadcrumbs {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--slate);
}
.breadcrumbs-inner a { color: var(--slate); }
.breadcrumbs-inner a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--navy); font-weight: 500; }

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
    background: var(--white);
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--border);
}
.page-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p {
    font-size: 17px;
    max-width: 640px;
    color: var(--slate);
}

/* ── Filter tabs ─────────────────────────────────────────────── */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--slate-dark);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.filter-tab:hover, .filter-tab.active {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}
.filter-tabs-scroll {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.filter-tabs-scroll::-webkit-scrollbar { display: none; }

/* ── Award Tags / Badges (inline) ────────────────────────────── */
.award-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1.5px solid;
    white-space: nowrap;
}
.award-tag.rank-gold {
    color: #856A1A;
    background: #FFF8E1;
    border-color: #F0D060;
}
.award-tag.rank-silver {
    color: #4B5563;
    background: #F3F4F6;
    border-color: #D1D5DB;
}
.award-tag.rank-bronze {
    color: #78350F;
    background: #FEF3C7;
    border-color: #FBBF24;
}

/* ── How It Works ────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}
.step-card {
    text-align: center;
    padding: 32px 24px;
}
.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { font-size: 14px; }

/* ── CTA Band ─────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 64px 0;
    text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 32px; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Related Awards ──────────────────────────────────────────── */
.related-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.related-award-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-decoration: none;
    display: block;
    transition: all var(--transition);
}
.related-award-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    color: inherit;
}
.related-award-card .award-icon { font-size: 24px; margin-bottom: 10px; }
.related-award-card h4 { font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.related-award-card .winner { font-size: 12px; color: var(--slate); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    margin-top: auto;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px var(--pad-h) 48px;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-brand .logo-main { color: var(--white); font-size: 22px; }
.footer-brand .logo-sub { color: var(--gold); font-size: 11px; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px var(--pad-h);
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }

/* ── Nomination Modal ────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,14,26,0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,169,110,0.15);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}
.modal-header {
    background: linear-gradient(145deg, #071929 0%, var(--navy) 100%);
    padding: 28px 32px 24px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.modal-header-badge {
    width: 64px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(201,169,110,0.4));
}
.modal-header-text { flex: 1; }
.modal-header-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 6px;
    display: block;
}
.modal-header h3 {
    color: var(--white);
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.modal-header h3 span {
    color: var(--gold-bright);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all var(--transition);
}
.modal-close:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.modal-body {
    padding: 28px 32px 32px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}
.form-group label .required {
    color: #E05252;
    margin-left: 3px;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--slate-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-control::placeholder { color: #9CA3AF; }
textarea.form-control { resize: vertical; min-height: 90px; line-height: 1.6; }
select.form-control { cursor: pointer; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-hint {
    font-size: 12px;
    color: var(--slate);
    margin-top: 5px;
}
.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(201,169,110,0.3);
    margin-top: 8px;
}
.modal-submit:hover {
    box-shadow: 0 6px 24px rgba(201,169,110,0.5);
    transform: translateY(-1px);
}
.modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.modal-success {
    text-align: center;
    padding: 40px 32px;
}
.modal-success-icon {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
}
.modal-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
}
.modal-success p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6;
}
.modal-error-msg {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 13px;
    color: #DC2626;
    margin-bottom: 16px;
    display: none;
}
.modal-error-msg.visible { display: block; }

/* ── About & Nominate page styles ────────────────────────────── */
.page-section {
    padding: var(--pad-section) 0;
}
.page-section-alt { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.about-badge-col {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.about-badge-img {
    width: 100%;
    max-width: 280px;
    filter: drop-shadow(0 8px 32px rgba(201,169,110,0.35));
    animation: hero-badge-float 6s ease-in-out infinite;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}
.about-stat-card {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}
.about-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-bright);
    display: block;
    line-height: 1;
}
.about-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
    display: block;
}
.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--navy);
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-gold);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 16px;
}
.prose ul {
    list-style: none;
    margin: 0 0 20px;
}
.prose ul li {
    padding: 8px 0 8px 24px;
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid var(--off-white);
}
.prose ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold);
    font-size: 10px;
}
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.criteria-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 22px 20px;
}
.criteria-icon { font-size: 28px; margin-bottom: 12px; }
.criteria-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.criteria-card p { font-size: 13px; color: var(--slate); margin: 0; line-height: 1.55; }
/* Nominate page form */
.nominate-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: var(--shadow-lg);
}
.nominate-dealer-search {
    position: relative;
}
.dealer-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 240px;
    overflow-y: auto;
    display: none;
}
.dealer-search-results.open { display: block; }
.dealer-result-item {
    padding: 11px 14px;
    cursor: pointer;
    transition: background var(--transition);
    border-bottom: 1px solid var(--border);
}
.dealer-result-item:last-child { border-bottom: none; }
.dealer-result-item:hover { background: var(--navy-pale); }
.dealer-result-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.dealer-result-city { font-size: 12px; color: var(--slate); }

/* ── Dealer Value Section ────────────────────────────────────── */
.dealer-value-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(48px, 6vw, 80px);
    align-items: center;
}
.dealer-value-list {
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dealer-value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.dealer-value-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gold-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dealer-value-item strong {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    font-size: 15px;
}
.dealer-value-item p { font-size: 14px; margin: 0; }
/* Mock dealer card on right */
.dealer-value-visual {
    display: flex;
    justify-content: center;
}
.dealer-value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(201,169,110,0.12);
    max-width: 300px;
    width: 100%;
    position: relative;
}
.dealer-value-card::before {
    content: '✦ Leaderspin Award Winner';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    white-space: nowrap;
}
.dealer-value-card-badge {
    margin: 8px auto 16px;
    display: flex;
    justify-content: center;
}
.dealer-value-card h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 4px;
}
.dealer-value-card-city {
    font-size: 12px;
    color: var(--slate);
    margin-bottom: 14px;
}
.dealer-value-card-award { margin-bottom: 14px; }
.dealer-value-card-desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
    margin-bottom: 18px;
}
.dealer-value-card-cta { display: flex; justify-content: center; }

/* ── Utility ─────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Animations ──────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .badge-showcase-grid { grid-template-columns: 200px 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-badge-col { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .winner-spotlight { grid-template-columns: 1fr; }
    .winner-badge-col { order: -1; }
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-badge-col { order: -1; }
    .hero-stats { justify-content: center; }
    .hero-stat { text-align: center; }
    .badge-showcase-grid { grid-template-columns: 1fr; text-align: center; }
    .badge-showcase-visual { order: -1; }
    .badge-showcase-actions { justify-content: center; }
    .dealer-value-grid { grid-template-columns: 1fr; }
    .dealer-value-visual { order: -1; }
}
@media (max-width: 768px) {
    :root { --nav-h: 72px; }
    .site-nav {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 16px var(--pad-h) 24px;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
    }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; gap: 2px; }
    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--off-white);
        border-radius: var(--radius-sm);
        margin-top: 4px;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    .has-dropdown.open .nav-dropdown { display: block; }
    .nav-dropdown-label { padding-top: 8px; }
    .nav-mobile-toggle { display: flex; }
    .btn-nominate-nav { display: none; }
    .city-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .hero-stats { gap: 20px; }
    .dealer-grid { grid-template-columns: 1fr; }
    .nominate-band-inner { flex-direction: column; text-align: center; gap: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .modal-header { padding: 20px 20px 18px; gap: 14px; }
    .modal-body { padding: 20px; }
    .modal-header-badge { width: 48px; }
}
@media (max-width: 480px) {
    .footer-nav { grid-template-columns: 1fr; }
    .filter-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
    .award-grid { grid-template-columns: 1fr; }
    .hero-split { gap: 28px; }
    .criteria-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
