/* ===== Bonvoyah — editorial travel ===== */
:root {
  --paper: #F4EFE7;
  --paper-2: #EAE2D2;
  --sand: #E8DFD0;
  --ink: #1A1612;
  --ink-2: #3D352C;
  --ink-3: #6E6358;
  --line: #D9CFBE;
  --terracotta: #B85A3C;
  --forest: #1F4A47;
  --gold: #A88339;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1320px;
  --gut: 32px;
  --radius: 0px;
}

/* color themes (driven by Tweaks) */
[data-theme="coastal"] {
  --paper: #EEF1EE;
  --paper-2: #D9E1DE;
  --sand: #D9E1DE;
  --ink: #0F2A2C;
  --ink-2: #294241;
  --ink-3: #5C7270;
  --line: #BFCCC8;
  --terracotta: #C68A5A;
  --forest: #1B4744;
  --gold: #A88339;
}
[data-theme="dark"] {
  --paper: #161310;
  --paper-2: #221E18;
  --sand: #2A241D;
  --ink: #F2EBDD;
  --ink-2: #D3C7B0;
  --ink-3: #9C9080;
  --line: #3A3329;
  --terracotta: #D87854;
  --forest: #6FA39A;
  --gold: #D2A24A;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* === Type === */
.display, h1.display, h2.display, .serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.italic { font-style: italic; }
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.kicker-accent { color: var(--terracotta); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--terracotta);
}
.eyebrow.center::before { display: none; }

/* === Container === */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.boxed body, body.boxed {
  max-width: 1500px;
  margin: 0 auto;
  background: var(--paper);
}

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-top: 3px solid var(--terracotta);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}
.site-header .top-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 9px; padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.site-header .top-bar .meta { display: flex; gap: 24px; }
/* Left meta: purely informational — clearly passive */
.site-header .top-bar .meta:first-child { opacity: 0.5; user-select: none; }
/* Right meta: interactive links */
.site-header .top-bar .meta:last-child a {
  color: var(--ink-2);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-header .top-bar .meta:last-child a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
.site-header .main-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 24px; padding-bottom: 24px;
  gap: 24px;
}
.site-header .nav-left, .site-header .nav-right {
  display: flex; gap: 28px; align-items: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}
.site-header .nav-right { justify-content: flex-end; }
.site-header .nav-left a, .site-header .nav-right a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-2);
  transition: color 0.2s;
}
.site-header .nav-left a::after, .site-header .nav-right a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.site-header .nav-left a:hover, .site-header .nav-right a:hover {
  color: var(--terracotta);
  font-style: italic;
}
.site-header .nav-left a:hover::after, .site-header .nav-right a:hover::after { transform: scaleX(1); }
.site-header .nav-left .has-mega::after {
  content: "›";
  margin-left: 6px;
  display: inline-block;
  transform: rotate(90deg);
  font-size: 9px;
  opacity: 0.6;
}
.wordmark {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-style: italic;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.wordmark em {
  color: var(--terracotta);
  font-style: italic;
}
.wordmark .sub {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.42em;
  font-style: normal;
  color: var(--ink-3);
  margin-top: 6px;
  text-transform: uppercase;
}

/* Custom logo (uploaded via Customizer — replaces text wordmark) */
.custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-logo {
  max-height: 70px;
  width: auto;
  display: block;
}
@media (max-width: 1023px) {
  .custom-logo { max-height: 48px; }
}

/* Header variants */
[data-header="minimal"] .top-bar { display: none; }
[data-header="minimal"] .main-bar { padding-top: 18px; padding-bottom: 18px; }
[data-header="minimal"] .wordmark { font-size: 28px; }
[data-header="split"] .main-bar { grid-template-columns: auto 1fr auto; }
[data-header="split"] .wordmark { text-align: left; }
[data-header="split"] .nav-left { justify-content: center; }
[data-header="centered"] .main-bar {
  grid-template-columns: 1fr;
  padding-top: 22px; padding-bottom: 0;
}
[data-header="centered"] .wordmark { font-size: 44px; }
[data-header="centered"] .nav-left {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 36px;
  padding: 18px 0 22px;
}
[data-header="centered"] .nav-right { display: none; }

/* ── Mobile header (< 1024px) ── */
@media (max-width: 1023px) {
  .site-header .top-bar { display: none; }
  .site-header .nav-left,
  .site-header .nav-right .nav-cta { display: none; }
  .site-header .main-bar {
    grid-template-columns: auto 1fr auto;
    padding-top: 14px; padding-bottom: 14px;
  }
  .wordmark { font-size: 28px; text-align: left; }
  .wordmark .sub { display: none; }
}

/* Mega menu */
.mega {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: none;
  z-index: 60;
  padding: 36px 0 44px;
}
.mega.open { display: block; }
.mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.6fr;
  gap: 48px;
}
.mega-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ink-3);
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { padding: 6px 0; }
.mega-col a {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  transition: color 0.2s;
}
.mega-col a:hover { color: var(--terracotta); font-style: italic; }
.mega-feature {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.mega-feature .label {
  position: absolute;
  left: 16px; bottom: 16px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}
.mega-feature .kicker {
  position: absolute;
  left: 16px; top: 16px;
  color: var(--paper);
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
}

/* === Hero === */
.hero {
  position: relative;
  height: 78vh;
  min-height: 620px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.hero-slide.active .img { transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.25) 0%, rgba(20,16,12,0.05) 35%, rgba(20,16,12,0.65) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 80px;
}
.hero .kicker {
  color: rgba(244, 239, 231, 0.85);
}
.hero .kicker::before { background: rgba(244, 239, 231, 0.7); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 18px 0 18px;
  max-width: 14ch;
  color: var(--paper);
}
.hero h1 .italic { font-style: italic; }
.hero .lead {
  max-width: 52ch;
  font-size: 17px;
  color: rgba(244, 239, 231, 0.85);
  line-height: 1.55;
  margin: 0;
}
.hero .meta-row {
  display: flex; align-items: center; gap: 18px;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero .meta-row .pill {
  border: 1px solid rgba(244, 239, 231, 0.5);
  padding: 9px 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero .meta-row .pill.solid {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.hero-controls {
  position: absolute; right: var(--gut); bottom: 80px;
  z-index: 4;
  display: flex; align-items: center; gap: 16px;
  color: var(--paper);
}
.hero-controls .counter {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
}
.hero-controls .counter b {
  font-size: 22px;
  font-family: var(--serif);
  letter-spacing: 0;
  margin-right: 4px;
}
.hero-controls .arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(244, 239, 231, 0.5);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.hero-controls .arrow:hover { background: var(--paper); color: var(--ink); }
.hero-dots {
  position: absolute; left: var(--gut); bottom: 36px;
  z-index: 4;
  display: flex; gap: 8px;
}
.hero-dots span {
  width: 28px; height: 2px;
  background: rgba(244, 239, 231, 0.35);
  transition: background 0.3s;
}
.hero-dots span.active { background: var(--paper); }
.hero-scroll {
  position: absolute; right: var(--gut); top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 4;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(244, 239, 231, 0.7);
  text-transform: uppercase;
}

/* hero variants */
[data-hero="split"] .hero { height: 84vh; }
[data-hero="split"] .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 60px 0;
  align-items: end;
}
[data-hero="split"] .hero-slide::after {
  background: linear-gradient(90deg, rgba(20,16,12,0.7) 0%, rgba(20,16,12,0.1) 100%);
}
[data-hero="static"] .hero-controls,
[data-hero="static"] .hero-dots { display: none; }

/* === Section === */
section { padding: 96px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 40px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 12px 0 0;
  max-width: 18ch;
}
.section-head h2 .italic { font-style: italic; }
.section-head .head-right {
  text-align: right;
  font-size: 14px;
  color: var(--ink-2);
  max-width: 36ch;
  line-height: 1.65;
}
.section-head .head-right a {
  margin-top: 14px;
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--terracotta);
  transition: opacity 0.2s;
}
.section-head .head-right a:hover { opacity: 0.7; }

/* === Featured story === */
.featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured .ft-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
}
.featured .ft-img .badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.featured h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 22px 0 22px;
}
.featured h3 .italic { font-style: italic; }
.featured .ft-meta { display: flex; gap: 14px; align-items: center; }
.featured .ft-meta .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand);
  background-size: cover;
}
.featured .ft-meta .name { font-weight: 600; font-size: 13px; }
.featured .ft-meta .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.featured .ft-excerpt {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-style: italic;
}

/* === Destination cards === */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.dest-card {
  cursor: pointer;
  position: relative;
}
.dest-card .img {
  aspect-ratio: 3/4;
  background: var(--sand);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .img { transform: scale(0.99); }
.dest-card .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45));
}
.dest-card .info {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  color: var(--paper);
  z-index: 2;
}
.dest-card .name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}
.dest-card .name .italic { font-style: italic; }
.dest-card .country {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.9;
}
.dest-card .corner {
  position: absolute; top: 16px; right: 16px;
  z-index: 2;
  width: 36px; height: 36px;
  background: var(--terracotta);
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.dest-card .save {
  position: absolute; top: 16px; left: 16px;
  z-index: 3;
  width: 32px; height: 32px;
  background: rgba(244,239,231,0.85);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  font-size: 14px;
}
.dest-card:hover .save { opacity: 1; }
.dest-card .save.active { opacity: 1; color: var(--terracotta); }

/* === Journal === */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.j-card {
  cursor: pointer;
}
.j-card .img {
  aspect-ratio: 4/3;
  background: var(--sand);
  background-size: cover;
  margin-bottom: 18px;
  position: relative;
}
.j-card .cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.j-card .cat::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--terracotta);
  display: inline-block;
}
.j-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  transition: color 0.2s;
}
.j-card:hover h4 { color: var(--terracotta); font-style: italic; }
.j-card .excerpt {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 14px;
}
.j-card .meta {
  display: flex; gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.j-card .meta span:not(:last-child)::after {
  content: "·";
  margin-left: 12px;
  color: var(--line);
}
.j-card.lead-card { grid-column: span 2; grid-row: span 2; }
.j-card.lead-card .img { aspect-ratio: 16/11; margin-bottom: 24px; }
.j-card.lead-card h4 { font-size: 44px; line-height: 1; max-width: 14ch; }
.j-card.lead-card .excerpt { font-size: 16px; max-width: 48ch; }

/* === Collections === */
.collections {
  background: var(--paper-2);
}
.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.col-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.col-card .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}
.col-card:hover .img { transform: scale(1.04); }
.col-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55));
}
.col-card .body {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  color: var(--paper);
  z-index: 2;
}
.col-card .kicker {
  color: rgba(244,239,231,0.85);
  display: block;
  margin-bottom: 14px;
}
.col-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  margin: 0 0 14px;
  max-width: 14ch;
}
.col-card h3 .italic { font-style: italic; }
.col-card .count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex; gap: 10px; align-items: center;
}
.col-card .count::before { content: "→"; }

/* === Regions / world map === */
.regions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.region-list ul {
  list-style: none; margin: 0; padding: 0;
}
.region-list li {
  display: grid;
  grid-template-columns: 60px 1fr 80px 40px;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.3s ease;
}
.region-list li:hover { padding-left: 12px; }
.region-list li .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.region-list li .name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.region-list li:hover .name { font-style: italic; color: var(--terracotta); }
.region-list li .count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
}
.region-list li .arr {
  font-family: var(--serif);
  font-size: 22px;
  text-align: right;
  color: var(--ink-3);
}

.region-feature {
  position: sticky; top: 120px;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background: var(--sand);
  position: relative;
}
.region-feature .label {
  position: absolute;
  left: 24px; bottom: 24px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
}
.region-feature .kicker {
  position: absolute;
  left: 24px; top: 24px;
  color: var(--paper);
}
.region-feature .kicker::before { background: rgba(244,239,231,0.7); }

/* === Newsletter === */
.newsletter {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  text-align: center;
}
.newsletter .eyebrow { color: rgba(244,239,231,0.6); }
.newsletter .eyebrow::before { background: rgba(244,239,231,0.5); }
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  margin: 16px auto 18px;
  max-width: 18ch;
  letter-spacing: -0.01em;
}
.newsletter h2 .italic { font-style: italic; }
.newsletter p {
  max-width: 52ch;
  margin: 0 auto 40px;
  color: rgba(244,239,231,0.7);
  font-size: 16px;
}
.news-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(244,239,231,0.4);
  padding-bottom: 6px;
}
.news-form input {
  flex: 1;
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 0;
  outline: none;
}
.news-form input::placeholder { color: rgba(244,239,231,0.4); }
.news-form button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 14px 8px;
}
.news-form button:hover { color: var(--terracotta); }
.newsletter .perks {
  display: flex; justify-content: center; gap: 36px;
  margin-top: 50px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.55);
}
.newsletter .perks span::before {
  content: "✦";
  margin-right: 10px;
  color: var(--terracotta);
}

/* === Footer === */
.site-footer {
  background: var(--paper-2);
  padding: 80px 0 32px;
  border-top: 3px solid var(--terracotta);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; font-size: 14px; }
.footer-grid li a:hover { color: var(--terracotta); }
.footer-brand .wordmark {
  text-align: left;
  font-size: 36px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 32ch;
  line-height: 1.6;
}
.footer-base {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer-base .right { display: flex; gap: 24px; }

.footer-affiliate {
  padding: 16px 0 0;
  border-top: 1px solid rgba(244,239,231,0.08);
  margin-top: 32px;
}
.footer-affiliate p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  opacity: 0.5;
  margin: 0;
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.primary { background: var(--terracotta); color: var(--paper); border-color: var(--terracotta); }
.btn.primary:hover { background: var(--ink); border-color: var(--ink); }
.btn.ghost-light { border-color: rgba(244,239,231,0.5); color: var(--paper); }
.btn.ghost-light:hover { background: var(--paper); color: var(--ink); }

/* === Page-specific: Article === */
.article-hero {
  position: relative;
  height: 86vh;
  min-height: 700px;
  color: var(--paper);
}
.article-hero .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.article-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.7) 100%);
}
.article-hero .inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 80px;
}
.article-hero .cat {
  color: var(--terracotta);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.2vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin: 0 0 22px;
}
.article-hero h1 .italic { font-style: italic; }
.article-hero .dek {
  max-width: 56ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: rgba(244,239,231,0.9);
}
.article-meta-bar {
  display: flex; justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.article-meta-bar .who { display: flex; gap: 28px; align-items: center; }
.article-meta-bar .who .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--sand); }
.article-meta-bar .who .name { color: var(--ink); }
.article-meta-bar .social { display: flex; gap: 18px; align-items: center; }
.article-meta-bar .social a:hover { color: var(--terracotta); }

.article-body {
  display: grid;
  grid-template-columns: 80px 1fr 180px;
  gap: 48px;
  padding: 80px 0;
}
.article-body .ab-rail {
  position: sticky; top: 120px;
  align-self: start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.article-body .ab-rail .tag { display: block; margin-bottom: 8px; }
.article-body .ab-prose {
  max-width: 64ch;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
}
.ab-prose {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
}
.ab-prose p { margin: 0 0 1.6em; }
.ab-prose .dropcap::first-letter {
  font-family: var(--serif);
  font-size: 92px;
  line-height: 0.85;
  float: left;
  padding: 6px 14px 0 0;
  font-weight: 400;
  color: var(--terracotta);
}
.ab-prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  margin: 1.5em 0 0.6em;
  color: var(--ink);
}
.ab-prose h2 .italic { font-style: italic; }
.ab-prose blockquote {
  margin: 1.5em 0 1.8em;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--ink);
}
.ab-prose blockquote cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 14px;
}
.ab-prose .figure {
  margin: 2.4em 0 2.6em;
}
.ab-prose .figure .img {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background: var(--sand);
}
.ab-prose .figure figcaption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 12px;
  text-align: center;
}
.ab-prose .pullquote {
  margin: 2em 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.15;
  color: var(--ink);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ab-prose .pullquote .italic { font-style: italic; color: var(--terracotta); }
.article-body .ab-share {
  position: sticky; top: 120px;
  align-self: start;
}
.article-body .ab-share .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.article-body .ab-share .icon-stack {
  display: flex; flex-direction: column; gap: 8px;
}
.article-body .ab-share .icon-stack a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
}
.article-body .ab-share .icon-stack a:hover { background: var(--ink); color: var(--paper); }

/* === Destination page === */
.dest-hero {
  position: relative;
  height: 92vh;
  min-height: 680px;
  color: var(--paper);
}
.dest-hero .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.dest-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0) 30%, rgba(0,0,0,0.6));
}
.dest-hero .inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 60px 0;
}
.dest-hero .crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.7);
}
.dest-hero .crumbs span { margin: 0 12px; }
.dest-hero .title-row {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px;
}
.dest-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
}
.dest-hero h1 .italic { font-style: italic; }
.dest-hero .country {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.8);
  margin-bottom: 18px;
  display: block;
}
.dest-hero .facts {
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dest-hero .facts .fact {
  display: flex; gap: 14px; justify-content: flex-end;
  padding: 6px 0;
}
.dest-hero .facts .fact b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
}
.dest-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 100px 0;
  align-items: start;
}
.dest-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  margin: 14px 0 0;
}
.dest-intro h2 .italic { font-style: italic; }
.dest-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 1.4em;
}
.dest-intro p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 72px;
  float: left;
  line-height: 0.85;
  padding: 4px 12px 0 0;
  color: var(--terracotta);
}
.dest-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding-bottom: 80px;
}
.dest-gallery .img { background-size: cover; background-position: center; background-color: var(--sand); }
.dest-gallery .g1 { grid-column: 1/8; aspect-ratio: 16/10; }
.dest-gallery .g2 { grid-column: 8/13; aspect-ratio: 4/5; }
.dest-gallery .g3 { grid-column: 1/5; aspect-ratio: 1/1; }
.dest-gallery .g4 { grid-column: 5/9; aspect-ratio: 1/1; }
.dest-gallery .g5 { grid-column: 9/13; aspect-ratio: 1/1; }

/* === Search / itinerary === */
.search-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: calc(100vh - 130px);
}
.search-side {
  background: var(--paper-2);
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.search-side h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 8px;
  line-height: 1;
}
.search-side h2 .italic { font-style: italic; }
.search-side .lead {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 28px;
}
.filter-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.filter-block:last-child { border-bottom: none; }
.filter-block h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--paper);
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.range-input { width: 100%; }
.range-input input[type=range] {
  width: 100%; accent-color: var(--terracotta);
}
.range-input .vals {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  margin-top: 6px;
}

.search-main { padding: 36px 40px 80px; }
.search-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.search-toolbar .count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.search-toolbar .count b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
  color: var(--ink);
  margin-right: 6px;
}
.search-toolbar .right { display: flex; gap: 16px; align-items: center; }
.sort-select {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--line);
  padding: 10px 14px;
}
.view-toggle { display: flex; border: 1px solid var(--line); }
.view-toggle button {
  width: 36px; height: 36px;
  font-family: var(--mono);
  font-size: 12px;
}
.view-toggle button.active { background: var(--ink); color: var(--paper); }

.trip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.trip-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  cursor: pointer;
}
.trip-card .img {
  aspect-ratio: 4/5;
  background: var(--sand);
  background-size: cover;
  position: relative;
}
.trip-card .img .ribbon {
  position: absolute; top: 12px; left: 12px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 9px;
}
.trip-card .body { padding-top: 4px; }
.trip-card .country {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.trip-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 12px;
}
.trip-card h3 .italic { font-style: italic; }
.trip-card .excerpt {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 16px;
}
.trip-card .specs {
  display: flex; gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.trip-card .specs span::before { content: "—  "; color: var(--line); }
.trip-card .price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.trip-card .price-row .from {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.trip-card .price-row .price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

/* === Booking === */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: calc(100vh - 130px);
}
.booking-main { padding: 48px 56px; }
.steps {
  display: flex; gap: 8px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.step {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  padding-right: 24px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "—";
  position: absolute; right: 6px;
  color: var(--line);
}
.step .num {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}
.step.active { color: var(--ink); }
.step.active .num { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.step.done .num { background: var(--terracotta); color: var(--paper); border-color: var(--terracotta); }
.step.done { color: var(--ink-2); }

.booking-main h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  margin: 0 0 12px;
}
.booking-main h2 .italic { font-style: italic; }
.booking-main .step-lead {
  color: var(--ink-3);
  margin: 0 0 36px;
  max-width: 50ch;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.field {
  display: flex; flex-direction: column;
  gap: 6px;
}
.field.full { grid-column: 1/-1; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }

.option-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.option-row .check {
  width: 22px; height: 22px;
  border: 1px solid var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: transparent;
}
.option-row.selected .check { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.option-row .ttl { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.1; }
.option-row .sub { font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.option-row .price { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; text-align: right; }
.option-row .price b { display: block; font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: 0; }

.booking-side {
  background: var(--paper-2);
  padding: 48px 40px;
  border-left: 1px solid var(--line);
  position: sticky; top: 0; align-self: start;
  height: 100vh;
}
.booking-side h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.booking-side .summary-img {
  aspect-ratio: 4/3;
  background: var(--sand);
  background-size: cover;
  margin-bottom: 20px;
}
.booking-side .summary-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 10px;
}
.booking-side .summary-title .italic { font-style: italic; }
.booking-side .summary-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.line-item {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.line-item.total {
  padding-top: 18px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  align-items: baseline;
}
.line-item.total .v { font-size: 28px; }

.actions {
  display: flex; justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* === Toast === */
.toast {
  position: fixed;
  left: 50%; bottom: 32px;
  transform: translateX(-50%) translateY(10px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* === Photo placeholder (striped) === */
.placeholder {
  background-color: var(--sand);
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 14px,
    rgba(0,0,0,0.05) 14px,
    rgba(0,0,0,0.05) 15px
  );
  position: relative;
}
.placeholder .ph-label {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  padding: 12px;
}

/* === Density modifier === */
[data-density="cozy"] section { padding: 70px 0; }
[data-density="cozy"] .section-head { margin-bottom: 32px; padding-bottom: 28px; }
[data-density="cozy"] .dest-grid { gap: 18px; }
[data-density="airy"] section { padding: 120px 0; }
[data-density="airy"] .section-head { margin-bottom: 64px; padding-bottom: 48px; }

/* === Boxed === */
body.boxed-body {
  max-width: 1480px;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}
body.boxed-body .container { max-width: 1280px; }

/* === Responsive (basic) === */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .col-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured { grid-template-columns: 1fr; }
  .regions { grid-template-columns: 1fr; }
  .article-body { grid-template-columns: 1fr; padding: 60px 24px; }
  .article-body .ab-rail, .article-body .ab-share { position: static; }
  .ab-prose .figure { margin: 2em 0; }
  .search-wrap { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .trip-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-base { flex-direction: column; gap: 12px; text-align: center; }
  .footer-base .right { justify-content: center; }
}
/* ===== BonVoyah — India platform components (loaded after styles.css) ===== */

/* India warm palette tuned (Rajasthan-leaning) is already the "warm" default.
   These styles add the platform components the brief specifies. */

/* === Breadcrumb === */
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); }

/* === Reading progress === */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--terracotta);
  z-index: 100;
  width: 0%;
  transition: width 0.1s linear;
}

/* === Cookie banner (DPDP) === */
.cookie-banner {
  position: fixed; left: 24px; bottom: 24px; right: auto;
  max-width: 420px;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 24px;
  z-index: 150;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244,239,231,0.82);
}
.cookie-banner p a { text-decoration: underline; color: var(--paper); }
.cookie-banner .row { display: flex; gap: 10px; }
.cookie-banner .ck-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === Ad zones (design placeholders) === */
.ad-zone {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 11px, rgba(0,0,0,0.035) 11px, rgba(0,0,0,0.035) 12px),
    var(--paper-2);
  border: 1px dashed var(--line);
  display: grid; place-items: center;
  color: var(--ink-3);
  text-align: center;
  position: relative;
}
.ad-zone .ad-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ad-zone .ad-tag b { color: var(--ink-2); display: block; font-size: 11px; margin-bottom: 4px; letter-spacing: 0.12em; }
.ad-zone.lead { height: 90px; width: 100%; max-width: 728px; margin: 0 auto; }
.ad-zone.rect { height: 250px; width: 300px; margin: 0 auto; }
.ad-zone.tower { height: 600px; width: 300px; margin: 0 auto; }
.ad-disclosure-mini {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-top: 6px;
}
.ad-wrap { margin: 40px 0; }

/* === City pillar layout === */
.city-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
  padding: 64px 0 80px;
}
.city-main { min-width: 0; }
.city-side { position: sticky; top: 132px; display: flex; flex-direction: column; gap: 28px; }

.city-summary-box {
  background: var(--paper-2);
  border-left: 3px solid var(--terracotta);
  padding: 26px 30px;
  margin-bottom: 40px;
}
.city-summary-box .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.city-summary-box .label .spk {
  font-size: 9px;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 2px 6px;
  letter-spacing: 0.1em;
}
.city-summary-box p {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
}

.prose-block { max-width: 100%; }
.prose-block p { font-size: 17px; line-height: 1.75; color: var(--ink-2); margin: 0 0 1.4em; }
.prose-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  margin: 1.4em 0 0.5em;
  color: var(--ink);
}
.prose-block h2 .italic { font-style: italic; }
.prose-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 1.2em 0 0.4em;
}

/* === Authorship byline === */
.byline {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0;
}
.byline .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sand); background-size: cover; background-position: center;
  flex-shrink: 0;
}
.byline .who .name {
  font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1;
}
.byline .who .name a:hover { color: var(--terracotta); }
.byline .who .meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 6px;
}
.byline .updated {
  margin-left: auto; text-align: right;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
}

/* === Sub-page nav strip (pills, separate pages) === */
.subnav {
  position: sticky; top: 130px; z-index: 28;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.subnav .inner {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav .inner::-webkit-scrollbar { display: none; }
.subnav .pill {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: all 0.2s;
}
.subnav .pill:hover { border-color: var(--ink); }
.subnav .pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.subnav .strip-label {
  flex-shrink: 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3); margin-right: 6px;
}

/* === Booking.com widget === */
.booking-widget {
  border: 1px solid var(--line);
  background: var(--paper);
}
.booking-widget .bw-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.booking-widget .bw-head .t {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3);
}
.booking-widget .bw-head .logo {
  font-family: var(--sans); font-weight: 700; font-size: 13px; color: var(--forest);
  letter-spacing: -0.01em;
}
.hotel-card {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s;
}
.hotel-card:hover { background: var(--paper-2); }
.hotel-card .tier {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 3px 8px;
  display: inline-block; margin-bottom: 8px;
}
.hotel-card .tier.budget { background: #E3EDE6; color: var(--forest); }
.hotel-card .tier.mid { background: #F0E6D2; color: var(--gold); }
.hotel-card .tier.splurge { background: #F0DED6; color: var(--terracotta); }
.hotel-card .h-name { font-family: var(--serif); font-size: 20px; line-height: 1.1; }
.hotel-card .h-hood {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin: 5px 0 8px;
}
.hotel-card .h-note { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; margin-bottom: 12px; }
.hotel-card .h-cta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 6px;
}
.booking-widget .disclosure {
  padding: 12px 18px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em;
  color: var(--ink-3); line-height: 1.5;
  background: var(--paper-2);
}
.booking-widget .disclosure::before { content: "ⓘ "; color: var(--terracotta); }

.side-block .sb-head {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3);
  padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}
.side-guide {
  display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.side-guide .sg-img {
  width: 76px; height: 56px; flex-shrink: 0;
  background: var(--sand); background-size: cover; background-position: center;
}
.side-guide .sg-t { font-family: var(--serif); font-size: 16px; line-height: 1.2; }
.side-guide:hover .sg-t { color: var(--terracotta); }
.side-guide .sg-m {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 6px;
}

/* === FAQ accordion === */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; cursor: pointer;
  font-family: var(--serif); font-size: 24px; line-height: 1.25;
}
.faq-q .ic { font-family: var(--mono); font-size: 22px; color: var(--terracotta); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-a p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink-2); max-width: 64ch; }

/* === Video grid === */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { cursor: pointer; }
.video-card .v-thumb {
  aspect-ratio: 16/9; background: var(--ink); position: relative;
  background-size: cover; background-position: center; overflow: hidden;
}
.video-card .v-thumb::after {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.18);
  transition: background 0.2s;
}
.video-card:hover .v-thumb::after { background: rgba(0,0,0,0.05); }
.video-card .v-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(244,239,231,0.92); color: var(--ink);
  display: grid; place-items: center; z-index: 2; font-size: 16px;
  padding-left: 4px;
}
.video-card .v-dur {
  position: absolute; right: 8px; bottom: 8px; z-index: 2;
  background: rgba(0,0,0,0.78); color: #fff; padding: 3px 7px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em;
}
.video-card .v-cat {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terracotta); margin: 14px 0 8px; display: block;
}
.video-card .v-title { font-family: var(--serif); font-size: 21px; line-height: 1.2; }
.video-card .v-views {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 8px;
}

/* === Why BonVoyah strip === */
.why-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.why-col .why-ic {
  font-family: var(--serif); font-style: italic; font-size: 40px;
  color: var(--terracotta); line-height: 1; margin-bottom: 18px;
  width: 56px; height: 56px; border: 1px solid var(--line);
  display: grid; place-items: center;
}
.why-col h4 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0 0 10px; line-height: 1.1; }
.why-col p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }

/* === Insider cards === */
.insider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.insider-card { cursor: pointer; }
.insider-card .ic-photo {
  aspect-ratio: 1/1; background: var(--sand); background-size: cover; background-position: center;
  margin-bottom: 16px; position: relative;
}
.insider-card .ic-photo .city-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--paper); color: var(--ink);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 5px 10px;
}
.insider-card h4 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0 0 6px; line-height: 1; }
.insider-card:hover h4 { color: var(--terracotta); font-style: italic; }
.insider-card .ic-role {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px;
}
.insider-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* === Contributor bio strip (dark, full-width) === */
.contributor-strip { background: var(--ink); color: var(--paper); padding: 56px 0; }
.contributor-strip .cs-inner {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 36px; align-items: center;
}
.contributor-strip .cs-photo {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--ink-2); background-size: cover; background-position: center;
}
.contributor-strip .cs-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(244,239,231,0.55); margin-bottom: 10px;
}
.contributor-strip h3 {
  font-family: var(--serif); font-weight: 400; font-size: 38px; margin: 0 0 6px; line-height: 1;
}
.contributor-strip h3 .italic { font-style: italic; }
.contributor-strip .cs-city {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.contributor-strip p { margin: 0; max-width: 56ch; color: rgba(244,239,231,0.8); font-size: 15px; line-height: 1.6; }

/* === Share buttons === */
.share-btns { display: flex; gap: 10px; align-items: center; }
.share-btns .lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
}
.share-btns a {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); padding: 9px 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.2s;
}
.share-btns a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.share-btns a.wa:hover { background: #25623f; border-color: #25623f; }

/* === Content table === */
.content-table { width: 100%; border-collapse: collapse; margin: 1.4em 0 1.8em; }
.content-table tr { border-bottom: 1px solid var(--line); }
.content-table tr:first-child { border-top: 1px solid var(--ink); }
.content-table td { padding: 14px 16px 14px 0; font-size: 15px; vertical-align: top; line-height: 1.5; }
.content-table td:first-child {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); width: 38%; padding-top: 17px;
}
.content-table td:last-child { color: var(--ink); }

/* === Attraction fact list === */
.fact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.fact-list .fl-item { background: var(--paper); padding: 18px 20px; }
.fact-list .fl-k {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px;
}
.fact-list .fl-v { font-family: var(--serif); font-size: 22px; line-height: 1.1; }

/* === Gallery grid === */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid .g-cell { aspect-ratio: 1/1; background: var(--sand); background-size: cover; background-position: center; }

/* === "More cities coming soon" === */
.more-coming {
  margin-top: 24px;
  border: 1px dashed var(--line);
  padding: 40px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.more-coming .mc-t { font-family: var(--serif); font-style: italic; font-size: 28px; }
.more-coming .mc-s {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3);
}

/* === Route mode cards === */
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card {
  border: 1px solid var(--line); padding: 24px; cursor: pointer; transition: border-color 0.2s;
  position: relative;
}
.route-card:hover { border-color: var(--ink); }
.route-card.best { border-color: var(--terracotta); }
.route-card .best-tag {
  position: absolute; top: -1px; right: -1px;
  background: var(--terracotta); color: var(--paper);
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 5px 9px;
}
.route-card .rc-mode {
  font-family: var(--serif); font-style: italic; font-size: 30px; margin-bottom: 14px;
}
.route-card .rc-row {
  display: flex; justify-content: space-between; padding: 7px 0;
  font-size: 13px; border-bottom: 1px solid var(--line);
}
.route-card .rc-row .k {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
}

/* === Stats (advertise) === */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat-grid .stat { background: var(--paper); padding: 32px 24px; }
.stat-grid .stat .num {
  font-family: var(--serif); font-size: 56px; line-height: 1; letter-spacing: -0.02em;
}
.stat-grid .stat .num .italic { font-style: italic; color: var(--terracotta); }
.stat-grid .stat .lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 12px;
}

/* === Consent checkbox (DPDP) === */
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 18px; cursor: pointer; text-align: left;
}
.consent .box {
  width: 20px; height: 20px; border: 1px solid currentColor; flex-shrink: 0;
  display: grid; place-items: center; font-size: 12px; margin-top: 2px;
}
.consent .box.on { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.consent .ctxt { font-size: 12.5px; line-height: 1.5; opacity: 0.85; }
.consent .ctxt a { text-decoration: underline; }

/* === Partnership type cards === */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card { border: 1px solid var(--line); padding: 28px; }
.partner-card .pc-n {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px;
}
.partner-card h4 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0 0 10px; line-height: 1.1; }
.partner-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* === Schema/SEO design note badge (educational, in-demo) === */
.spec-note {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  border: 1px solid var(--line); padding: 4px 9px; background: var(--paper);
}
.spec-note::before { content: "{ }"; color: var(--terracotta); }

/* === Advertise CTA in nav === */
.nav-cta {
  font-family: var(--mono) !important; font-size: 10px !important;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--terracotta) !important;
  color: var(--terracotta) !important;
  padding: 9px 14px !important;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--terracotta) !important; color: var(--paper) !important; border-color: var(--terracotta); }

/* Search toggle — styled as a distinct UI element, not a nav link */
.search-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; cursor: pointer;
  border: 1px solid var(--line);
  padding: 7px 13px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
  transition: border-color 0.2s, color 0.2s;
}
.search-toggle:hover { border-color: var(--ink-2); color: var(--ink); }

/* === Search overlay === */
.search-overlay {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(26,22,18,0.96); color: var(--paper);
  display: flex; flex-direction: column;
  padding: 0;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-overlay .so-bar {
  border-bottom: 1px solid rgba(244,239,231,0.2);
  padding: 36px 0;
}
.search-overlay .so-input {
  display: flex; align-items: center; gap: 18px;
}
.search-overlay .so-input input {
  flex: 1; background: none; border: none; color: var(--paper);
  font-family: var(--serif); font-size: 48px; outline: none;
}
.search-overlay .so-input input::placeholder { color: rgba(244,239,231,0.3); }
.search-overlay .so-close { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
.search-overlay .so-tabs { display: flex; gap: 8px; padding: 24px 0; }
.search-overlay .so-tab {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid rgba(244,239,231,0.3);
}
.search-overlay .so-tab.active { background: var(--paper); color: var(--ink); }
.search-overlay .so-results { padding: 24px 0; overflow-y: auto; }
.search-overlay .so-result {
  display: flex; gap: 18px; align-items: center; padding: 18px 0;
  border-bottom: 1px solid rgba(244,239,231,0.12); cursor: pointer;
}
.search-overlay .so-result:hover .sr-t { color: var(--gold); }
.search-overlay .sr-img { width: 80px; height: 56px; background-size: cover; background-position: center; flex-shrink: 0; }
.search-overlay .sr-type { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.search-overlay .sr-t { font-family: var(--serif); font-size: 26px; margin-top: 4px; }

@media (max-width: 1100px) {
  .city-layout { grid-template-columns: 1fr; }
  .city-side { position: static; flex-direction: column; }
  .video-grid, .why-strip, .insider-grid, .route-grid, .partner-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .contributor-strip .cs-inner { grid-template-columns: 1fr; text-align: left; }
  .search-overlay .so-input input { font-size: 28px; }
  .fact-list { grid-template-columns: 1fr; }
}

/* ── WordPress admin bar offset ── */
html.wp-toolbar { padding-top: 32px; }
@media screen and (max-width: 782px) { html.wp-toolbar { padding-top: 46px; } }

/* ── Screen-reader / sr-only utility (for hero img SEO trick) ── */
.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Skip link (accessibility) ── */
.skip-link:focus {
  position: fixed; top: 8px; left: 8px;
  background: var(--ink); color: var(--paper);
  padding: 8px 16px; z-index: 9999;
  clip: auto; width: auto; height: auto;
}
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* ── Mobile menu overlay (keep existing JS IDs working) ── */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 200;
  flex-direction: column;
  padding: 32px 32px;
  display: none;
}
.mobile-menu-overlay:not([hidden]) { display: flex; }
.mobile-menu-overlay nav ul { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; list-style: none; padding: 0; }
.mobile-menu-overlay nav a { font-family: var(--serif); font-size: 2rem; }
.mobile-menu-close {
  align-self: flex-end;
  background: none; border: none;
  font-size: 1.25rem; color: var(--ink); cursor: pointer;
}
@media (min-width: 1024px) { .mobile-menu-overlay { display: none !important; } }

/* ── Search bar (inline, keep #search-bar ID working) ── */
.search-bar {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 16px 32px;
  z-index: 49;
}
.search-bar form { display: flex; gap: 12px; max-width: var(--maxw); margin-inline: auto; }
.search-bar input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}
.search-bar input:focus { border-color: var(--ink); }
.search-bar button {
  padding: 12px 24px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
}

/* ── Hamburger button (mobile) ── */
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 32px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; height: 1.5px; background: var(--ink); transition: transform 0.2s; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* ── Legacy city/article hero alias (for blog single, front-page slider) ── */
.bv-hero-slider {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.bv-hero-slider .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s cubic-bezier(0.3,0.7,0.4,1);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.62) 100%);
  z-index: 1;
}
.hero-slide .hero-content {
  position: absolute;
  bottom: 100px; left: 0; right: 0;
  z-index: 2;
  padding: 0 var(--gut);
  color: var(--paper);
}
@media (max-width: 768px) {
  .hero-slide .hero-content { bottom: 80px; }
}
.hero-controls {
  position: absolute;
  bottom: 80px; right: var(--gut);
  z-index: 4;
  display: flex; align-items: center; gap: 16px;
  color: var(--paper);
}
.hero-dots {
  position: absolute; left: var(--gut); bottom: 36px;
  z-index: 4; display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(244,239,231,0.4);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.2s;
}
.hero-dot.active { background: var(--paper); }
.hero-prev, .hero-next {
  background: none;
  border: 1px solid rgba(244,239,231,0.4);
  color: var(--paper);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hero-prev:hover, .hero-next:hover { background: var(--paper); color: var(--ink); }

/* ── Blog / city hero (legacy wrapper — used by single.php) ── */
.bv-city-hero {
  position: relative;
  height: 86vh;
  min-height: 600px;
  color: var(--paper);
}
.bv-city-hero .img,
.bv-city-hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.bv-city-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.65) 100%);
}
/* hero-img for old <img class="hero-img"> approach — hide visually, keep for SEO */
.bv-city-hero .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; /* hidden visually; LCP uses background-image */
}
.bv-city-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,22,18,0.2) 0%, rgba(26,22,18,0.65) 100%);
}
.bv-city-hero .hero-text {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%;
  padding: 48px 32px;
  max-width: var(--maxw);
  margin-inline: auto;
  color: var(--paper);
}

/* ── Contributor bio block (full-width dark) ── */
.bv-contributor-bio {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
}
.contributor-bio-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 640px) { .contributor-bio-inner { grid-template-columns: 1fr; } }
.contributor-bio-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.contributor-bio-text .name { font-family: var(--serif); font-size: 1.5rem; color: var(--paper); }
.contributor-bio-text .city {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-top: 4px;
}
.contributor-bio-text .bio { font-size: 0.9375rem; color: rgba(244,239,231,0.8); margin-top: 16px; line-height: 1.6; }
.contributor-bio-text .profile-link { display: inline-block; margin-top: 16px; font-size: 0.75rem; color: var(--paper); text-decoration: underline; }

/* ── Ad zones ── */
.bv-ad-zone { text-align: center; }
.bv-ad-zone-1, .bv-ad-zone-3 { margin-block: 32px; }

/* ── Newsletter ── */
.bv-newsletter {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  text-align: center;
}
.bv-newsletter .eyebrow { color: rgba(244,239,231,0.6); }
.bv-newsletter h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.02; margin: 16px auto 18px; max-width: 18ch; }
.bv-newsletter p { max-width: 52ch; margin: 0 auto 40px; color: rgba(244,239,231,0.7); font-size: 1rem; }
.newsletter-form {
  display: flex; max-width: 560px; margin: 0 auto;
  border-bottom: 1px solid rgba(244,239,231,0.4); padding-bottom: 6px;
}
.newsletter-form input[type="email"] {
  flex: 1; background: none; border: none; color: var(--paper);
  font-family: var(--sans); font-size: 1rem; padding: 14px 0; outline: none;
}
.newsletter-form input::placeholder { color: rgba(244,239,231,0.4); }
.newsletter-form button {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--paper); padding: 14px 8px; background: none; border: none;
}
.newsletter-consent {
  display: flex; align-items: flex-start; gap: 12px;
  max-width: 480px; margin: 16px auto 0;
  text-align: left; font-size: 0.75rem; color: rgba(244,239,231,0.7);
}
.newsletter-consent input[type="checkbox"] { flex-shrink: 0; margin-top: 2px; accent-color: var(--paper); }

/* ── Photo gallery ── */
.bv-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-block: 48px;
}
@media (max-width: 768px) { .bv-gallery { grid-template-columns: repeat(2, 1fr); } }
.bv-gallery img { aspect-ratio: 1; object-fit: cover; width: 100%; }

/* ── Social share (bv-social-share class retained for old PHP, maps to share-btns look) ── */
.bv-social-share { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 32px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); padding: 9px 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  background: none; color: var(--ink); cursor: pointer;
  transition: all 0.2s;
}
.share-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.share-whatsapp { border-color: #25D366; color: #25D366; }
.share-whatsapp:hover { background: #25623f; border-color: #25623f; color: var(--paper); }

/* ── Reading progress bar ── */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--terracotta);
  z-index: 100;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Booking / affiliate sidebar (legacy class, maps to booking-widget design) ── */
.bv-booking-sidebar {
  border: 1px solid var(--line);
  background: var(--paper);
}
.bv-booking-sidebar .sidebar-heading {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3);
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.hotel-list { display: flex; flex-direction: column; }
.hotel-item { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.hotel-tier {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 3px 8px;
  display: inline-block; margin-bottom: 8px;
}
.hotel-tier.tier-budget { background: #E3EDE6; color: var(--forest); }
.hotel-tier.tier-mid    { background: #F0E6D2; color: var(--gold); }
.hotel-tier.tier-splurge { background: #F0DED6; color: var(--terracotta); }
.hotel-details strong { font-family: var(--serif); font-size: 20px; line-height: 1.1; display: block; }
.hotel-neighbourhood {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin: 5px 0 8px; display: block;
}
.hotel-note { font-size: 0.78125rem; color: var(--ink-2); line-height: 1.5; margin-bottom: 12px; }
.hotel-link {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 6px;
}
.affiliate-disclosure {
  padding: 12px 18px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em;
  color: var(--ink-3); line-height: 1.5;
  background: var(--paper-2);
}

/* ── Booking inline widget (in blog body) ── */
.booking-inline {
  border: 1px solid var(--line); padding: 24px; margin-block: 32px;
  background: var(--sand);
}
.booking-notice {
  font-family: var(--mono); font-size: 0.75rem;
  color: var(--ink-3); letter-spacing: 0.05em;
  border: 1px solid var(--line); padding: 12px 16px;
  margin-top: 12px;
}

/* ── GetYourGuide / Amazon ── */
.bv-getyourguide { border: 1px solid var(--line); padding: 20px; margin-block: 32px; }
.bv-amazon-card  { border: 1px solid var(--gold); padding: 20px; margin-block: 32px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.amazon-label { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ── Profile page link ── */
.profile-link {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--terracotta); text-decoration: underline;
}

/* ── Attraction template ── */
.attr-main { padding-block: 48px; }
.attr-section { margin-bottom: 40px; }
.attr-quick-facts { border: 1px solid var(--line); padding: 20px; margin-bottom: 32px; }
.attr-insider-note {
  border-left: 3px solid var(--terracotta); padding-left: 24px;
  margin-block: 32px; font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; color: var(--ink-2);
}

/* ── Route template ── */
.route-main { padding-block: 48px; }
.route-header { margin-bottom: 32px; }
.route-mode-badge {
  display: inline-block; font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; background: var(--terracotta); color: white; margin-top: 12px;
}
.route-tips { background: var(--sand); padding: 20px; margin-block: 32px; }
.route-tips ul { list-style: disc; padding-left: 24px; }
.route-tips li { margin-bottom: 8px; font-size: 1rem; }

/* ── City/attraction card grids (kept for compatibility) ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .city-grid { grid-template-columns: 1fr; } }
.city-card { position: relative; overflow: hidden; cursor: pointer; }
.city-card-image { aspect-ratio: 4/3; background-size: cover; background-position: center; transition: transform 0.4s; }
.city-card:hover .city-card-image { transform: scale(1.03); }
.city-card-body { padding: 16px 0; }
.city-card-state { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; display: block; }
.city-card-name { font-family: var(--serif); font-size: 1.5rem; }
.city-card-hook { font-size: 0.875rem; color: var(--ink-3); margin-top: 8px; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; gap: 12px; cursor: pointer; }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.03); }
.blog-card-cat { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); }
.blog-card-title { font-family: var(--serif); font-size: 1.25rem; line-height: 1.3; }
.blog-card-meta { font-size: 0.6875rem; color: var(--ink-3); font-family: var(--mono); }

.attractions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.attraction-card { border: 1px solid var(--line); overflow: hidden; cursor: pointer; transition: box-shadow 0.2s; }
.attraction-card:hover { box-shadow: 0 4px 16px rgba(26,22,18,0.12); }
.attr-img { aspect-ratio: 4/3; object-fit: cover; width: 100%; background-size: cover; background-position: center; }
.attr-body { padding: 16px; }
.attr-name { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 8px; }
.attr-hours { font-size: 0.6875rem; color: var(--ink-3); font-family: var(--mono); margin-top: 8px; }
.attraction-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.attr-tag { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border: 1px solid var(--line); color: var(--ink-3); }
.best-badge { display: inline-block; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); border: 1px solid var(--forest); padding: 2px 6px; margin-bottom: 8px; }

.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.route-card { padding: 20px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.route-title { font-family: var(--serif); font-size: 1.25rem; }
.route-mode { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); }
.route-duration, .route-cost { font-size: 0.875rem; color: var(--ink-3); }

/* ── Sidebar elements (kept) ── */
.sidebar-heading {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3);
  padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}
.sidebar-more-guides { display: flex; flex-direction: column; gap: 12px; }

/* ── Why grid (homepage S3) ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { display: flex; flex-direction: column; gap: 12px; }
.why-icon { font-size: 1.5rem; color: var(--terracotta); line-height: 1; }
.why-item h3 { font-family: var(--serif); font-size: 1.25rem; }
.why-item p { font-size: 0.875rem; color: var(--ink-3); line-height: 1.7; }

/* ── Insider grid (homepage S6) ── */
.insider-grid-legacy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .insider-grid-legacy { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .insider-grid-legacy { grid-template-columns: 1fr; } }
.insider-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; display: block; }
.insider-name { font-family: var(--serif); font-size: 1.25rem; text-align: center; }
.insider-city { font-size: 0.875rem; color: var(--ink-3); margin-top: 4px; text-align: center; }
.insider-card:hover .insider-name { color: var(--terracotta); }

/* ── State intro ── */
.state-intro { max-width: 680px; font-size: 1.125rem; color: var(--ink-2); line-height: 1.8; margin-bottom: 48px; }

/* ── Contributor profile page ── */
.contributor-profile-header { display: flex; gap: 32px; align-items: flex-start; padding-block: 48px; }
@media (max-width: 640px) { .contributor-profile-header { flex-direction: column; } }
.profile-photo { width: 180px; height: 180px; object-fit: cover; flex-shrink: 0; }

/* ── Video grid (homepage S4) ── */
.bv-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .bv-video-grid { grid-template-columns: 1fr; } }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: pointer; background: var(--ink-2); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); color: white; font-size: 2rem; transition: background 0.2s; }
.video-thumb:hover .play-icon { background: rgba(0,0,0,0.5); }
.video-title { font-size: 0.875rem; font-weight: 500; margin-top: 12px; line-height: 1.4; }
.video-city { font-size: 0.6875rem; color: var(--ink-3); font-family: var(--mono); }

/* ── Content table (legacy wrapper) ── */
.bv-content-table { margin-block: 32px; overflow-x: auto; }
.bv-content-table table { width: 100%; border-collapse: collapse; }

/* ── Wave SVG transition ── */
.wave-transition { line-height: 0; overflow: hidden; }
.wave-transition svg { display: block; }

/* ── Utility ── */
.text-terracotta { color: var(--terracotta); }
.text-forest { color: var(--forest); }
.text-muted { color: var(--ink-3); }
.mt-auto { margin-top: auto; }
.desktop-only { display: none; }
@media (min-width: 1024px) { .desktop-only { display: block; } }
