/*
Theme Name: Kutch Diaries Blog
Theme URI: https://kutchdiaries.com
Author: Kutch Diaries
Author URI: https://kutchdiaries.com
Description: Premium custom WordPress theme for Kutch Diaries blog. Matches the main website design exactly with navy, gold, sand color palette and Sora/Inter/Playfair typography. Updated to match main site header/footer.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kutch-tours
Tags: travel, blog, custom, premium, kutch
*/

/* =====================================================================
   KUTCH TOURS & TRAVELS — refined homepage stylesheet
   ===================================================================== */

:root {
  --navy:        #0B1B34;
  --navy-800:    #11254a;
  --navy-700:    #16294d;
  --navy-line:   #24365c;

  --gold:        #E0A93C;
  --gold-deep:   #C7882A;
  --gold-soft:   #F3D79A;

  --sand:        #F6F1E6;
  --cream:       #FCFAF4;
  --ink:         #232730;
  --muted:       #7B7468;
  --line:        #E8E1D1;

  --white:       #ffffff;
  --text-light:  #7B7468;

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --shadow-sm:  0 2px 8px rgba(11,27,52,0.06);
  --shadow-md:  0 10px 30px rgba(11,27,52,0.10);
  --shadow-lg:  0 24px 60px rgba(11,27,52,0.16);

  --radius:     16px;
  --radius-lg:  24px;

  --header-h:      80px;
  --header-h-sm:   70px;

  --section-y:     104px;
  --section-y-sm:  64px;
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.nav-open { overflow:hidden; }
img { display:block; max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
ul { list-style:none; }
svg { display:block; }

/* ---- Layout helpers ---- */
.container { width:100%; max-width:1240px; margin:0 auto; padding:0 28px; }
.section { padding:var(--section-y) 0; }
.section-sand  { background:var(--sand); }
.section-cream { background:var(--cream); }

/* ---- Typography ---- */
.kicker {
  font-family:var(--font-serif);
  font-style:italic;
  font-size:1.05rem;
  color:var(--gold-deep);
  margin-bottom:10px;
}
.h2 {
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1.7rem, 1.1rem + 2.4vw, 2.6rem);
  line-height:1.18;
  color:var(--navy);
  letter-spacing:-0.01em;
}
.lead { color:var(--muted); font-size:1rem; margin-top:10px; max-width:54ch; }

.section-head { margin-bottom:48px; }
.section-head.center { text-align:center; }
.section-head.center .lead { margin-left:auto; margin-right:auto; }
.section-head.split {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:32px; flex-wrap:wrap;
}

.view-all {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-weight:600; font-size:0.9rem;
  color:var(--navy); white-space:nowrap;
  padding-bottom:3px; border-bottom:1.5px solid transparent;
  transition:border-color .25s ease, gap .25s ease;
}
.view-all svg { width:16px; height:16px; }
.view-all:hover { border-color:var(--gold); gap:12px; }

/* ---- Buttons ---- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--font-display); font-weight:600;
  font-size:0.92rem; letter-spacing:0.01em;
  padding:13px 24px; border-radius:12px;
  transition:transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
  flex-shrink: 0;
}
.btn svg { width:17px; height:17px; }
.btn:active { transform:translateY(1px); }

.btn-primary { background:var(--gold); color:var(--navy); box-shadow:0 6px 18px rgba(224,169,60,0.32); }
.btn-primary:hover { background:var(--gold-deep); color:var(--white); box-shadow:0 10px 26px rgba(199,136,42,0.40); }

.btn-navy { background:var(--navy); color:var(--white); }
.btn-navy:hover { background:var(--navy-800); box-shadow:var(--shadow-md); }

.btn-ghost-light {
  background:transparent; color:var(--white);
  border:1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost-light:hover { background:rgba(255,255,255,0.10); border-color:#fff; }

.btn-lg { padding:15px 30px; font-size:1rem; border-radius:13px; }
.btn-sm { padding:10px 18px; font-size:0.84rem; }
.btn-block { width:100%; }

/* =====================================================================
   HEADER & LOGO STYLING
   ===================================================================== */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--header-h);
  background:rgba(11,27,52,0.0);
  transition:background .3s ease, height .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background:rgba(11,27,52,0.96);
  backdrop-filter:saturate(140%) blur(10px);
  box-shadow:0 4px 24px rgba(0,0,0,0.22);
  height:68px;
}
.header-inner {
  height:100%;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}

/* Logo container sizing */
.site-logo { 
  display:flex; 
  align-items:center; 
  flex-shrink:0; 
}
.main-logo { 
  height:56px; 
  width:auto; 
  display:block;
  object-fit: contain;
  transition: height .3s ease;
}
.site-header.scrolled .main-logo { 
  height:46px; 
}

.logo-fallback {
  display:flex; align-items:center; gap:10px; color:#fff;
}
.logo-mark {
  width:38px; height:38px; border-radius:9px; flex-shrink:0;
  background:var(--gold); display:flex; align-items:center; justify-content:center;
}
.logo-text { font-family:var(--font-display); font-weight:800; font-size:1.02rem; line-height:1; }
.logo-text small {
  display:block; font-weight:500; font-size:0.6rem; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--gold-soft); margin-top:3px;
}

/* Desktop nav */
.main-nav { display:flex; align-items:center; gap:2px; }
.nav-link {
  position:relative;
  font-family:var(--font-display); font-weight:500; font-size:0.85rem;
  color:rgba(255,255,255,0.82);
  padding:9px 10px; border-radius:8px;
  display:inline-flex; align-items:center; gap:5px;
  transition:color .2s ease;
  white-space:nowrap;
}
.nav-link svg { width:13px; height:13px; opacity:0.7; transition:transform .25s ease; }
.nav-link:hover { color:#fff; }
.nav-link.active { color:var(--gold-soft); }
.nav-link::after {
  content:""; position:absolute; left:10px; right:10px; bottom:4px; height:1.5px;
  background:var(--gold); transform:scaleX(0); transform-origin:left;
  transition:transform .28s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform:scaleX(1); }

.nav-item { position:relative; }
.nav-item:hover .nav-link svg { transform:rotate(180deg); }
.dropdown {
  position:absolute; top:100%; left:0;
  min-width:230px; background:#fff; border-radius:12px;
  box-shadow:var(--shadow-lg); padding:8px;
  margin-top:6px;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .22s ease, transform .22s ease, visibility .22s;
}
/* Invisible bridge closes the gap so the dropdown stays open on hover */
.dropdown::before {
  content:""; position:absolute; top:-6px; left:0;
  width:100%; height:6px; background:transparent;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a {
  display:block; padding:10px 14px; border-radius:8px;
  font-size:0.875rem; font-weight:500; color:var(--ink);
  transition:background .18s ease, color .18s ease;
}
.dropdown a:hover { background:var(--sand); color:var(--gold-deep); }

.header-cta { flex-shrink:0; }

/* Mobile toggle */
.mobile-toggle {
  display:none; width:42px; height:42px; border-radius:10px;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
  background:rgba(255,255,255,0.10);
}
.mobile-toggle span {
  display:block; width:20px; height:2px; border-radius:2px;
  background:#fff; transition:transform .3s ease, opacity .2s ease;
}

/* =====================================================================
   MOBILE MENU
   ===================================================================== */
.mobile-menu {
  position:fixed; inset:0; z-index:1200;
  background:linear-gradient(165deg, #0B1B34 0%, #0e2348 60%, #0a1730 100%);
  display:flex; flex-direction:column;
  opacity:0; visibility:hidden; pointer-events:none;
  transform:translateY(-12px);
  transition:opacity .35s ease, transform .35s ease, visibility .35s;
  overflow-y:auto;
}
.mobile-menu.open {
  opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0);
}
.mm-top {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 22px; border-bottom:1px solid var(--navy-line);
  flex-shrink:0;
}
.mm-top .main-logo { height:46px; }
.mm-close {
  width:44px; height:44px; border-radius:11px;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease;
}
.mm-close:hover { background:rgba(255,255,255,0.16); }
.mm-close svg { width:22px; height:22px; color:#fff; }

.mm-body { flex:1; padding:14px 22px 28px; }
.mm-link {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 4px;
  font-family:var(--font-display); font-weight:600; font-size:1.18rem;
  color:#fff; border-bottom:1px solid rgba(255,255,255,0.07);
}
.mm-link.active { color:var(--gold-soft); }
.mm-link svg { width:18px; height:18px; opacity:0.55; transition:transform .3s ease; }

.mm-sub-link {
  display: block !important;
  clear: both;
  width: 100%;
  padding: 10px 4px 10px 20px;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mm-sub-link:hover { color: var(--gold-soft); }

.mm-foot { padding:8px 22px 30px; flex-shrink:0; }
.mm-foot .btn { width:100%; }
.mm-contact {
  margin-top:18px; display:flex; flex-direction:column; gap:6px;
  font-size:0.85rem; color:rgba(255,255,255,0.55);
}
.mm-contact a { color:rgba(255,255,255,0.8); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  overflow:hidden;
  padding:calc(var(--header-h) + 40px) 0 200px;
}
.hero-slides { position:absolute; inset:0; z-index:0; }
.hero-slide {
  position:absolute; inset:0;
  opacity:0; transition:opacity 1.4s ease;
}
.hero-slide.active { opacity:1; }
.hero-slide picture, .hero-slide img {
  width:100%; height:100%;
}
.hero-slide img {
  object-fit:cover; object-position:center;
  transform:scale(1.04);
  transition:transform 9s ease;
}
.hero-slide.active img { transform:scale(1); }

.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(11,27,52,0.55) 0%, rgba(11,27,52,0.20) 35%, rgba(11,27,52,0.78) 100%),
    linear-gradient(100deg, rgba(11,27,52,0.86) 0%, rgba(11,27,52,0.42) 52%, rgba(11,27,52,0.10) 100%);
}

.hero .container { position:relative; z-index:2; }
.hero-content { max-width:620px; }
.hero-eyebrow {
  display:inline-block;
  font-family:var(--font-display); font-weight:600;
  font-size:0.78rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--gold-soft);
  padding-bottom:14px;
}
.hero-title {
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(3rem, 1.6rem + 7vw, 6rem);
  line-height:0.98; letter-spacing:-0.02em;
  color:#fff;
}
.hero-title .accent {
  display:block; font-family:var(--font-serif); font-style:italic;
  font-weight:500; font-size:0.34em; letter-spacing:0;
  color:var(--gold-soft); margin-top:14px;
}
.hero-desc {
  color:rgba(255,255,255,0.78);
  font-size:1.04rem; line-height:1.7;
  max-width:48ch; margin-top:22px;
}
.hero-actions {
  display:flex; gap:14px; flex-wrap:wrap; margin-top:34px;
}

@keyframes heroIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow { animation:heroIn .8s ease .15s both; }
.hero-title   { animation:heroIn .8s ease .30s both; }
.hero-desc    { animation:heroIn .8s ease .45s both; }
.hero-actions { animation:heroIn .8s ease .58s both; }

/* Slide dots */
.hero-dots {
  position:absolute; left:0; right:0; bottom:188px; z-index:3;
  display:flex; gap:8px;
  justify-content:flex-start;
}
.hero-dots .container { display:flex; gap:8px; }
.hero-dot {
  width:9px; height:9px; border-radius:99px;
  background:rgba(255,255,255,0.32);
  transition:width .35s ease, background .35s ease;
}
.hero-dot.active { width:30px; background:var(--gold); }

/* =====================================================================
   BOOKING WIDGET
   ===================================================================== */
.booking {
  position:relative; z-index:20;
  margin-top:-150px;
  padding-bottom:var(--section-y-sm);
}
.booking-card {
  background:#fff; border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.booking-head {
  padding:26px 32px 0;
}
.booking-head h3 {
  font-family:var(--font-display); font-weight:700; font-size:1.3rem;
  color:var(--navy);
}
.booking-head p { font-size:0.9rem; color:var(--muted); margin-top:3px; }

.booking-tabs {
  display:flex; gap:6px;
  padding:18px 32px 0;
  flex-wrap:wrap;
}
.bk-tab {
  position:relative;
  font-family:var(--font-display); font-weight:600; font-size:0.9rem;
  color:var(--muted);
  padding:12px 20px; border-radius:10px 10px 0 0;
  display:inline-flex; align-items:center; gap:8px;
  transition:color .2s ease, background .2s ease;
}
.bk-tab svg { width:16px; height:16px; }
.bk-tab:hover { color:var(--navy); }
.bk-tab.active { color:var(--navy); background:var(--sand); }
.bk-tab.active::after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:3px;
  background:var(--gold); border-radius:3px;
}

.booking-form { padding:26px 32px 30px; background:var(--sand); }

.bk-panel { display:none; }
.bk-panel.active { display:block; animation:panelFade .3s ease; }
@keyframes panelFade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

.bk-grid {
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:14px;
}
.bk-field { display:flex; flex-direction:column; gap:6px; }
.bk-field.span-2 { grid-column:span 2; }
.bk-field label {
  font-family:var(--font-display); font-weight:600;
  font-size:0.72rem; letter-spacing:0.05em; text-transform:uppercase;
  color:var(--muted);
}
.bk-field input, .bk-field select {
  width:100%; padding:12px 14px;
  border:1.5px solid var(--line); border-radius:11px;
  background:#fff; color:var(--ink);
  font-family:var(--font-body); font-size:0.9rem;
  appearance:none; -webkit-appearance:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.bk-field select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237B7468' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 13px center;
  padding-right:36px;
}
.bk-field input:focus, .bk-field select:focus {
  outline:none; border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(224,169,60,0.16);
}

.bk-submit-row {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bk-submit-row .btn { width: 100%; text-align: center; justify-content: center; }

.bk-note {
  font-size:0.82rem; color:var(--muted);
  display:flex; align-items:center; gap:7px;
}
.bk-note svg { width:15px; height:15px; color:var(--gold-deep); flex-shrink:0; }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { background:var(--navy); padding:38px 0; }
.stats-inner {
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
}
.stat { text-align:center; flex:1; min-width:120px; }
.stat-num {
  font-family:var(--font-display); font-weight:800;
  font-size:1.9rem; line-height:1; color:var(--gold-soft);
}
.stat-label {
  font-size:0.72rem; font-weight:500; letter-spacing:0.08em;
  text-transform:uppercase; color:rgba(255,255,255,0.55);
  margin-top:8px;
}
.stat-div { width:1px; height:42px; background:var(--navy-line); }

/* =====================================================================
   PACKAGES
   ===================================================================== */
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.package-card {
  background:#fff; border-radius:var(--radius);
  border:1px solid var(--line);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.package-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg); border-color:transparent;
}
.package-media { position:relative; aspect-ratio:4/3; overflow:hidden; }
.package-media img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s ease;
}
.package-card:hover .package-media img { transform:scale(1.06); }
.package-badge {
  position:absolute; top:12px; left:12px;
  background:rgba(11,27,52,0.92); color:#fff;
  font-family:var(--font-display); font-weight:600; font-size:0.72rem;
  letter-spacing:0.04em;
  padding:6px 12px; border-radius:99px;
}
.package-body { padding:20px; display:flex; flex-direction:column; flex:1; }
.package-title {
  font-family:var(--font-display); font-weight:700; font-size:1.06rem;
  color:var(--navy); line-height:1.3;
}
.package-sub { font-size:0.86rem; color:var(--muted); margin-top:4px; }
.package-incl {
  display:flex; flex-wrap:wrap; gap:6px;
  margin:16px 0 18px; padding-top:16px;
  border-top:1px solid var(--line);
}
.incl-chip {
  display:inline-flex; align-items:center; gap:5px;
  font-size:0.74rem; font-weight:500; color:var(--muted);
  background:var(--sand); padding:5px 9px; border-radius:7px;
}
.incl-chip svg { width:13px; height:13px; color:var(--gold-deep); }
.package-foot {
  margin-top:auto;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.price-label {
  font-size:0.66rem; font-weight:600; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--muted);
}
.price {
  font-family:var(--font-display); font-weight:800; font-size:1.3rem;
  color:var(--navy);
}

/* =====================================================================
   TENT CITY
   ===================================================================== */
.tent {
  position:relative; overflow:hidden;
  padding:var(--section-y) 0;
}
.tent-bg { position:absolute; inset:0; z-index:0; }
.tent-bg img { width:100%; height:100%; object-fit:cover; }
.tent-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(100deg, rgba(11,27,52,0.94) 0%, rgba(11,27,52,0.66) 55%, rgba(11,27,52,0.30) 100%);
}
.tent .container { position:relative; z-index:2; }
.tent-content { max-width:560px; }
.tent .kicker { color:var(--gold-soft); }
.tent h2 { color:#fff; }
.tent-desc {
  color:rgba(255,255,255,0.78); font-size:1rem; line-height:1.7;
  margin-top:14px;
}
.tent-features {
  display:flex; flex-wrap:wrap; gap:12px;
  margin:28px 0 32px;
}
.tent-feature {
  display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  padding:11px 16px; border-radius:11px;
}
.tent-feature svg { width:20px; height:20px; color:var(--gold-soft); flex-shrink:0; }
.tent-feature span {
  font-family:var(--font-display); font-weight:500; font-size:0.86rem; color:#fff;
}

/* =====================================================================
   VEHICLES
   ===================================================================== */
.grid-5 { display:grid; grid-template-columns:repeat(5,1fr); gap:22px; }

.vehicle-card {
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.vehicle-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg); border-color:transparent;
}
.vehicle-media {
  position:relative;
  aspect-ratio:1/1;
  border-radius:12px; overflow:hidden;
  background:linear-gradient(150deg, #f3eee2, #e9e2d2);
  display:flex; align-items:center; justify-content:center;
}
.vehicle-media img {
  width:100%; height:100%; object-fit:cover;
}
.vehicle-media .veh-icon { width:46%; height:46%; color:var(--navy); opacity:0.34; }
.vehicle-seat-tag {
  position:absolute; bottom:10px; left:10px;
  background:rgba(11,27,52,0.92); color:#fff;
  font-size:0.7rem; font-weight:600;
  padding:5px 10px; border-radius:99px;
}
.vehicle-name {
  font-family:var(--font-display); font-weight:700; font-size:1.04rem;
  color:var(--navy); margin-top:16px;
}
.vehicle-specs {
  display:flex; flex-direction:column; gap:7px;
  margin:12px 0 16px; padding:14px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.veh-spec {
  display:flex; align-items:center; gap:8px;
  font-size:0.82rem; color:var(--muted);
}
.veh-spec svg { width:14px; height:14px; color:var(--gold-deep); flex-shrink:0; }
.vehicle-price-row {
  display:flex; align-items:baseline; gap:6px; margin-bottom:14px;
}
.vehicle-price {
  font-family:var(--font-display); font-weight:800; font-size:1.32rem;
  color:var(--navy);
}
.vehicle-price-row span { font-size:0.78rem; color:var(--muted); }

/* =====================================================================
   DESTINATIONS
   ===================================================================== */
.grid-dest { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }

.dest-card {
  position:relative; border-radius:var(--radius);
  overflow:hidden; height:300px;
  display:block;
}
.dest-card img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s ease;
}
.dest-card:hover img { transform:scale(1.08); }
.dest-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(11,27,52,0.88) 0%, rgba(11,27,52,0.20) 55%, rgba(11,27,52,0) 100%);
}
.dest-info { position:absolute; left:18px; right:18px; bottom:18px; }
.dest-name {
  font-family:var(--font-display); font-weight:700; font-size:1.06rem; color:#fff;
}
.dest-tag { font-size:0.78rem; color:var(--gold-soft); margin-top:2px; }

/* =====================================================================
   WHY US
   ===================================================================== */
.grid-why { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.why-card {
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); padding:26px 22px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.why-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.why-icon {
  width:50px; height:50px; border-radius:12px;
  background:var(--sand);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.why-icon svg { width:24px; height:24px; color:var(--gold-deep); }
.why-title {
  font-family:var(--font-display); font-weight:700; font-size:1rem; color:var(--navy);
}
.why-desc { font-size:0.86rem; color:var(--muted); margin-top:6px; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials { background:var(--navy); padding:var(--section-y) 0; }
.testimonials .h2 { color:#fff; }
.testimonials .kicker { color:var(--gold-soft); }
.testimonials .lead { color:rgba(255,255,255,0.6); }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

.tm-card {
  background:var(--navy-800);
  border:1px solid var(--navy-line);
  border-radius:var(--radius); padding:28px;
}
.tm-stars { display:flex; gap:3px; margin-bottom:14px; }
.tm-stars svg { width:16px; height:16px; fill:var(--gold); }
.tm-text {
  color:rgba(255,255,255,0.82); font-size:0.92rem; line-height:1.7;
}
.tm-author {
  display:flex; align-items:center; gap:12px;
  margin-top:20px; padding-top:18px;
  border-top:1px solid var(--navy-line);
}
.tm-avatar {
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:1rem;
  color:var(--navy); background:var(--gold-soft);
}
.tm-name { font-family:var(--font-display); font-weight:600; font-size:0.9rem; color:#fff; }
.tm-loc { font-size:0.78rem; color:rgba(255,255,255,0.5); }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta {
  position:relative; overflow:hidden;
  border-radius:var(--radius-lg);
  padding:78px 32px; text-align:center;
}
.cta-bg { position:absolute; inset:0; z-index:0; }
.cta-bg img { width:100%; height:100%; object-fit:cover; }
.cta-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(11,27,52,0.78), rgba(11,27,52,0.88));
}
.cta-inner { position:relative; z-index:2; max-width:600px; margin:0 auto; }
.cta-title {
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(1.7rem,1.2rem+2vw,2.4rem); color:#fff;
}
.cta-desc { color:rgba(255,255,255,0.78); margin-top:12px; }
.cta-actions {
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:28px;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background:var(--navy); color:rgba(255,255,255,0.62); padding:64px 0 0; }
.footer-grid {
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1.3fr; gap:40px;
  padding-bottom:48px;
}
.footer-brand p { font-size:0.88rem; line-height:1.7; margin-top:14px; max-width:34ch; }
.footer-logo { display:flex; align-items:center; gap:10px; }
.footer-logo-img { height:42px; width:auto; }
.footer-socials { display:flex; gap:10px; margin-top:20px; }
.social-link {
  width:38px; height:38px; border-radius:10px;
  background:var(--navy-800); border:1px solid var(--navy-line);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.7);
  transition:background .2s ease, color .2s ease;
}
.social-link:hover { background:var(--gold); color:var(--navy); }
.social-link svg { width:16px; height:16px; }
.footer-heading {
  font-family:var(--font-display); font-weight:700; font-size:0.92rem;
  color:#fff; margin-bottom:16px;
}
.footer-links { display:flex; flex-direction:column; gap:9px; }
.footer-links a { font-size:0.86rem; transition:color .2s ease; }
.footer-links a:hover { color:var(--gold-soft); }
.footer-contact-item {
  display:flex; align-items:flex-start; gap:9px;
  font-size:0.86rem; margin-bottom:11px;
}
.footer-contact-item svg { width:15px; height:15px; color:var(--gold); flex-shrink:0; margin-top:3px; }
.footer-legal {
  padding:18px 0 8px;
  display:flex; justify-content:center; gap:6px; flex-wrap:wrap;
  font-size:0.82rem;
  border-top:1px solid var(--navy-line);
}
.footer-legal a {
  color:rgba(255,255,255,0.72);
  text-decoration:none;
  transition:color 0.25s ease;
  font-family:var(--font-display);
  font-weight:500;
}
.footer-legal a:hover { color:var(--gold); }
.footer-legal .legal-sep { color:rgba(255,255,255,0.32); }
.footer-bottom {
  border-top:1px solid var(--navy-line);
  padding:18px 0 22px !important;
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  font-size:0.8rem;
}
.footer-bottom {
  border-top:1px solid var(--navy-line);
  padding:22px 0;
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  font-size:0.8rem;
}

/* =====================================================================
   SCROLL ELEMENTS
   ===================================================================== */
.scroll-top {
  position:fixed; right:22px; bottom:22px; z-index:899;
  width:44px; height:44px; border-radius:50%;
  background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s;
}
.scroll-top.show { opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top svg { width:18px; height:18px; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal {
  opacity:0; transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal.d1 { transition-delay:.08s; }
.reveal.d2 { transition-delay:.16s; }
.reveal.d3 { transition-delay:.24s; }
.reveal.d4 { transition-delay:.32s; }

@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* =====================================================================
   RESPONSIVE SIZES
   ===================================================================== */
@media (max-width:1100px) {
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-5 { grid-template-columns:repeat(3,1fr); }
  .grid-dest { grid-template-columns:repeat(3,1fr); }
  .grid-why { grid-template-columns:repeat(3,1fr); }
  .grid-3 { grid-template-columns:1fr; max-width:520px; margin:0 auto; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .bk-grid { grid-template-columns:repeat(3,1fr); }
  .bk-field.span-2 { grid-column:span 1; }
}

@media (max-width:1180px) {
  .main-nav, .header-cta { display:none; }
  .mobile-toggle { display:flex; }
}

@media (max-width:768px) {
  :root { --section-y:64px; }
  .container { padding:0 20px; }

  .site-header { height:var(--header-h-sm); }
  .site-header.scrolled { height:60px; }
  .main-logo { height:48px; }
  .site-header.scrolled .main-logo { height:40px; }

  .hero { padding:calc(var(--header-h-sm) + 24px) 0 230px; min-height:92svh; }
  .hero-content { max-width:100%; }
  .hero-desc { font-size:0.96rem; }
  .hero-actions { gap:10px; }
  .hero-actions .btn { flex:1; min-width:0; }
  .hero-dots { bottom:212px; }

  .booking { margin-top:-176px; }
  .booking-head, .booking-tabs { padding-left:18px; padding-right:18px; }
  .booking-form { padding:22px 18px 26px; }
  .bk-grid { grid-template-columns:1fr 1fr; }
  .bk-tab { flex:1; justify-content:center; padding:11px 8px; font-size:0.82rem; }
  .bk-tab svg { display:none; }
  .bk-submit-row .btn { min-width:0; }

  .grid-4 { grid-template-columns:1fr; max-width:380px; margin:0 auto; }
  .grid-5 { grid-template-columns:1fr 1fr; }
  .grid-dest { grid-template-columns:1fr 1fr; }
  .grid-why { grid-template-columns:1fr; max-width:420px; margin:0 auto; }

  .section-head { margin-bottom:34px; }
  .section-head.split { align-items:flex-start; }

  .stat-div { display:none; }
  .stat { flex:1 1 40%; }

  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .footer-bottom { justify-content:center; text-align:center; }
}

@media (max-width:430px) {
  .bk-grid { grid-template-columns:1fr; }
  .grid-5, .grid-dest { grid-template-columns:1fr; }
  .dest-card { height:230px; }
  .hero-title .accent { font-size:0.42em; }
}

/* =====================================================================
   BLOG-SPECIFIC STYLES (additions to main site CSS)
   ===================================================================== */

/* Blog page header */
.blog-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #142747 100%);
  color: #fff;
  padding: 80px 0 60px;
  margin-top: var(--header-h);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(224,169,60,0.10);
}
.blog-page-header::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(224,169,60,0.06);
}
.blog-page-header .container { position: relative; }
.bph-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  display: inline-block;
}
.bph-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.bph-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Blog breadcrumb */
.blog-bcrumb {
  background: var(--sand);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.blog-bcrumb-nav {
  font-size: 0.85rem;
  color: var(--text-light);
}
.blog-bcrumb-nav a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
}
.blog-bcrumb-nav a:hover { color: var(--gold-deep); }
.blog-bcrumb-nav .sep { margin: 0 8px; color: var(--muted); }
.blog-bcrumb-nav .current { color: var(--navy); font-weight: 700; }

/* Blog main */
.blog-main {
  padding: 60px 0 80px;
  background: var(--cream);
}

/* Featured Post (top of blog homepage) */
.featured-post {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11,27,52,0.10);
  margin-bottom: 60px;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,27,52,0.15);
}
.featured-post-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.featured-post:hover .featured-post-img img { transform: scale(1.05); }
.featured-post-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.featured-post-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.featured-post-meta .cat {
  background: rgba(224,169,60,0.15);
  color: var(--gold-deep);
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.featured-post-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.featured-post-title a {
  color: inherit;
  text-decoration: none;
}
.featured-post-title a:hover { color: var(--gold-deep); }
.featured-post-excerpt {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 22px;
}
.featured-post-read {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s ease;
  align-self: flex-start;
  text-decoration: none;
}
.featured-post-read::after { content: '→'; }
.featured-post-read:hover { gap: 12px; }

/* Article card grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(11,27,52,0.06);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(11,27,52,0.10);
}
.article-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.article-card:hover .article-card-img img { transform: scale(1.08); }
.article-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 10px;
  align-items: center;
}
.article-card-meta .dot {
  width: 3px; height: 3px;
  background: var(--muted);
  border-radius: 50%;
}
.article-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-title a {
  color: inherit;
  text-decoration: none;
}
.article-card-title a:hover { color: var(--gold-deep); }
.article-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-read {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s ease;
  align-self: flex-start;
  text-decoration: none;
}
.article-card-read::after { content: '→'; }
.article-card:hover .article-card-read { gap: 12px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--line);
  transition: all .25s ease;
  text-decoration: none;
}
.pagination .page-numbers:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.pagination .page-numbers.current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.pagination .page-numbers.dots {
  background: transparent;
  border: none;
}

/* SINGLE ARTICLE PAGE */
.single-article { background: #fff; }
.article-header {
  padding: 50px 0 30px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  margin-top: var(--header-h);
}
.article-header-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.article-category {
  display: inline-block;
  background: rgba(224,169,60,0.15);
  color: var(--gold-deep);
  padding: 6px 16px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  text-decoration: none;
}
.article-category:hover { background: var(--gold); color: var(--navy); }
.article-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.article-meta { margin-top: 24px; }
.article-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.article-author img { border-radius: 50%; }
.article-author > div {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.author-meta {
  font-size: 0.82rem;
  color: var(--text-light);
}

.article-featured-image {
  padding: 30px 0;
  background: var(--cream);
}
.article-featured-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(11,27,52,0.10);
}

.article-body {
  padding: 50px 0 40px;
  background: #fff;
}
.article-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}
.article-content > p { margin-bottom: 22px; }
.article-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy);
  margin: 40px 0 18px;
  line-height: 1.3;
}
.article-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 32px 0 14px;
  line-height: 1.3;
}
.article-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin: 24px 0 10px;
}
.article-content a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-content a:hover { color: var(--navy); }
.article-content strong { color: var(--navy); font-weight: 700; }
.article-content em { color: var(--text); }
.article-content ul, .article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.article-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--sand);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
}
.article-content blockquote p:last-child { margin-bottom: 0; }
.article-content img {
  border-radius: 12px;
  margin: 28px auto;
  box-shadow: 0 2px 8px rgba(11,27,52,0.06);
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.article-content th, .article-content td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
}
.article-content th {
  background: var(--sand);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

/* Article meta footer items */
.article-tags {
  margin: 40px 0 30px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.article-tags strong { margin-right: 10px; color: var(--navy); }
.article-tags a {
  display: inline-block;
  background: var(--sand);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-right: 6px;
  margin-bottom: 6px;
  text-decoration: none;
  transition: all .25s ease;
}
.article-tags a:hover { background: var(--gold); color: var(--navy); }

.article-share { margin: 30px 0; }
.article-share strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}
.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 99px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform .25s ease, opacity .25s ease;
  text-decoration: none;
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.share-fb { background: #1877F2; }
.share-tw { background: #000; }
.share-li { background: #0A66C2; }
.share-wa { background: #25D366; }

.article-author-bio {
  margin: 40px 0;
  padding: 28px;
  background: var(--cream);
  border-radius: 18px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
}
.article-author-bio img { border-radius: 50%; width: 80px; height: 80px; }
.bio-content strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.bio-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
}

/* Post CTA box */
.post-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #142747 100%);
  border-radius: 18px;
  padding: 40px 36px;
  margin: 40px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.post-cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(224,169,60,0.10);
}
.post-cta-content { position: relative; }
.post-cta-box h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
}
.post-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  line-height: 1.6;
}
.post-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Related articles */
.related-section {
  padding: 60px 0;
  background: var(--sand);
  border-top: 1px solid var(--line);
}
.related-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 8px;
}
.related-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

/* Comments */
.comments-section {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.comments-inner { max-width: 780px; margin: 0 auto; }
.comments-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 30px;
}
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.comment {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 18px;
  list-style: none;
}
.comment .children {
  list-style: none;
  padding-left: 28px;
  margin-top: 18px;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-author .avatar {
  border-radius: 50%;
  width: 48px !important;
  height: 48px !important;
}
.comment-author .fn,
.comment-author cite {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}
.comment-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.comment-content { font-size: 0.95rem; color: var(--text); line-height: 1.65; }
.comment-content p { margin-bottom: 10px; }
.reply { margin-top: 10px; }
.comment-reply-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-deep);
  text-decoration: none;
}
.comment-reply-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.comment-notes {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.comment-form p { margin-bottom: 18px; }
.comment-form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color .25s ease;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.comment-form textarea { min-height: 130px; resize: vertical; }

/* Search form */
.search-form {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  padding: 6px;
  transition: border-color .25s ease;
}
.search-form:focus-within { border-color: var(--gold); }
.search-field {
  flex: 1;
  border: none;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: transparent;
  outline: none;
  color: var(--text);
}
.search-field::placeholder { color: var(--muted); }
.search-submit {
  border-radius: 99px !important;
  padding: 10px 22px !important;
}
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* WordPress utility classes */
.alignleft { float: left; margin: 6px 24px 12px 0; }
.alignright { float: right; margin: 6px 0 12px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 100%; }
.sticky { background: var(--cream); }

/* Responsive adjustments for blog */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-img { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .featured-post-content { padding: 28px 24px 32px; }
  .blog-page-header { padding: 60px 0 50px; }
  .article-header { padding: 30px 0 20px; }
  .article-title { font-size: 1.6rem; }
  .article-body { padding: 30px 0; }
  .article-content { font-size: 1rem; }
  .article-content h2 { font-size: 1.4rem; margin: 28px 0 14px; }
  .article-content h3 { font-size: 1.2rem; }
  .post-cta-box { padding: 28px 24px; }
  .post-cta-box h3 { font-size: 1.25rem; }
  .article-author-bio {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .article-author-bio img { margin: 0 auto; }
  .related-section { padding: 40px 0; }
  .comments-section { padding: 40px 0; }
  .comment .children { padding-left: 14px; }
}

/* =====================================================================
   BLOG HEADER FIX — header background always solid + navy text
   
   The main site has a dark hero image, so the default transparent header
   with white text looks great. But the blog has no dark hero, so we need
   to make the header always solid (white background + navy text) to
   keep nav links visible.
   ===================================================================== */

.site-header {
  background-color: var(--white, #ffffff) !important; /* Forces solid white color background */
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: saturate(180%) blur(8px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(8px) !important;
  box-shadow: 0 2px 16px rgba(11, 27, 52, 0.06) !important;
  position: fixed !important;
}

.site-header .nav-link {
  color: var(--navy) !important;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--gold-deep) !important;
}

.site-header .main-nav .nav-item .nav-link svg {
  stroke: var(--navy);
}

.site-header .logo-text {
  color: var(--navy);
}
.site-header .logo-text small {
  color: var(--text-light);
}

.site-header .mobile-toggle span {
  background: var(--navy) !important;
}

/* Ensure the header always behaves like "scrolled" — smaller height too if wanted,
   but we keep full height for readability */
.site-header.scrolled {
  height: var(--header-h);
}