/*
Theme Name: Global Events Updates
Theme URI: https://globaleventsupdates.org
Author: CIN Universe
Author URI: https://cinuniverse.com
Description: Professional conference intelligence and hotel booking theme for GlobalEventsUpdates.org. EEAT-optimised, schema-ready, conversion-focused.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: globalevents
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --navy:       #0d2b4e;
  --navy-mid:   #1a3c5e;
  --navy-light: #2a527e;
  --gold:       #c8922a;
  --gold-light: #e8b44a;
  --cream:      #f8f6f1;
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-800:   #1f2937;
  --green:      #166534;
  --red:        #991b1b;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);

  --max-w:      1200px;
  --gutter:     24px;
  --section-py: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-mid); text-decoration: none; }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section { padding: var(--section-py) 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--cream { background: var(--cream); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* =============================================
   SITEWIDE DISCLAIMER BAR
   ============================================= */
.disclaimer-bar {
  background: #fff3cd;
  border-bottom: 1px solid #ffc107;
  padding: 8px 0;
  font-size: 0.78rem;
  color: #664d03;
  text-align: center;
}
.disclaimer-bar strong { font-weight: 600; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  color: var(--navy);
  font-family: var(--font-display);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span { color: var(--gold-light); display: block; font-size: 0.7rem; font-family: var(--font-body); font-weight: 400; letter-spacing: .05em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
  letter-spacing: .01em;
}
.main-nav a:hover, .main-nav a.current { background: rgba(255,255,255,.1); color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.mobile-menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1.4rem; padding: 8px;
}

/* =============================================
   HERO — HOMEPAGE
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4976 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,42,.2);
  border: 1px solid rgba(200,146,42,.4);
  color: var(--gold-light);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: '●'; font-size: .5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { color: rgba(255,255,255,.8); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; }

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

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 36px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold-light); display: block;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }

/* Quick Book Widget */
.hero-booking-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.widget-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.widget-subtitle { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.form-group select,
.form-group input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem; font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color .15s;
  appearance: none;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(26,60,94,.12);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer; transition: all .18s;
  text-decoration: none; line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,146,42,.35); }

.btn-secondary {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }

.btn-outline {
  background: transparent; color: var(--navy-mid);
  border-color: var(--navy-mid);
}
.btn-outline:hover { background: var(--navy-mid); color: var(--white); }

.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: 0.84rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* =============================================
   CONFERENCE CARDS
   ============================================= */
.conference-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.conference-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-header {
  background: var(--navy);
  padding: 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.card-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em;
}
.card-year { font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,.12); font-family: var(--font-display); }

.card-body { padding: 24px; }
.card-title { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.card-meta {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 20px;
}
.meta-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: var(--gray-600);
}
.meta-icon { width: 16px; text-align: center; opacity: .7; }

.card-links {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px; margin-top: 16px;
}
.card-link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.83rem; color: var(--navy-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
}
.card-link:last-child { border-bottom: none; }
.card-link:hover { color: var(--gold); }
.card-link::after { content: '→'; font-size: 0.8rem; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray-600); font-size: 1rem; max-width: 600px; }
.section-header.text-center p { margin: 0 auto; }

/* Gold underline accent on section titles */
.section-header h2::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 2px;
}
.section-header.text-center h2::after { margin: 12px auto 0; }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.blog-card-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em;
}

.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-title { font-size: 1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 0.86rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--gray-400);
  border-top: 1px solid var(--gray-100); padding-top: 12px;
}
.blog-card-author { display: flex; align-items: center; gap: 6px; }
.author-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--white); font-weight: 700;
}

/* =============================================
   LEAD CAPTURE FORM
   ============================================= */
.lead-form-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: var(--section-py) 0;
}
.lead-form-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.lead-form-copy h2 { color: var(--white); }
.lead-form-copy h2::after { background: var(--gold); }
.lead-form-copy p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.trust-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.trust-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,.8);
}
.trust-bullets li::before {
  content: '✓';
  width: 20px; height: 20px; min-width: 20px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.lead-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.lead-form-box h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.3rem; }
.lead-form-box .subtitle { font-size: 0.84rem; color: var(--gray-600); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem; font-family: var(--font-body);
  color: var(--gray-800); background: var(--gray-50);
  transition: border-color .15s, background .15s;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; background: var(--white);
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(26,60,94,.1);
}
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--gray-800); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .04em;
}
.form-disclaimer {
  font-size: 0.75rem; color: var(--gray-400);
  text-align: center; margin-top: 12px; line-height: 1.5;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  background: var(--white); border: none; cursor: pointer;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  font-family: var(--font-body);
  transition: background .15s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.active { background: var(--navy); color: var(--white); }
.faq-icon { font-size: 1.2rem; transition: transform .25s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 20px 24px;
  font-size: 0.9rem; color: var(--gray-600); line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq-answer.open { display: block; }

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
  font-size: 0.8rem; color: var(--gray-400);
  display: flex; align-items: center; gap: 6px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--gray-400); }
.breadcrumbs a:hover { color: var(--navy-mid); }
.breadcrumbs-sep { opacity: .5; }

/* =============================================
   SIDEBAR
   ============================================= */
.content-with-sidebar {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; align-items: flex-start;
}
.sidebar { position: sticky; top: 88px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.widget-heading {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.sidebar-link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.86rem; color: var(--navy-mid); font-weight: 500;
  padding: 8px 0; border-bottom: 1px solid var(--gray-100);
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--gold); }

.cta-widget {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.cta-widget h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.cta-widget p { color: rgba(255,255,255,.7); font-size: 0.84rem; margin-bottom: 20px; }

/* =============================================
   HOTEL ZONE CARDS
   ============================================= */
.hotel-zone {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.zone-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 16px;
}
.zone-badge.zone-1 { background: #fef3c7; color: #92400e; }
.zone-badge.zone-2 { background: #dbeafe; color: #1e40af; }
.zone-badge.zone-3 { background: #d1fae5; color: #065f46; }

.hotel-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-100);
}
.hotel-item:last-child { border-bottom: none; padding-bottom: 0; }
.hotel-star { font-size: 0.72rem; color: var(--gold); letter-spacing: 1px; }
.hotel-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); margin-bottom: 2px; }
.hotel-address { font-size: 0.8rem; color: var(--gray-400); }
.hotel-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--gray-100); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* =============================================
   QUICK FACTS TABLE
   ============================================= */
.quick-facts {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
}
.quick-facts-title {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 12px 20px;
}
.quick-facts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
}
.fact-item {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
}
.fact-item:nth-child(2n) { border-right: none; }
.fact-label { font-size: 0.72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.fact-value { font-size: 0.95rem; color: var(--white); font-weight: 600; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; color: var(--gray-600); font-weight: 500;
}
.trust-item-icon { font-size: 1.3rem; }

/* =============================================
   AUTHOR BOX
   ============================================= */
.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 40px 0;
}
.author-avatar-lg {
  width: 64px; height: 64px; min-width: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white); font-weight: 700;
  font-family: var(--font-display);
}
.author-name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.author-title { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.author-bio { font-size: 0.86rem; color: var(--gray-600); line-height: 1.6; }

/* =============================================
   TABLE OF CONTENTS
   ============================================= */
.toc-box {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
}
.toc-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: 14px; }
.toc-list { display: flex; flex-direction: column; gap: 6px; }
.toc-item { display: flex; align-items: baseline; gap: 8px; font-size: 0.86rem; }
.toc-num { color: var(--gold); font-weight: 700; font-size: 0.75rem; min-width: 20px; }
.toc-item a { color: var(--navy-mid); }
.toc-item a:hover { color: var(--gold); }

/* =============================================
   LAST UPDATED BADGE
   ============================================= */
.last-updated {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--gray-400);
  background: var(--gray-100);
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 24px;
}
.last-updated::before { content: '🕐'; font-size: 0.75rem; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 48px;
}
.page-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--navy-mid);
  text-decoration: none; transition: all .15s;
}
.page-num:hover, .page-num.current {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #0a2040; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand p { color: rgba(255,255,255,.55); font-size: 0.86rem; line-height: 1.7; margin-top: 16px; margin-bottom: 20px; }
.footer-disclaimer {
  font-size: 0.75rem; color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 12px 16px; line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-light); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.55); font-size: 0.86rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* =============================================
   SINGLE POST ARTICLE
   ============================================= */
.article-content { max-width: 760px; }
.article-content h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.article-content p { font-size: 0.97rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.1rem; }
.article-content ul, .article-content ol {
  padding-left: 24px; margin-bottom: 1.1rem;
}
.article-content li {
  font-size: 0.97rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 6px; list-style: disc;
}
.article-content a { color: var(--navy-mid); text-decoration: underline; text-decoration-color: rgba(26,60,94,.3); }
.article-content a:hover { color: var(--gold); }

.article-callout {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px; margin: 28px 0;
}
.article-callout p { font-size: 0.92rem; color: var(--gray-600); margin: 0; }
.article-callout strong { color: var(--navy); }

.inline-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px; margin: 36px 0;
  text-align: center;
}
.inline-cta h4 { color: var(--white); margin-bottom: 8px; }
.inline-cta p { color: rgba(255,255,255,.7); font-size: 0.88rem; margin-bottom: 20px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-booking-widget { max-width: 500px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lead-form-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; --gutter: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .trust-items { gap: 20px; }
  .quick-facts-grid { grid-template-columns: 1fr; }
  .fact-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .site-header, .site-footer, .lead-form-section, .sidebar { display: none; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
