/* ============================================================
   HotelsInHaldwani.com, Design System
   Style: Kumauni heritage × Bold travel × Modern editorial
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terracotta-deep); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --terracotta: #BF4F2C;
  --terracotta-deep: #802E12;
  --terracotta-soft: #F2D9CC;
  --pine: #1F4438;
  --pine-soft: #DEE9DF;
  --gold: #C9A04F;
  --gold-soft: #F6EDD7;
  --cream: #FAF5EC;
  --paper: #FFFFFF;
  --charcoal: #1A1612;
  --slate: #5C5650;
  --line: #E5DBC8;
  --shadow-sm: 0 1px 2px rgba(26,22,18,.05), 0 1px 3px rgba(26,22,18,.06);
  --shadow-md: 0 4px 12px rgba(26,22,18,.08), 0 2px 6px rgba(26,22,18,.05);
  --shadow-lg: 0 18px 40px rgba(26,22,18,.10), 0 6px 14px rgba(26,22,18,.06);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --container: 1200px;
  --container-narrow: 880px;
}

/* ---------- Typography ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; }
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--terracotta);
  margin-bottom: .8rem;
}
.lead { font-size: 1.18rem; color: var(--slate); max-width: 60ch; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }
.divider {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: clamp(40px, 6vw, 72px) 0;
}

/* Kumauni-inspired ribbon divider (subtle motif) */
.motif-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: clamp(40px, 6vw, 64px) 0;
  color: var(--gold);
}
.motif-divider::before,
.motif-divider::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.motif-divider .glyph {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  letter-spacing: .8em;
  color: var(--gold);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
  display: grid; place-items: center;
  color: white; font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}
.brand:hover { color: var(--terracotta-deep); }
.brand small {
  display: block;
  font-size: 0.66rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: transform .15s ease, background .15s ease;
}
.nav-cta:hover { background: var(--terracotta-deep); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1rem;
  color: var(--charcoal);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(300px, 42vh, 420px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  /* Primary: Alpenglow on Himalayan Peaks, Nata Dol, Uttarakhand by Shivam Maini,
     CC BY 4.0 via Wikimedia Commons. Saved locally at assets/img/hero-alpenglow.jpg.
     Fallback: a Kumaon foothill photo so the hero still reads as mountains if the
     local file ever 404s (no beach/house imagery allowed per editorial rules). */
  background-image:
    url('../img/hero-alpenglow.jpg'),
    url('https://images.unsplash.com/photo-1606117331085-5760e3b58520?w=1920&q=85&auto=format&fit=crop');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: #1a2d3a;
  z-index: -2;
  filter: saturate(1.08) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  /* Stronger black overlay so headline + eyebrow + body text always pop */
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.78) 100%),
    radial-gradient(ellipse at 25% 70%, rgba(191,79,44,.22), transparent 55%);
  z-index: -1;
}
.hero-inner {
  padding: 40px 24px 34px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  color: white;
}
.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  color: white;
  max-width: 20ch;
  font-weight: 600;
  /* Multi-layer shadow: tight crisp edge + soft halo for readability over busy imagery */
  text-shadow:
    0 1px 2px rgba(0,0,0,.5),
    0 2px 8px rgba(0,0,0,.4),
    0 4px 30px rgba(0,0,0,.35);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-shadow:
    0 1px 2px rgba(0,0,0,.55),
    0 2px 12px rgba(0,0,0,.45);
}
.hero p {
  color: rgba(255,255,255,.96);
  max-width: 56ch;
  font-size: 1.15rem;
  margin-top: 1.2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 2px 10px rgba(0,0,0,.35);
}
.hero .eyebrow {
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 18px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  border: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: white !important;
  box-shadow: 0 8px 20px rgba(191,79,44,.35);
}
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: white !important;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-dark {
  background: var(--charcoal);
  color: white !important;
}
.btn-dark:hover { background: var(--terracotta-deep); }

/* ---------- Trust / Stats Strip ---------- */
.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--terracotta-deep);
  font-weight: 600;
}
.trust-item span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate);
  margin-top: 6px;
}

/* ---------- Section header ---------- */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 22ch; margin: 0; }
.section-head p { color: var(--slate); max-width: 50ch; margin: 0; }

/* ---------- Category cards (4 segments on home) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  display: flex;
  align-items: end;
  color: white;
  transition: transform .25s ease;
  box-shadow: var(--shadow-md);
}
.category-card:hover { transform: translateY(-4px); color: white; }
.category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .5s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,22,18,.85) 100%);
  z-index: -1;
}
.category-card-body { padding: 24px; }
.category-card .tag {
  display: inline-block;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.category-card h3 {
  color: white;
  font-size: 1.5rem;
  margin: 0 0 6px;
}
.category-card p {
  color: rgba(255,255,255,.85);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Hotel listing cards ---------- */
.hotel-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.hotel-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.hotel-card .hotel-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.hotel-card .hotel-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.hotel-card:hover .hotel-img img { transform: scale(1.05); }
.hotel-card .rank {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--charcoal);
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.hotel-card .hotel-body {
  padding: 36px 36px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hotel-card h3 { margin-top: 0; margin-bottom: 8px; }
.hotel-card .meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 12px 0 18px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-soft);
  color: var(--terracotta-deep);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.chip.pine { background: var(--pine-soft); color: var(--pine); }
.chip.terracotta { background: var(--terracotta-soft); color: var(--terracotta-deep); }
.hotel-card .hotel-desc { color: var(--slate); margin-bottom: 18px; }
.hotel-card .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 22px;
  list-style: none;
  padding: 0;
}
.hotel-card .features li::before {
  content: "✦";
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.85rem;
}
.hotel-card .price-tag {
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: 8px;
}
.hotel-card .price-tag strong {
  color: var(--terracotta-deep);
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

/* Reverse layout for alternating cards */
.hotel-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}
.hotel-card:nth-child(even) .hotel-img { order: 2; }
.hotel-card:nth-child(even) .hotel-body { order: 1; padding: 36px 0 36px 36px; }

/* ---------- Featured grid (compact cards on home) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card .feature-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.feature-card .feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.feature-card .micro {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--terracotta); font-weight: 600; margin-bottom: 6px;
}
.feature-card h4 { font-family: 'Fraunces', serif; font-size: 1.2rem; margin: 0 0 8px; font-weight: 600; }
.feature-card p { color: var(--slate); font-size: 0.94rem; margin-bottom: 14px; flex: 1; }
.feature-card .read-more {
  font-size: 0.88rem; font-weight: 500;
  color: var(--terracotta); align-self: start;
}
.feature-card .read-more::after { content: " →"; transition: margin-left .2s ease; }
.feature-card .read-more:hover::after { margin-left: 4px; }

/* ---------- About teaser / Editorial split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-narrow { gap: 48px; }

/* ---------- FAQ ---------- */
.faq { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: start;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--terracotta);
  font-size: 1.6rem;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 16px 0 4px;
  color: var(--slate);
  max-width: 70ch;
}

/* ---------- Newsletter / CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 100%);
  color: white;
  padding: clamp(56px, 7vw, 84px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  opacity: 0.25;
  pointer-events: none;
}
.cta-band h2 { color: white; max-width: 24ch; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; }
.cta-band .form-row {
  display: flex; gap: 12px; max-width: 480px; margin-top: 24px;
  flex-wrap: wrap;
}
.cta-band input {
  flex: 1; min-width: 220px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  font-size: 0.98rem;
  font-family: inherit;
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; max-width: 600px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--paper);
  color: var(--charcoal);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(191,79,44,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 22px 0 0;
}
.breadcrumbs a { color: var(--slate); }
.breadcrumbs a:hover { color: var(--terracotta); }
.breadcrumbs .sep { margin: 0 10px; color: var(--line); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid h5 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,.78); font-size: 0.94rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid .brand { color: white; }
.footer-grid .brand small { color: rgba(255,255,255,.6); }
.footer-grid .blurb { color: rgba(255,255,255,.65); font-size: 0.94rem; max-width: 38ch; margin-top: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 0.86rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap; gap: 16px;
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(360px, 50vh, 480px);
  display: grid; align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: white;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(26,22,18,.30) 0%, rgba(26,22,18,.78) 100%);
}
.page-hero h1 { color: white; max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,.92); max-width: 56ch; font-size: 1.1rem; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero-inner { padding: 96px 24px 48px; }

/* Background images per category (set via class) */
.bg-tourists::before  { background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1920&q=80&auto=format&fit=crop'); }
.bg-couples::before   { background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1920&q=80&auto=format&fit=crop'); }
.bg-weddings::before  { background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80&auto=format&fit=crop'); }
.bg-events::before    { background-image: url('https://images.unsplash.com/photo-1530023367847-a683933f4172?w=1920&q=80&auto=format&fit=crop'); }
.bg-about::before     { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80&auto=format&fit=crop'); }
.bg-blog::before      { background-image: url('https://images.unsplash.com/photo-1455390582262-044cdead277a?w=1920&q=80&auto=format&fit=crop'); }
.bg-contact::before   { background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&q=80&auto=format&fit=crop'); }

/* ---------- Blog placeholder ---------- */
.blog-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line);
}
.blog-empty .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--gold);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .hotel-card,
  .hotel-card:nth-child(even) { grid-template-columns: minmax(0, 1fr); }
  .hotel-card .hotel-body,
  .hotel-card:nth-child(even) .hotel-body { padding: 24px; order: unset; }
  .hotel-card:nth-child(even) .hotel-img { order: unset; }
  .hotel-card .features { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: start; }
  .footer-bottom { flex-direction: column; align-items: start; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 34px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-cta { display: none; }
  body { background: white; }
}

/* ===== Social icons (header + footer) ====================================
   Single GTM-tracked source; no duplicate analytics. Added 2026-06-06. */
.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
}
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .15s ease, color .15s ease, background .15s ease, border-color .15s ease;
}
.nav-social:hover { transform: translateY(-1px); border-color: var(--terracotta); }
.nav-social.fb:hover { color: #1877F2; }
.nav-social.wa:hover { color: #25D366; }
.nav-social svg { display: block; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.footer-social:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); border-color: rgba(255,255,255,0.32); }
.footer-social.fb:hover { color: #8AB4F8; }
.footer-social.wa:hover { color: #5BE0A1; }
.footer-social svg { flex-shrink: 0; }
.footer-social span { white-space: nowrap; }

@media (max-width: 768px) {
  .nav-socials { display: none; }   /* hide in mobile nav; still in footer + mobile menu open state */
  .mobile-open .nav-socials { display: inline-flex; margin: 8px 0 0; }
}

.nav-cta-search{background:var(--terracotta);}
.nav-cta-search:hover{background:var(--terracotta-deep);}
.nav-mobile-only{display:none}
@media (max-width:768px){.nav-mobile-only{display:block}}

/* ===== Resources dropdown + News/Events styles (restored 2026-06-17) ===== */
/* ===== Resources dropdown (added 2026-06-12, v2 fixes) =================
   - Aligned vertically with sibling nav <a> via center + baseline.
   - Panel sits flush with toggle: invisible bridge keeps hover alive.
   - Active-class underline suppressed inside the dropdown. */
.nav-links { align-items: center; }
.has-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent; border: 0;
  padding: 6px 0; margin: 0;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--charcoal);
  cursor: pointer;
  vertical-align: baseline;
}
.nav-dropdown-toggle:hover { color: var(--terracotta); }
.nav-dropdown-toggle .caret {
  font-size: 0.7rem; line-height: 1; transition: transform .15s ease;
}
.has-dropdown.open .nav-dropdown-toggle .caret,
.has-dropdown:hover .nav-dropdown-toggle .caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 60;
}
/* Invisible bridge fills the 8px visual gap so hover stays alive. */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown li { padding: 0; }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus { background: var(--cream); color: var(--terracotta-deep); }
/* Kill the global .nav-links a.active::after underline INSIDE dropdowns. */
.nav-dropdown a.active::after,
.nav-dropdown a::after { content: none !important; display: none !important; }

/* Mobile: collapse dropdown into inline list under the toggle. */
@media (max-width: 768px) {
  .has-dropdown { width: 100%; display: block; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown {
    position: static; display: none;
    box-shadow: none; border: 0;
    padding: 6px 0 6px 14px;
    margin: 6px 0 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    min-width: 0;
  }
  .nav-dropdown::before { display: none; }
  .has-dropdown.open .nav-dropdown { display: block; }
  .has-dropdown:hover .nav-dropdown { display: none; }
  .has-dropdown.open:hover .nav-dropdown { display: block; }
}

/* ===== News & Events listing + detail (added 2026-06-12) ==============
   Archive cards reuse .feature-card from the blog. The styles below cover
   only the event-detail page (.event-hero) + the author archive page. */

.event-status {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--pine-soft);
  color: var(--pine);
  margin-bottom: 8px;
}

/* Event detail page hero */
.event-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 32px 0 24px;
}
.event-hero .event-hero-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--cream);
}
.event-hero .event-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.event-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1.1; margin: 12px 0 18px; }
.event-hero .event-quickfacts { display: grid; gap: 10px; margin: 18px 0 24px; color: var(--slate); }
.event-hero .event-quickfacts b { color: var(--charcoal); margin-right: 6px; }
.event-hero .event-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
@media (max-width: 768px) {
  .event-hero { grid-template-columns: 1fr; padding: 24px 0 8px; gap: 22px; }
}

/* Author byline used on event pages */
.author-byline {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 24px 0 8px;
  font-size: 0.94rem;
  color: var(--slate);
}
.author-byline .author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pine), var(--gold));
  color: white;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 700;
  flex-shrink: 0;
}
.author-byline strong { color: var(--charcoal); font-weight: 600; }
.author-byline a { color: var(--terracotta-deep); font-weight: 500; }

/* Author archive page */
.author-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}
.author-card .author-avatar-lg {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pine), var(--gold));
  color: white;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 3.2rem;
}
.author-card h1 { font-family: 'Fraunces', serif; font-size: 2rem; margin: 0 0 6px; }
.author-card .author-tag { color: var(--terracotta-deep); font-weight: 500; margin: 0 0 14px; font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; }
.author-card .author-bio { color: var(--slate); margin: 0 0 14px; }
.author-card .author-contact { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.92rem; }
.author-card .author-contact span { background: var(--cream); padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); }
@media (max-width: 768px) {
  .author-card { grid-template-columns: 1fr; text-align: left; padding: 24px; gap: 18px; }
  .author-card .author-avatar-lg { width: 96px; height: 96px; font-size: 2.4rem; }
}

/* Breadcrumb bar (used on event detail) */
.breadcrumb {
  font-size: 0.86rem; color: var(--slate);
  padding: 18px 0 0;
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "\203A"; margin-left: 8px; color: var(--line); }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--terracotta-deep); }
.breadcrumb li[aria-current="page"] { color: var(--charcoal); font-weight: 500; }

/* Footer: small print row with author archive link */
.footer-meta {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-meta a { color: rgba(255,255,255,0.72); }
.footer-meta a:hover { color: white; }

/* Author avatar variant: show a photo instead of the letter placeholder (added 2026-06-17) */
.author-card .author-avatar-img { overflow: hidden; padding: 0; background: var(--cream); }
.author-card .author-avatar-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
