/*
Theme Name: HotelsBookie
Theme URI: https://hotelsbookie.com
Author: HotelsBookie
Author URI: https://hotelsbookie.com
Description: The Hotel Price Bookie — A premium WordPress theme for HotelsBookie.com. Inspired by ASTA.org design principles. Navy and gold editorial design with utility bar, sticky navigation, hero section, and content cards.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hotelsbookie
Tags: blog, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, travel, news, magazine

*/

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

:root {
    --hb-navy:        #0B1F3A;
    --hb-navy-mid:    #163255;
    --hb-navy-dark:   #07131F;
    --hb-gold:        #C9A84C;
    --hb-gold-light:  #E8C97A;
    --hb-gold-pale:   #F9F3E3;
    --hb-white:       #FFFFFF;
    --hb-offwhite:    #F7F5F0;
    --hb-text-dark:   #0B1F3A;
    --hb-text-mid:    #4A5568;
    --hb-text-light:  #718096;
    --hb-border:      #E2D9C8;
    --hb-font-display: 'Playfair Display', Georgia, serif;
    --hb-font-body:    'DM Sans', sans-serif;
    --hb-shadow-sm:    0 2px 12px rgba(11,31,58,0.07);
    --hb-shadow-md:    0 8px 28px rgba(11,31,58,0.12);
    --hb-radius:       10px;
    --hb-radius-sm:    4px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--hb-font-body);
    background: var(--hb-offwhite);
    color: var(--hb-text-dark);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--hb-font-body); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--hb-font-display);
    color: var(--hb-navy);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(36px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.5vw, 34px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 15px; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote { margin-bottom: 1.5em; }

.entry-content ul,
.entry-content ol {
    padding-left: 1.5em;
    list-style: revert;
}

.entry-content blockquote {
    border-left: 4px solid var(--hb-gold);
    padding: 16px 24px;
    background: var(--hb-gold-pale);
    border-radius: 0 var(--hb-radius-sm) var(--hb-radius-sm) 0;
    font-style: italic;
    color: var(--hb-text-mid);
}

/* ============================================================
   UTILITY BAR
============================================================ */
.hb-utility-bar {
    background: var(--hb-navy-dark);
    padding: 0 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    position: relative;
    z-index: 200;
}

.hb-become-bookie {
    background: var(--hb-gold);
    color: var(--hb-navy-dark);
    font-size: 11.5px;
    font-weight: 700;
    padding: 0 24px;
    height: 44px;
    display: flex;
    align-items: center;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-left: -40px;
}
.hb-become-bookie:hover { background: var(--hb-gold-light); color: var(--hb-navy-dark); }

.hb-utility-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.hb-utility-link {
    color: rgba(255,255,255,0.72);
    font-size: 12.5px;
    font-weight: 400;
    padding: 0 15px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-left: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s, background 0.2s;
}
.hb-utility-link:hover { color: var(--hb-gold-light); background: rgba(255,255,255,0.04); }
.hb-utility-link svg { flex-shrink: 0; }

.hb-utility-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--hb-radius-sm);
    height: 30px;
    margin-left: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.hb-utility-search:focus-within { border-color: var(--hb-gold); }
.hb-utility-search svg { margin-left: 10px; color: rgba(255,255,255,0.45); flex-shrink: 0; }
.hb-utility-search input {
    background: none;
    border: none;
    outline: none;
    color: rgba(255,255,255,0.85);
    font-family: var(--hb-font-body);
    font-size: 12px;
    padding: 0 12px 0 8px;
    width: 160px;
}
.hb-utility-search input::placeholder { color: rgba(255,255,255,0.38); }

/* ============================================================
   MAIN NAVIGATION
============================================================ */
.hb-site-header {
    background: var(--hb-white);
    border-bottom: 1px solid var(--hb-border);
    position: sticky;
    top: 0;
    z-index: 150;
    box-shadow: var(--hb-shadow-sm);
}

.hb-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 66px;
    max-width: 1400px;
    margin: 0 auto;
}

.hb-site-branding { display: flex; flex-direction: column; line-height: 1.1; }
.hb-site-name {
    font-family: var(--hb-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--hb-navy);
    letter-spacing: -0.02em;
}
.hb-site-name span { color: var(--hb-gold); }
.hb-site-tagline {
    font-size: 9.5px;
    font-weight: 500;
    color: var(--hb-gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hb-primary-nav { display: flex; gap: 28px; align-items: center; }
.hb-primary-nav a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--hb-text-mid);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.hb-primary-nav a:hover,
.hb-primary-nav .current-menu-item > a,
.hb-primary-nav .current_page_item > a {
    color: var(--hb-navy);
    border-bottom-color: var(--hb-gold);
}

.hb-nav-cta {
    background: var(--hb-navy);
    color: var(--hb-white) !important;
    border: none;
    padding: 10px 20px;
    border-radius: var(--hb-radius-sm);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background 0.2s;
    border-bottom: none !important;
}
.hb-nav-cta:hover { background: var(--hb-gold) !important; color: var(--hb-navy) !important; }

/* Mobile hamburger */
.hb-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    color: var(--hb-navy);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hb-hero {
    background-color: var(--hb-navy);
    padding: 72px 40px 64px;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hb-hero-bg-circle {
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 64px solid rgba(201,168,76,0.06);
    pointer-events: none;
}
.hb-hero-bg-circle-2 {
    position: absolute;
    left: 38%; bottom: -120px;
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 36px solid rgba(201,168,76,0.04);
    pointer-events: none;
}

.hb-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--hb-gold-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hb-hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 3px; height: 18px;
    background: var(--hb-gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.hb-hero h1 {
    color: #FFFFFF;
    font-size: clamp(38px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hb-hero h1 em {
    font-style: normal;
    color: var(--hb-gold-light);
}

.hb-hero-sub {
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
}

.hb-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hb-btn-primary {
    background: var(--hb-gold);
    color: var(--hb-navy-dark);
    padding: 13px 26px;
    border-radius: var(--hb-radius-sm);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    border: none;
}
.hb-btn-primary:hover { background: var(--hb-gold-light); transform: translateY(-1px); color: var(--hb-navy-dark); }

.hb-btn-ghost {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.hb-btn-ghost::after { content: '→'; }
.hb-btn-ghost:hover { color: var(--hb-gold-light); }

/* Hero card */
.hb-hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--hb-radius);
    padding: 26px;
    position: relative;
    z-index: 2;
}
.hb-hero-card-label {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hb-gold);
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.hb-bookie-pick {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hb-bookie-pick:last-child { border-bottom: none; padding-bottom: 0; }

.hb-pick-badge {
    background: var(--hb-gold);
    color: var(--hb-navy-dark);
    font-size: 9.5px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 3px;
    white-space: nowrap;
    margin-top: 2px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.hb-pick-badge.verdict { background: rgba(201,168,76,0.18); color: var(--hb-gold-light); }
.hb-pick-badge.alert   { background: rgba(220,60,60,0.22);  color: #FF8A8A; }
.hb-pick-badge.strategy { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }

.hb-pick-text { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.75); }
.hb-pick-text strong { color: #FFFFFF; display: block; margin-bottom: 3px; font-weight: 500; font-size: 13.5px; }

/* ============================================================
   STATS BAR
============================================================ */
.hb-stats-bar {
    background: var(--hb-gold-pale);
    border-bottom: 1px solid var(--hb-border);
    padding: 22px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hb-stat-item { text-align: center; }
.hb-stat-num {
    font-family: var(--hb-font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--hb-navy);
    display: block;
    line-height: 1.2;
}
.hb-stat-label {
    font-size: 11px;
    color: var(--hb-text-light);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.hb-stat-divider { width: 1px; height: 40px; background: var(--hb-border); }

/* ============================================================
   SECTIONS
============================================================ */
.hb-section {
    padding: 64px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hb-section-full { background: var(--hb-white); }
.hb-section-full .hb-section { max-width: 1400px; }

.hb-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
}
.hb-section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hb-gold);
    margin-bottom: 6px;
}
.hb-section-title {
    font-family: var(--hb-font-display);
    font-size: 27px;
    font-weight: 700;
    color: var(--hb-navy);
    line-height: 1.25;
}
.hb-see-all {
    font-size: 13px;
    color: var(--hb-gold);
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.hb-see-all::after { content: '→'; }
.hb-see-all:hover { color: var(--hb-navy); }

/* ============================================================
   CARDS GRID
============================================================ */
.hb-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hb-card {
    background: var(--hb-white);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.hb-section-full .hb-card { background: var(--hb-offwhite); }
.hb-card:hover { box-shadow: var(--hb-shadow-md); transform: translateY(-4px); }

.hb-card-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--hb-navy-mid);
}
.hb-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.hb-card:hover .hb-card-thumbnail img { transform: scale(1.04); }

.hb-card-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.hb-card-cat-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 9.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hb-cat-pick     { background: var(--hb-gold); color: var(--hb-navy-dark); }
.hb-cat-verdict  { background: rgba(255,255,255,0.18); color: #FFFFFF; }
.hb-cat-strategy { background: var(--hb-navy-dark); color: var(--hb-gold); border: 1px solid var(--hb-gold); }
.hb-cat-alert    { background: rgba(220,60,60,0.85); color: #FFFFFF; }

.hb-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.hb-card-title {
    font-family: var(--hb-font-display);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--hb-navy);
    line-height: 1.4;
    margin-bottom: 9px;
    transition: color 0.2s;
}
.hb-card:hover .hb-card-title { color: var(--hb-gold); }
.hb-card-excerpt {
    font-size: 13.5px;
    color: var(--hb-text-mid);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}
.hb-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: var(--hb-text-light);
    border-top: 1px solid var(--hb-border);
    padding-top: 13px;
}
.hb-card-read { color: var(--hb-gold); font-weight: 500; }

/* ============================================================
   IDENTITY / CTA BANNER
============================================================ */
.hb-id-banner {
    background: var(--hb-navy);
    color: #FFFFFF;
    padding: 64px 40px;
}
.hb-id-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.hb-id-banner h2 {
    font-family: var(--hb-font-display);
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #FFFFFF;
}
.hb-id-banner h2 span { color: var(--hb-gold-light); }
.hb-id-banner p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }

.hb-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hb-pillar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.16);
    border-radius: 8px;
    padding: 18px;
    transition: background 0.2s;
}
.hb-pillar:hover { background: rgba(255,255,255,0.09); }
.hb-pillar-icon { font-size: 22px; margin-bottom: 8px; }
.hb-pillar-name { font-size: 13px; font-weight: 500; color: var(--hb-gold-light); margin-bottom: 4px; }
.hb-pillar-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ============================================================
   SINGLE POST / ARTICLE
============================================================ */
.hb-single-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 40px;
    align-items: start;
}

.hb-post-header {
    background: var(--hb-navy);
    padding: 56px 40px 48px;
    color: #FFFFFF;
}
.hb-post-header-inner { max-width: 900px; margin: 0 auto; }
.hb-post-cat-badge {
    display: inline-block;
    background: var(--hb-gold);
    color: var(--hb-navy-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hb-post-title {
    font-family: var(--hb-font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hb-post-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    flex-wrap: wrap;
}
.hb-post-meta-bar span { display: flex; align-items: center; gap: 5px; }

.hb-entry-content {
    background: var(--hb-white);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    padding: 40px 44px;
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--hb-text-mid);
}
.hb-entry-content h2,
.hb-entry-content h3,
.hb-entry-content h4 { color: var(--hb-navy); margin: 2em 0 0.75em; }

/* Bookie Verdict box inside posts */
.hb-verdict-box {
    background: var(--hb-gold-pale);
    border: 1px solid var(--hb-border);
    border-left: 4px solid var(--hb-gold);
    border-radius: 0 var(--hb-radius) var(--hb-radius) 0;
    padding: 24px 28px;
    margin: 2em 0;
}
.hb-verdict-box-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hb-gold);
    margin-bottom: 10px;
}

/* ============================================================
   SIDEBAR
============================================================ */
.hb-sidebar { position: sticky; top: 80px; }
.hb-widget {
    background: var(--hb-white);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    padding: 24px;
    margin-bottom: 24px;
}
.hb-widget-title {
    font-family: var(--hb-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--hb-navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--hb-gold);
}
.hb-widget-cta {
    background: var(--hb-navy);
    color: #FFFFFF !important;
    border-radius: var(--hb-radius);
    padding: 28px 24px;
    text-align: center;
}
.hb-widget-cta h3 { color: #FFFFFF; font-size: 18px; margin-bottom: 10px; }
.hb-widget-cta p { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 18px; }

/* ============================================================
   ARCHIVE / BLOG
============================================================ */
.hb-archive-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.hb-archive-header {
    background: var(--hb-navy);
    padding: 48px 40px;
    color: #FFFFFF;
    margin-bottom: 0;
}
.hb-archive-header h1 {
    color: #FFFFFF;
    font-size: 36px;
    margin-bottom: 8px;
}
.hb-archive-header p { color: rgba(255,255,255,0.65); font-size: 15px; }

.hb-post-list { display: flex; flex-direction: column; gap: 24px; }

.hb-post-list-item {
    background: var(--hb-white);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
    transition: box-shadow 0.2s, transform 0.2s;
}
.hb-post-list-item:hover { box-shadow: var(--hb-shadow-md); transform: translateY(-2px); }
.hb-post-list-thumb { height: 100%; min-height: 160px; overflow: hidden; background: var(--hb-navy-mid); }
.hb-post-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hb-post-list-body { padding: 22px 24px; display: flex; flex-direction: column; justify-content: space-between; }
.hb-post-list-cat {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    background: var(--hb-gold);
    color: var(--hb-navy-dark);
    padding: 3px 9px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hb-post-list-title { font-family: var(--hb-font-display); font-size: 18px; font-weight: 600; color: var(--hb-navy); margin-bottom: 8px; line-height: 1.35; }
.hb-post-list-excerpt { font-size: 13.5px; color: var(--hb-text-mid); line-height: 1.6; margin-bottom: 14px; }
.hb-post-list-meta { font-size: 11.5px; color: var(--hb-text-light); display: flex; gap: 16px; }

/* ============================================================
   PAGINATION
============================================================ */
.hb-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 40px 0 0;
}
.hb-pagination a,
.hb-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--hb-radius-sm);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--hb-border);
    background: var(--hb-white);
    color: var(--hb-text-mid);
    transition: all 0.2s;
}
.hb-pagination a:hover { border-color: var(--hb-gold); color: var(--hb-navy); }
.hb-pagination .current { background: var(--hb-navy); color: var(--hb-white); border-color: var(--hb-navy); }

/* ============================================================
   FOOTER
============================================================ */
.hb-site-footer { background: var(--hb-navy-dark); }

.hb-footer-main {
    padding: 56px 40px 40px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.hb-footer-logo {
    font-family: var(--hb-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    display: block;
}
.hb-footer-logo span { color: var(--hb-gold); }
.hb-footer-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.4); margin-bottom: 20px; }

.hb-footer-social { display: flex; gap: 10px; }
.hb-social-link {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
}
.hb-social-link:hover { background: var(--hb-gold); color: var(--hb-navy-dark); border-color: var(--hb-gold); }

.hb-footer-col-title {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hb-gold);
    margin-bottom: 16px;
}
.hb-footer-links li { margin-bottom: 9px; }
.hb-footer-links a {
    color: rgba(255,255,255,0.44);
    font-size: 13px;
    transition: color 0.2s;
}
.hb-footer-links a:hover { color: var(--hb-gold-light); }

.hb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================
   FORMS
============================================================ */
.hb-newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 16px;
}
.hb-newsletter-form input[type="email"] {
    flex: 1;
    padding: 11px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    background: rgba(255,255,255,0.07);
    color: #FFFFFF;
    font-family: var(--hb-font-body);
    font-size: 13px;
    border-radius: var(--hb-radius-sm) 0 0 var(--hb-radius-sm);
    outline: none;
    transition: border-color 0.2s;
}
.hb-newsletter-form input[type="email"]:focus { border-color: var(--hb-gold); }
.hb-newsletter-form input::placeholder { color: rgba(255,255,255,0.38); }
.hb-newsletter-form button {
    background: var(--hb-gold);
    color: var(--hb-navy-dark);
    border: none;
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0 var(--hb-radius-sm) var(--hb-radius-sm) 0;
    transition: background 0.2s;
}
.hb-newsletter-form button:hover { background: var(--hb-gold-light); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .hb-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .hb-footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hb-single-wrap,
    .hb-archive-wrap { grid-template-columns: 1fr; }
    .hb-sidebar { position: static; }
}

@media (max-width: 900px) {
    .hb-hero { grid-template-columns: 1fr; padding: 56px 24px 48px; gap: 36px; }
    .hb-id-banner-inner { grid-template-columns: 1fr; gap: 36px; }
    .hb-utility-bar { padding: 0 20px; }
    .hb-become-bookie { margin-left: -20px; padding-left: 20px; font-size: 10.5px; }
    .hb-nav-inner { padding: 0 20px; }
    .hb-primary-nav { display: none; }
    .hb-primary-nav.open { display: flex; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: var(--hb-white); border-bottom: 1px solid var(--hb-border); padding: 16px 20px; gap: 4px; box-shadow: var(--hb-shadow-md); }
    .hb-primary-nav.open a { padding: 10px 0; border-bottom: 1px solid var(--hb-border) !important; }
    .hb-menu-toggle { display: flex; }
    .hb-nav-cta { display: none; }
    .hb-section { padding: 48px 24px; }
    .hb-stats-bar { flex-wrap: wrap; gap: 20px; padding: 20px 24px; }
    .hb-stat-divider { display: none; }
}

@media (max-width: 640px) {
    .hb-cards-grid { grid-template-columns: 1fr; }
    .hb-pillars { grid-template-columns: 1fr; }
    .hb-post-list-item { grid-template-columns: 1fr; }
    .hb-post-list-thumb { min-height: 180px; }
    .hb-footer-main { grid-template-columns: 1fr; }
    .hb-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .hb-utility-right { gap: 0; }
    .hb-utility-link { padding: 0 10px; font-size: 11.5px; }
    .hb-utility-search { display: none; }
    .hb-become-bookie { font-size: 10px; letter-spacing: 0.04em; }
    .hb-single-wrap,
    .hb-archive-wrap { padding: 24px 16px; }
}

/* ============================================================
   WORDPRESS CORE CLASSES
============================================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--hb-text-light); text-align: center; margin-top: 6px; font-style: italic; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.sticky { /* WordPress sticky post */ }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
