/* ============================================================
   Baijnath Tourism v2 — Main Stylesheet
   SEO / AI SEO / GEO / UX Optimised
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --saffron:    #D4611A;
  --saffron-dk: #B5511A;
  --gold:       #C9952B;
  --dark:       #2C1A0E;
  --dark2:      #1a0f08;
  --green:      #1E3A2F;
  --cream:      #FDF6EC;
  --cream2:     #F5EBD8;
  --white:      #FFFFFF;
  --text:       #2C1A0E;
  --text-light: #6B4C2A;
  --text-mid:   #4A3020;
  --border:     rgba(212,97,26,0.15);
  --shadow:     0 4px 24px rgba(44,26,14,0.12);
  --shadow-lg:  0 12px 48px rgba(44,26,14,0.18);
  --radius:     10px;
  --radius-lg:  18px;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Jost', system-ui, sans-serif;
  --max-w:      1200px;
  --transition: 0.25s ease;
}

/* ── 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(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--saffron); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--saffron-dk); }
a:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 3px; }
ul, ol { padding-left: 1.4em; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1.1em; }
.answer-first { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); }

/* ── Layout Helpers ─────────────────────────────────────────── */
.section       { padding: 80px 20px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.bg-white      { background: var(--white); }
.bg-cream      { background: var(--cream); }
.bg-cream2     { background: var(--cream2); }
.bg-dark-hero  { background: linear-gradient(135deg, var(--dark2) 0%, var(--green) 100%); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header p { max-width: 620px; margin: 16px auto 0; color: var(--text-light); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(212,97,26,0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 18px auto 0;
}

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: 0.04em;
}

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,246,236,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(44,26,14,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(44,26,14,0.15); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo a {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--dark);
}
.logo-icon { font-size: 1.8rem; line-height: 1; }
.logo-brand { display: block; font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--dark); line-height: 1.1; }
.logo-sub   { display: block; font-size: 0.65rem; font-weight: 500; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; }

.main-nav  { margin-left: auto; }
.nav-menu  { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-item  {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 8px 14px; border-radius: 6px;
  color: var(--text-mid); transition: all var(--transition);
  cursor: pointer; border: none; background: none;
}
.nav-item:hover, .nav-item.active { color: var(--saffron); background: rgba(212,97,26,0.08); }
.nav-parent { position: relative; }
.nav-drop   { display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; z-index: 200; }
.nav-parent:hover .nav-drop { display: block; }
.nav-sub    { display: block; padding: 11px 18px; font-size: 0.85rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); transition: all var(--transition); }
.nav-sub:hover { background: var(--cream); color: var(--saffron); padding-left: 24px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { padding: 16px 20px 24px; border-top: 1px solid var(--border); background: var(--cream); }
.mobile-nav .nav-menu { flex-direction: column; align-items: flex-start; gap: 2px; }
.mobile-nav .nav-item { display: block; width: 100%; text-align: left; font-size: 0.95rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--saffron); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; border: 2px solid var(--saffron);
  transition: all var(--transition); cursor: pointer;
}
.btn-primary:hover { background: var(--saffron-dk); border-color: var(--saffron-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,97,26,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, var(--dark2) 0%, #3D2010 40%, var(--green) 100%);
  overflow: hidden;
}
.hero-bg {
  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='%23D4611A' fill-opacity='0.04'%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-content {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 100px 40px 60px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,149,43,0.4);
  padding: 5px 16px; border-radius: 50px; margin-bottom: 22px;
  background: rgba(201,149,43,0.1);
}
.hero h1 { color: var(--white); font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.05; }
.hero h1 span { color: var(--gold); }
.hero-tagline { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.7); margin: 14px 0 10px; font-style: italic; font-family: var(--font-head); }
.hero-desc { max-width: 600px; color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 0;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px 16px; border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── Quick Facts Row ────────────────────────────────────────── */
.quick-facts-row { background: var(--saffron); padding: 0; overflow: hidden; }
.quick-facts-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.qf {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 14px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition);
}
.qf:hover { background: rgba(0,0,0,0.1); }
.qf:last-child { border-right: none; }
.qf-icon { font-size: 1.4rem; margin-bottom: 4px; }
.qf-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 3px; }
.qf-val { font-size: 0.8rem; font-weight: 700; color: var(--white); }

/* ── Cards Grid ─────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
  position: relative; height: 200px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-icon-ph { font-size: 4rem; opacity: 0.85; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,26,14,0.5) 0%, transparent 60%); }
.card-tag-pill {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--saffron); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
}
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body h3 a { color: var(--dark); }
.card-body h3 a:hover { color: var(--saffron); }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.card-meta span { font-size: 0.72rem; font-weight: 600; color: var(--text-light); background: var(--cream); padding: 3px 10px; border-radius: 50px; }
.card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--saffron); margin-top: auto;
  transition: gap var(--transition);
}
.card-cta:hover { gap: 10px; color: var(--saffron-dk); }

/* ── Content Split ──────────────────────────────────────────── */
.content-split { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.content-visual {
  background: linear-gradient(135deg, var(--cream2) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg); padding: 48px 24px;
  text-align: center; border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.content-visual::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4611A' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/svg%3E");
}
.visual-caption { font-size: 0.8rem; font-weight: 600; color: var(--text-light); margin-top: 16px; letter-spacing: 0.05em; }
.check-list { list-style: none; padding: 0; margin: 16px 0 0; }
.check-list li { padding: 7px 0 7px 28px; position: relative; font-size: 0.95rem; color: var(--text-mid); border-bottom: 1px dashed var(--border); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--saffron); font-weight: 700; }

/* ── Why Grid ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px 26px;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.why-card h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ── Seasons ────────────────────────────────────────────────── */
.seasons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.season-card {
  border-radius: var(--radius-lg); padding: 32px 26px;
  background: linear-gradient(135deg, var(--green) 0%, #2A4A3A 100%);
  color: var(--white); position: relative; overflow: hidden;
  transition: transform var(--transition);
}
.season-card:hover { transform: translateY(-5px); }
.season-best { background: linear-gradient(135deg, var(--saffron-dk) 0%, var(--saffron) 100%); }
.season-monsoon { background: linear-gradient(135deg, #2A3F6A 0%, #3A5080 100%); }
.season-autumn  { background: linear-gradient(135deg, #5A3010 0%, #7A4520 100%); }
.season-winter  { background: linear-gradient(135deg, var(--green) 0%, #2C4A3C 100%); }
.season-months { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.season-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.season-temp { font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.season-card p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0 0 16px; }
.season-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 50px; }
.season-caution { background: rgba(255,200,0,0.3); color: #ffe066; }

/* ── Activities ─────────────────────────────────────────────── */
.activities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.activity-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--cream); border-radius: var(--radius); padding: 22px;
  border: 1px solid var(--border); transition: all var(--transition);
}
.activity-item:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-3px); }
.activity-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--border); line-height: 1; flex-shrink: 0; width: 40px; }
.activity-icon { font-size: 1.6rem; margin-bottom: 8px; }
.activity-body h3 { font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.activity-body p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; margin: 0; }

/* ── Transport Grid ─────────────────────────────────────────── */
.transport-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.transport-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px 24px; color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.transport-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.t-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.transport-card h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.transport-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 14px; }
.t-badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(201,149,43,0.25); color: var(--gold); padding: 4px 12px; border-radius: 50px; }

/* ── Quote Banner ───────────────────────────────────────────── */
.quote-banner {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  padding: 64px 40px; text-align: center;
}
.quote-banner blockquote {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--white);
  max-width: 820px; margin: 0 auto 16px;
  line-height: 1.5;
}
.quote-banner cite { font-size: 0.85rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── FAQ Section ────────────────────────────────────────────── */
.faq-section { padding: 80px 20px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 24px; background: var(--white);
  border: none; cursor: pointer; text-align: left; gap: 16px;
  font-family: var(--font-body); font-size: 0.97rem; font-weight: 600; color: var(--dark);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--cream); }
.faq-q[aria-expanded="true"] { background: var(--cream2); color: var(--saffron); }
.faq-icon { font-size: 0.75rem; flex-shrink: 0; transition: transform 0.25s; color: var(--saffron); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { padding: 20px 24px; background: var(--cream); border-top: 1px solid var(--border); }
.faq-a p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  min-height: 320px; display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--dark2), var(--green));
  position: relative; padding: 60px 0 0;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 40px 40px 48px;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero .page-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin: 0; }

/* ── Breadcrumbs ────────────────────────────────────────────── */
.breadcrumbs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 16px;
  color: rgba(255,255,255,0.55);
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: rgba(255,255,255,0.35); }
.breadcrumbs-bar {
  background: var(--cream2); border-bottom: 1px solid var(--border);
  padding: 10px 0; font-size: 0.78rem;
}
.breadcrumbs-bar .inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--text-light); }
.breadcrumbs-bar a { color: var(--saffron); }

/* ── Quick Facts Bar ─────────────────────────────────────────── */
.quick-facts-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.qfb-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: flex; flex-wrap: wrap;
}
.qfb-item {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-right: 1px solid var(--border);
  min-width: 160px;
}
.qfb-item:last-child { border-right: none; }
.qfb-icon { font-size: 1.1rem; flex-shrink: 0; }
.qfb-text { display: flex; flex-direction: column; }
.qfb-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.qfb-val   { font-size: 0.85rem; font-weight: 600; color: var(--dark); }

/* ── Entry Content (pages & posts) ─────────────────────────── */
.entry-content { max-width: 780px; margin: 0 auto; }
.entry-content h2 { margin: 2em 0 0.7em; color: var(--dark); }
.entry-content h3 { margin: 1.6em 0 0.6em; }
.entry-content p  { font-size: 1.02rem; color: var(--text-mid); line-height: 1.85; }
.entry-content ul, .entry-content ol { margin: 0.8em 0 1.2em 1.5em; }
.entry-content li { margin-bottom: 0.5em; color: var(--text-mid); }
.entry-content strong { color: var(--dark); }
.entry-content blockquote { border-left: 4px solid var(--saffron); padding: 16px 24px; background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5em 0; font-style: italic; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.entry-content th { background: var(--saffron); color: var(--white); padding: 12px 16px; text-align: left; font-size: 0.85rem; }
.entry-content td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.entry-content tr:nth-child(even) td { background: var(--cream); }

/* ── Related Links Strip ─────────────────────────────────────── */
.related-strip { background: var(--dark2); padding: 52px 20px; }
.related-inner { max-width: var(--max-w); margin: 0 auto; }
.related-strip h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a {
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12); padding: 8px 18px;
  border-radius: 50px; transition: all var(--transition);
  white-space: nowrap;
}
.related-links a:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,149,43,0.1); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--dark2); color: rgba(255,255,255,0.65); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 64px 40px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; }
.footer-brand address { font-style: normal; font-size: 0.85rem; margin-bottom: 10px; line-height: 1.6; }
.footer-brand a { color: rgba(255,255,255,0.65); font-size: 0.85rem; display: block; margin-bottom: 4px; }
.footer-brand a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a  { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 9px; transition: all var(--transition); padding-left: 0; }
.footer-col a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 20px 0; font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-geo { color: rgba(255,255,255,0.25); font-size: 0.72rem; font-family: monospace; }

/* ── Info / Alert boxes ──────────────────────────────────────── */
.info-box { background: rgba(212,97,26,0.08); border-left: 4px solid var(--saffron); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5em 0; }
.info-box p { margin: 0; font-size: 0.92rem; }

/* ── Last Updated / EEAT ─────────────────────────────────────── */
.eeat-bar {
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px; font-size: 0.82rem; color: var(--text-light);
}
.eeat-bar .eeat-item { display: flex; align-items: center; gap: 6px; }
.eeat-bar strong { color: var(--dark); }

/* ── Scroll animations ───────────────────────────────────────── */
.animate-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ── WordPress Alignments ────────────────────────────────────── */
.alignleft  { float: left; margin: 0.5em 1.5em 1em 0; }
.alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.aligncenter{ display: block; margin: 1em auto; }
.wp-block-image.alignfull { margin-left: calc(-1 * var(--max-w) / 2); max-width: 100vw; }

/* ── Admin bar offset ────────────────────────────────────────── */
.admin-bar .site-header { top: 32px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-split { grid-template-columns: 1fr; gap: 36px; }
  .content-visual { padding: 32px 20px; }
  .quick-facts-inner { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  .section { padding: 60px 20px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 80px 24px 48px; }
  .hero-stats .stat-num { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .quick-facts-inner { grid-template-columns: repeat(2,1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; justify-content: center; }
  .qfb-inner { padding: 0 20px; }
  .qfb-item { min-width: 140px; padding: 12px 14px; }
  .page-hero-content { padding: 30px 24px 36px; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .quick-facts-inner { grid-template-columns: repeat(2,1fr); }
  .hero-stats { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .transport-grid { grid-template-columns: 1fr; }
  .breadcrumbs-bar .inner { padding: 0 16px; }
}
