/* ============================================================
   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(520px, 72vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  /* Layered: local file first (when saved at assets/img/hero-haldwani.jpg),
     Himalayan-foothills Unsplash fallback so the hero always renders. */
  background-image:
    url('../img/hero-haldwani.jpg'),
    url('https://images.unsplash.com/photo-1465301055284-72f355cfd745?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: 120px 24px 64px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  color: white;
}
.hero h1 {
  color: white;
  max-width: 18ch;
  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: 28px;
}
.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 0 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 { grid-template-columns: 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: 90px; }
  .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; }
}
