/*
Theme Name: Blouberg Awards 2026
Theme URI: https://bloubergawards.co.za
Description: Official theme for the Blouberg Awards 2026 voting website.
Author: Studio IO
Version: 1.2.0
*/

/* ============================================================
   Google Fonts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS Variables — Blouberg Awards Palette
   ============================================================ */
:root {
    /* Deep royal blues from logo */
    --blue-darkest:  #040C32;
    --blue-dark:     #070E50;
    --blue:          #0A1468;
    --blue2:         #0D1880;
    --blue3:         #1020A0;
    --blue-mid:      #1530C0;
    --blue-light:    #1E44D8;
    --blue-bright:   #2855E8;

    /* Lustrous gold palette from logo */
    --gold-deep:     #7A5010;
    --gold-dark:     #A87020;
    --gold2:         #C49030;
    --gold3:         #D4A830;
    --gold:          #E8C040;
    --gold-bright:   #F5D458;
    --gold-light:    #FAE480;
    --gold-white:    #FFF0B0;

    /* Functional */
    --white:         #ffffff;
    --text:          #D8E0FF;
    --text-muted:    #8898CC;
    --border:        rgba(200,160,48,0.28);
    --border-bright: rgba(230,190,64,0.55);
    --radius:        12px;
    --shadow:        0 8px 40px rgba(0,0,0,0.55);
    --shadow-gold:   0 8px 32px rgba(200,160,48,0.25);

    /* Gradients */
    --grad-gold:     linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-bright) 45%, var(--gold-white) 65%, var(--gold-bright) 75%, var(--gold3) 100%);
    --grad-gold-h:   linear-gradient(90deg,  var(--gold-dark) 0%, var(--gold-bright) 45%, var(--gold-white) 65%, var(--gold3) 100%);
    --grad-blue:     linear-gradient(180deg, var(--blue-darkest) 0%, var(--blue) 40%, var(--blue2) 70%, var(--blue-darkest) 100%);
    --grad-blue-r:   radial-gradient(ellipse at 50% 40%, var(--blue-mid) 0%, var(--blue) 45%, var(--blue-dark) 75%, var(--blue-darkest) 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--blue-darkest);
    background-image:
        radial-gradient(ellipse at 15% 0%,   rgba(21,48,192,0.55) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 100%,  rgba(21,48,192,0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%,   rgba(10,20,104,0.7)  0%, transparent 80%),
        linear-gradient(175deg, #040C32 0%, #0A1468 35%, #070E50 65%, #040C32 100%);
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Raleway', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-bright); }

h1,h2,h3,h4,h5,h6 {
    font-family: 'Cinzel', Georgia, serif;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

p { margin-bottom: 16px; color: var(--text); }
ul, ol { margin: 0 0 16px 20px; }

/* ============================================================
   Layout
   ============================================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: transparent;
}

.section-darker {
    background: rgba(0,0,0,0.35);
    border-top:    1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-family: 'Cinzel', Georgia, serif;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 90px;
    height: 3px;
    background: var(--grad-gold-h);
    margin: 14px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(230,192,64,0.5);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 48px;
}

/* ============================================================
   Header / Navbar
   ============================================================ */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    overflow: visible;
    background: linear-gradient(180deg,
        rgba(4,12,50,0.97) 0%,
        rgba(7,14,80,0.96) 100%);
    border-bottom: 1px solid var(--border-bright);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.6),
                0 1px 0   rgba(230,192,64,0.15);
    transition: all 0.3s;
}

/* WordPress admin bar pushes fixed header down */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar #site-header { top: 46px; }
}

#site-header.scrolled {
    background: linear-gradient(180deg,
        rgba(4,12,50,0.99) 0%,
        rgba(4,8,52,0.99) 100%);
    box-shadow: 0 4px 32px rgba(0,0,0,0.7),
                0 1px 0   rgba(230,192,64,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    overflow: visible; /* was hidden — was clipping logo and its drop-shadow */
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    overflow: visible;
    max-width: 220px; /* was 160px — too tight for image + text lockup */
}

/* Desktop logo image */
.site-logo img,
.site-logo .site-logo-img,
.site-logo .custom-logo,
.site-logo-img {
    display: block;
    height: 64px !important;      /* reduced from 68px — sits cleanly in the 80px header */
    width: auto  !important;      /* was forced-square; auto preserves natural aspect ratio */
    max-width: none !important;   /* removed forced-square cap */
    max-height: 64px !important;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(230,192,64,0.45));
    transition: filter 0.3s, transform 0.3s;
}
.site-logo:hover img,
.site-logo:hover .site-logo-img,
.site-logo:hover .custom-logo {
    filter: drop-shadow(0 0 16px rgba(245,212,88,0.6));
}

/* Neutralise WP's custom-logo wrappers */
.site-logo .custom-logo-link,
.site-logo a[rel="home"] {
    display: contents;
    pointer-events: none;
}
.site-logo figure,
.site-logo .wp-block-site-logo {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    display: block;
}
.site-logo-text {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    line-height: 1.1;
}
.site-logo-text span {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    background: linear-gradient(90deg, var(--gold2), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Nav */
#site-nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0; padding: 0;
}
#site-nav ul li a {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.2s;
    text-transform: uppercase;
}
#site-nav ul li a:hover,
#site-nav ul li.current-menu-item > a {
    color: var(--gold-bright);
    background: rgba(200,160,48,0.1);
}

/* Vote CTA button in nav */
.nav-vote-btn {
    background: linear-gradient(135deg,
        var(--gold-dark) 0%, var(--gold-bright) 50%, var(--gold3) 100%) !important;
    color: var(--blue-darkest) !important;
    border-radius: 50px !important;
    padding: 8px 22px !important;
    box-shadow: 0 4px 16px rgba(200,160,48,0.3) !important;
    letter-spacing: 1px;
}
.nav-vote-btn:hover {
    box-shadow: 0 6px 24px rgba(200,160,48,0.5) !important;
    transform: translateY(-1px);
    filter: brightness(1.08);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold-bright);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   Hero Section
   ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%,  rgba(21,48,192,0.65) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%,  rgba(10,20,104,0.5)  0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%,  rgba(200,160,48,0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 20%,  rgba(200,160,48,0.08) 0%, transparent 40%),
        linear-gradient(160deg, #040C32 0%, #0A1468 35%, #0D1880 60%, #040C32 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(200,160,48,0.06) 45%,
        rgba(245,212,88,0.10) 50%,
        rgba(200,160,48,0.06) 55%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.hero-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-stars::before,
.hero-stars::after {
    content: '';
    position: absolute;
    width: 2px; height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        100px 200px #fff,        300px 100px #fff,        500px 300px #fff,
        700px 150px #fff,        900px 400px #fff,        150px 500px rgba(245,212,88,0.8),
        450px 600px #fff,        650px  50px rgba(245,212,88,0.7),
        800px 550px #fff,        200px 350px #fff,        950px 250px rgba(245,212,88,0.6),
         50px 700px #fff,        750px 700px rgba(245,212,88,0.8),
        350px 400px rgba(245,212,88,0.5), 1100px 120px #fff, 600px 480px rgba(245,212,88,0.4);
    animation: twinkle 4s infinite alternate;
}
.hero-stars::after {
    width: 1px; height: 1px;
    box-shadow:
         80px 120px rgba(245,212,88,0.6),  250px 450px #fff,
        600px 200px rgba(245,212,88,0.9),  850px  80px #fff,
        400px 750px rgba(245,212,88,0.5), 1050px 350px #fff,
        180px 620px rgba(200,160,48,0.7),  720px 320px rgba(245,212,88,0.4);
    animation-delay: 2s;
}
@keyframes twinkle {
    from { opacity: 0.3; }
    to   { opacity: 1;   }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
    max-width: 820px;
    margin: 0 auto;
}

.hero-year {
    display: inline-block;
    background: linear-gradient(135deg, rgba(200,160,48,0.15), rgba(200,160,48,0.08));
    border: 1px solid var(--border-bright);
    color: var(--gold-bright);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding: 7px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(200,160,48,0.12), inset 0 1px 0 rgba(245,212,88,0.2);
}

.hero-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(40px, 8vw, 76px);
    font-weight: 900;
    background: linear-gradient(160deg,
        var(--gold-dark)   0%,
        var(--gold-bright) 30%,
        var(--gold-white)  50%,
        var(--gold-bright) 65%,
        var(--gold3)       100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 30px rgba(200,160,48,0.3));
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(16px, 3vw, 24px);
    color: var(--text);
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0.85;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg,
        var(--gold-dark)   0%,
        var(--gold-bright) 40%,
        var(--gold-white)  55%,
        var(--gold-bright) 70%,
        var(--gold3)       100%);
    color: var(--blue-darkest);
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(200,160,48,0.35),
                inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}
.btn-gold:hover::before { left: 150%; }
.btn-gold:hover {
    color: var(--blue-darkest);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(200,160,48,0.5),
                inset 0 1px 0 rgba(255,255,255,0.35);
    filter: brightness(1.06);
}

.btn-outline {
    background: linear-gradient(135deg, rgba(200,160,48,0.08), rgba(200,160,48,0.04));
    color: var(--gold-bright);
    border: 1.5px solid var(--border-bright);
    box-shadow: 0 0 16px rgba(200,160,48,0.1),
                inset 0 1px 0 rgba(200,160,48,0.1);
}
.btn-outline:hover {
    background: linear-gradient(135deg, rgba(200,160,48,0.18), rgba(200,160,48,0.1));
    color: var(--gold-white);
    border-color: var(--gold-bright);
    box-shadow: 0 0 24px rgba(200,160,48,0.25);
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
    background: linear-gradient(180deg,
        rgba(0,0,0,0.5) 0%,
        rgba(4,12,50,0.6) 100%);
    border-top:    1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
    position: relative;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--grad-gold-h);
    opacity: 0.4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stat-item {
    padding: 16px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 44px;
    font-weight: 900;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    filter: drop-shadow(0 0 8px rgba(200,160,48,0.25));
}
.stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 600;
}

/* ============================================================
   Categories Grid (home)
   ============================================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.category-card {
    background: linear-gradient(160deg,
        rgba(21,48,192,0.18) 0%,
        rgba(10,20,104,0.12) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(200,160,48,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.category-card:hover {
    background: linear-gradient(160deg,
        rgba(21,48,192,0.30) 0%,
        rgba(10,20,104,0.22) 100%);
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(200,160,48,0.18),
                0  0  0 1px rgba(200,160,48,0.1);
}
.category-card:hover::before { opacity: 1; }
.category-icon { font-size: 32px; margin-bottom: 10px; }
.category-name {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

/* ============================================================
   Voting Cards
   ============================================================ */
.voting-card {
    background: linear-gradient(160deg,
        rgba(21,48,192,0.22) 0%,
        rgba(7,14,80,0.40)   100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.voting-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-gold-h);
    opacity: 0;
    transition: opacity 0.3s;
}
.voting-card:hover {
    border-color: var(--border-bright);
    box-shadow: 0 12px 36px rgba(200,160,48,0.2),
                0  0  0 1px rgba(200,160,48,0.08);
    transform: translateY(-2px);
}
.voting-card:hover::after { opacity: 1; }

.voting-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.voting-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ============================================================
   About Section
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image-wrap img {
    border-radius: var(--radius);
    border: 1px solid var(--border-bright);
    box-shadow: var(--shadow),
                0 0 0 1px rgba(200,160,48,0.1);
}
.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 8px);
    background: linear-gradient(135deg, rgba(200,160,48,0.05), transparent);
    z-index: -1;
}
.about-text h2 { font-size: 36px; }
.about-text p { color: var(--text-muted); font-size: 16px; line-height: 1.8; }

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.highlight-item {
    background: linear-gradient(135deg, rgba(21,48,192,0.2), rgba(7,14,80,0.3));
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    transition: border-color 0.25s;
}
.highlight-item:hover { border-color: var(--border-bright); }
.highlight-item .hi-icon  { font-size: 28px; margin-bottom: 8px; }
.highlight-item .hi-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.highlight-item .hi-text { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ============================================================
   Sponsors
   ============================================================ */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.sponsor-card {
    background: linear-gradient(160deg,
        rgba(21,48,192,0.16) 0%,
        rgba(7,14,80,0.24) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}
.sponsor-card:hover {
    background: linear-gradient(160deg,
        rgba(21,48,192,0.28) 0%,
        rgba(7,14,80,0.36) 100%);
    border-color: var(--border-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(200,160,48,0.18);
}
.sponsor-card img {
    max-height: 70px;
    width: auto;
    margin: 0 auto 12px;
    filter: brightness(0) invert(1);
    opacity: 0.65;
    transition: all 0.3s;
}
.sponsor-card:hover img { opacity: 1; filter: none; }
.sponsor-tier {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
}
.sponsor-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,160,48,0.15), rgba(200,160,48,0.06));
    border: 1px solid var(--border-bright);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(200,160,48,0.1);
}
.contact-info-text .label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}
.contact-info-text a,
.contact-info-text span { color: var(--text); font-size: 15px; }

/* Contact Form */
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 800;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: linear-gradient(135deg,
        rgba(21,48,192,0.18) 0%,
        rgba(7,14,80,0.28) 100%);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--border-bright);
    box-shadow: 0 0 0 3px rgba(200,160,48,0.1),
                0 0 16px rgba(200,160,48,0.1);
    background: linear-gradient(135deg,
        rgba(21,48,192,0.25) 0%,
        rgba(7,14,80,0.35) 100%);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(200,210,255,0.3); }

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
    padding: 148px 0 64px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(21,48,192,0.5) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--grad-gold-h);
    opacity: 0.35;
}
.page-hero h1 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    background: linear-gradient(160deg,
        var(--gold-dark) 0%,
        var(--gold-bright) 40%,
        var(--gold-white) 55%,
        var(--gold3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.page-hero p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================================
   Footer
   ============================================================ */
#site-footer {
    background: linear-gradient(180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(4,8,28,0.75) 100%);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
    position: relative;
}
#site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-gold-h);
    opacity: 0.4;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 16px; line-height: 1.8; }
.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    background: var(--grad-gold-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-bright); }

/* ── Footer Bottom ── */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 13px;
    gap: 8px;
}

.footer-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.footer-inline img {
    height: 28px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,160,48,0.12), rgba(200,160,48,0.06));
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--gold3);
    transition: all 0.25s;
}
.footer-social a:hover {
    background: var(--grad-gold);
    color: var(--blue-darkest);
    border-color: var(--gold-bright);
    box-shadow: 0 4px 16px rgba(200,160,48,0.35);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}
.breadcrumb a { color: var(--gold3); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   Misc / Utilities
   ============================================================ */
.gold-divider {
    width: 70px; height: 3px;
    background: var(--grad-gold-h);
    border-radius: 2px;
    margin: 0 auto 24px;
    box-shadow: 0 0 12px rgba(200,160,48,0.4);
}

.text-gold   { color: var(--gold-bright); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   WordPress core classes
   ============================================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 6px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.alignleft   { float: left;  margin: 0 20px 16px 0; }
.alignright  { float: right; margin: 0 0 16px 20px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 767px) {
    #site-nav {
        display: none;
        position: absolute;
        top: 80px; left: 0; right: 0;
        background: rgba(4,12,50,0.99);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(16px);
        padding: 16px;
    }
    #site-nav.open { display: block; }
    #site-nav ul { flex-direction: column; gap: 4px; }
    .nav-toggle { display: flex; }
    .hero-actions { flex-direction: column; align-items: center; }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-col ul { padding: 0; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-inline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Logo mobile */
    .site-logo img,
    .site-logo .site-logo-img,
    .site-logo .custom-logo,
    .site-logo-img {
        height: 48px !important;
        width: auto  !important;
        max-width: none !important;
        max-height: 48px !important;
    }

    .about-highlights { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2,1fr); }
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
}