/* Session 20 — Public magazine dark cinematic theme.
 *
 * Palette:
 *   navy   #1A2B4A — primary background
 *   ink    #1A2B4A — deeper background for cards / paywall
 *   gold   #C4A052 — accent (rules, small caps, anchors)
 *   ivory  #FAF8F5 — primary text
 *   muted  #B8B0A0 — secondary text, captions
 *
 * Typography:
 *   Cormorant Garamond — editorial body, headlines
 *   Jost              — utility text (captions, byline)
 *   DM Sans           — small caps, metadata, navigation
 */

:root {
  /* May 2026 brand alignment — magazine palette swapped from navy to
     BUILD3 brown-black + matching gold. Variable names retained. */
  --mz-navy: #0C0906;
  --mz-ink: #0C0906;
  --mz-card: #141009;
  --mz-gold: #B8921A;
  --mz-gold-soft: #F3E6BF;
  --mz-ivory: #FAF7F2;
  --mz-muted: #B8B0A0;
  --mz-muted-2: #B0AEAB;
  --mz-rule: rgba(184, 146, 26, 0.35);
  --mz-rule-soft: rgba(184, 146, 26, 0.18);
  --mz-text: var(--mz-ivory);
  --mz-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);

  --mz-cormorant: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --mz-jost: 'Jost', system-ui, -apple-system, sans-serif;
  --mz-dm: 'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html.mz, body.mz-shell {
  margin: 0;
  padding: 0;
  /* R1 (May 2026) — magazine lifted from brown-black body to near-
     white so editorial pages feel luminous. Article heroes and
     in-article photo blocks still render dark (their own bg). */
  background: #FCFAF6;
  color: #18120C;
  font-family: var(--mz-cormorant);
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Typography on the ivory body — heads + body to ink, muted to 70% ink. */
body.mz-shell h1, body.mz-shell h2, body.mz-shell h3, body.mz-shell h4 { color: #18120C; }
body.mz-shell .mz-muted, body.mz-shell .mz-tag, body.mz-shell .mz-eyebrow { color: rgba(24,18,12,0.6); }
/* The platform top bar stays dark (brand continuity) with translucent blur. */
body.mz-shell .mz-platform-bar {
  background: rgba(12,9,6,0.92);
  backdrop-filter: blur(10px);
  color: #F3E6BF;
  border-bottom: 1px solid rgba(184,146,26,0.18);
}
body.mz-shell .mz-platform-bar a { color: #F3E6BF; }

/* R7 — Section deck (under section title) on ivory body. */
body.mz-shell .mz-section-deck {
  font-family: var(--mz-cormorant); font-style: italic;
  color: rgba(24,18,12,0.62); font-size: 1.15rem; max-width: 60ch;
  margin: 0 auto 2.5rem; text-align: center;
}

/* R7 — Country tiles on /magazine/destinations index. */
body.mz-shell .mz-country-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem 4rem;
}
@media (max-width: 1100px) { body.mz-shell .mz-country-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { body.mz-shell .mz-country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { body.mz-shell .mz-country-grid { grid-template-columns: 1fr; } }
body.mz-shell .mz-country-card {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: 4px; text-decoration: none; display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(184,146,26,0.18);
  box-shadow: 0 14px 36px rgba(24,18,12,0.08);
}
body.mz-shell .mz-country-card:hover {
  transform: translateY(-4px); box-shadow: 0 28px 60px rgba(24,18,12,0.18);
}
body.mz-shell .mz-country-card__photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
body.mz-shell .mz-country-card:hover .mz-country-card__photo { transform: scale(1.04); }
body.mz-shell .mz-country-card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,9,6,0) 35%, rgba(12,9,6,0.78) 100%); }
body.mz-shell .mz-country-card__body { position: absolute; left: 20px; right: 20px; bottom: 20px; color: #FAF7F2; }
body.mz-shell .mz-country-card__flag { font-size: 28px; margin-bottom: 6px; }
body.mz-shell .mz-country-card__name { font-family: var(--mz-cormorant); font-style: italic; font-weight: 400; font-size: 1.625rem; color: #FAF7F2; margin: 0 0 4px; }
body.mz-shell .mz-country-card__regions { font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #F3E6BF; opacity: 0.8; margin-bottom: 6px; }
body.mz-shell .mz-country-card__count { font-family: var(--mz-dm); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #D4AF37; }

/* R8 — Contributor page header. */
body.mz-shell .mz-contributor-page { max-width: 1180px; margin: 0 auto; padding: 4rem 2rem; }
body.mz-shell .mz-contributor-header {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
  align-items: start; margin-bottom: 2rem;
}
@media (max-width: 760px) { body.mz-shell .mz-contributor-header { grid-template-columns: 1fr; } }
body.mz-shell .mz-contributor-header .mz-portrait {
  width: 280px; aspect-ratio: 1 / 1;
  background-size: cover; background-position: center;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(24,18,12,0.18);
  border: 1px solid rgba(184,146,26,0.18);
}
body.mz-shell .mz-contributor-role-label {
  font-family: var(--mz-dm); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--mz-gold); margin-bottom: 0.5rem;
}
body.mz-shell .mz-contributor-header h1 {
  font-family: var(--mz-cormorant); font-weight: 300; font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.75rem); margin: 0 0 0.5rem; color: #18120C;
}
body.mz-shell .mz-contributor-role {
  font-family: var(--mz-cormorant); font-style: italic;
  font-size: 1.25rem; color: rgba(24,18,12,0.85); margin-bottom: 1.5rem;
}
body.mz-shell .mz-contributor-expertise { margin-bottom: 1.25rem; }
body.mz-shell .mz-contributor-pill-label {
  font-family: var(--mz-dm); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(24,18,12,0.78); margin-bottom: 0.5rem;
}
body.mz-shell .mz-contributor-pills { display: flex; flex-wrap: wrap; gap: 6px; }
body.mz-shell .mz-contributor-pill {
  padding: 5px 12px; background: rgba(184,146,26,0.1);
  border: 1px solid rgba(184,146,26,0.25);
  color: var(--mz-gold);
  font-family: var(--mz-dm); font-size: 11px;
  letter-spacing: 0.06em; border-radius: 100px;
}
body.mz-shell .mz-contributor-bio {
  font-family: var(--mz-cormorant); font-size: 1.125rem;
  line-height: 1.75; color: rgba(24,18,12,0.92); margin-top: 1.25rem;
  max-width: 62ch;
}

a { color: var(--mz-gold); text-decoration: none; }
a:hover { color: var(--mz-gold-soft); }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--mz-gold); outline-offset: 3px; }

/* ─── Platform / magazine bars ──────────────────────────────────────────── */

.mz-platform-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid var(--mz-rule-soft);
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mz-muted);
}
.mz-mark {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--mz-ivory);
}
.mz-platform-nav { display: flex; gap: 24px; align-items: center; }
.mz-platform-nav a { color: var(--mz-muted); }
.mz-platform-nav a:hover { color: var(--mz-ivory); }
.mz-platform-cta { color: var(--mz-gold); }
.mz-platform-search { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.mz-platform-search svg { opacity: 0.85; transition: opacity .2s ease; }
.mz-platform-search:hover svg { opacity: 1; }

.mz-magazine-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--mz-rule);
  text-align: center;
}
.mz-magazine-mark {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--mz-ivory);
}
.mz-magazine-nav {
  display: flex;
  gap: 32px;
  font-family: var(--mz-dm);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mz-magazine-nav a { color: var(--mz-muted); }
.mz-magazine-nav a:hover { color: var(--mz-gold); }

/* On article reader pages let the article take the visual focus by
   simplifying the magazine bar to a single mark. */
body[data-page-type="article"] .mz-magazine-nav,
body[data-page-type="destination_guide"] .mz-magazine-nav,
body[data-page-type="photo_essay"] .mz-magazine-nav { display: none; }

/* ─── Main + skeleton ───────────────────────────────────────────────────── */

.mz-main { display: block; }
.mz-skel {
  background: linear-gradient(90deg, transparent 0, rgba(196,160,82,0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: mz-shimmer 2s linear infinite;
}
.mz-skel-hero { height: 60vh; margin: 0 0 24px; }
.mz-skel-line { height: 14px; margin: 12px 15%; border-radius: 2px; }
.mz-skel-block { height: 200px; margin: 24px 15%; }
@keyframes mz-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.mz-noscript {
  margin: 60px auto;
  max-width: 720px;
  padding: 40px;
  background: var(--mz-ink);
  border: 1px solid var(--mz-rule);
  font-family: var(--mz-jost);
  font-size: 15px;
}

/* ─── Common helpers ────────────────────────────────────────────────────── */

.mz-small-caps {
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mz-gold);
}
.mz-byline {
  font-family: var(--mz-dm);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mz-muted);
}
.mz-rule {
  border: 0;
  border-top: 1px solid var(--mz-rule);
  width: 50%;
  margin: 48px auto;
}
.mz-section-title {
  font-family: var(--mz-cormorant);
  font-size: 32px;
  letter-spacing: 0.01em;
  margin: 0 0 32px;
  text-align: center;
  color: var(--mz-ivory);
}

/* ─── Light-theme overrides — the magazine body is mz-shell (ivory),
   so titles, eyebrows and decks must use dark ink for legibility. The
   block at top of the file declares ivory text — we override on the
   shell body. May 2026. ───────────────────────────────────────────── */
body.mz-shell .mz-section-title       { color: #18120C; font-style: italic; font-weight: 400; }
body.mz-shell .mz-card-title          { color: #18120C; font-style: italic; }
body.mz-shell .mz-card-cat,
body.mz-shell .mz-card-cat .mz-small-caps,
body.mz-shell .mz-small-caps           { color: #8a6d10; letter-spacing: 0.28em; font-family: var(--mz-dm); font-size: 10px; text-transform: uppercase; }
body.mz-shell .mz-card-excerpt        { color: rgba(24,18,12,0.78); }
body.mz-shell .mz-card-byline         { color: rgba(24,18,12,0.62); font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.08em; }
body.mz-shell .mz-card-cover          { background-color: #ECE0C4; }
body.mz-shell .mz-card a:hover .mz-card-cover { filter: brightness(0.94); }
body.mz-shell .mz-section-deck        { color: rgba(24,18,12,0.72); }
body.mz-shell .mz-archive             { background: transparent; }
body.mz-shell .mz-archive-filters select,
body.mz-shell .mz-archive-filters input {
  background: #FFFFFF; color: #18120C; border: 1px solid rgba(184,146,26,0.32);
}
body.mz-shell .mz-archive-grid .mz-card { background: transparent; }

/* Magazine lead hero (homepage) — keep cream text only when there's a
   dark photo overlay; otherwise dark ink for legibility. */
body.mz-shell .mz-lead { color: #F3E6BF; }
body.mz-shell .mz-lead-title { color: #F3E6BF; }
body.mz-shell .mz-lead-sub   { color: #F3E6BF; }
body.mz-shell .mz-lead-cat   { color: #D4B07A; }

/* ─── Homepage ──────────────────────────────────────────────────────────── */

.mz-home { display: flex; flex-direction: column; gap: 80px; padding-bottom: 120px; }
.mz-home-section { padding: 0 8vw; }

.mz-lead {
  position: relative;
  height: 80vh;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.mz-lead::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,46,0.75) 0%, rgba(15,26,46,0.0) 60%);
  pointer-events: none;
}
.mz-lead-text {
  position: relative;
  z-index: 1;
  padding: 60px 8vw;
  max-width: 980px;
}
.mz-lead-cat { color: var(--mz-gold); margin-bottom: 14px; }
.mz-lead-title {
  font-family: var(--mz-cormorant);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--mz-ivory);
}
.mz-lead-sub {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--mz-ivory);
  margin: 0 0 24px;
  max-width: 800px;
}

.mz-grid-3 { display: grid; gap: 48px; grid-template-columns: repeat(3, 1fr); }
.mz-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); }
.mz-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mz-card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--mz-card);
  background-size: cover;
  background-position: center;
  transition: filter 240ms ease;
}
.mz-card a:hover .mz-card-cover { filter: brightness(0.78); }
.mz-card-cat { color: var(--mz-gold); }
.mz-card-title {
  font-family: var(--mz-cormorant);
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: var(--mz-ivory);
}
.mz-card-excerpt {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 16px;
  color: var(--mz-muted);
  margin: 0;
}
.mz-card-byline { color: var(--mz-muted-2); }

.mz-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mz-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}
.mz-photo-strip::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mz-cormorant);
  font-size: 36px;
  font-style: italic;
  color: var(--mz-ivory);
  background: rgba(15,26,46,0.4);
  pointer-events: none;
}
.mz-photo-strip img { aspect-ratio: 1 / 1; object-fit: cover; }

.mz-journal-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.mz-journal-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--mz-rule-soft); }
.mz-journal-item img { aspect-ratio: 1 / 1; object-fit: cover; width: 80px; }

.mz-geo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mz-geo-tile {
  padding: 32px 24px;
  background: var(--mz-card);
  border: 1px solid var(--mz-rule-soft);
  text-align: center;
  transition: border-color 240ms ease;
}
.mz-geo-tile:hover { border-color: var(--mz-gold); }
.mz-geo-tile-name { font-family: var(--mz-cormorant); font-size: 22px; color: var(--mz-ivory); }
.mz-geo-tile-count { font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mz-muted); }

.mz-contributor-spot { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.mz-contributor-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--mz-card);
  background-size: cover;
  background-position: center;
  filter: contrast(1.05);
}
.mz-contributor-name { font-family: var(--mz-cormorant); font-style: italic; font-size: 36px; margin: 0 0 12px; color: #18120C; }
.mz-contributor-role { font-family: var(--mz-cormorant); font-style: italic; color: rgba(24,18,12,0.78); margin: 0 0 16px; }
body.mz-shell .mz-contributor-card,
body.mz-shell .mz-contrib-tile,
body.mz-shell .mz-byline-card { color: #18120C; }
body.mz-shell .mz-contributor-card *,
body.mz-shell .mz-contrib-tile *,
body.mz-shell .mz-byline-card * { color: inherit; }
body.mz-shell .mz-contributor-card h3,
body.mz-shell .mz-contrib-tile h3,
body.mz-shell .mz-byline-card h3 { color: #18120C; }
body.mz-shell .mz-contributor-card .mz-muted,
body.mz-shell .mz-contrib-tile .mz-muted,
body.mz-shell .mz-byline-card .mz-muted { color: rgba(24,18,12,0.72); }

.mz-membership-context {
  margin: 0 8vw;
  padding: 48px 56px;
  background: var(--mz-ink);
  border: 1px solid var(--mz-rule);
  text-align: center;
}
.mz-membership-context h2 { font-family: var(--mz-cormorant); font-size: 28px; margin: 0 0 8px; color: var(--mz-ivory); }
.mz-membership-context p { font-family: var(--mz-cormorant); font-style: italic; color: var(--mz-muted); margin: 0 0 24px; }
.mz-cta {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--mz-gold);
  color: var(--mz-gold);
  font-family: var(--mz-dm);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.mz-cta:hover { background: var(--mz-gold); color: var(--mz-navy); }

/* ─── Article reader ────────────────────────────────────────────────────── */

.mz-article { padding-bottom: 120px; }

.mz-hero { position: relative; }
.mz-hero-full {
  height: 80vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.mz-hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,46,0.75) 0%, rgba(15,26,46,0) 55%);
}
.mz-hero-full .mz-hero-text {
  position: absolute;
  bottom: 60px;
  left: 8vw;
  right: 8vw;
  z-index: 1;
}
.mz-hero-framed { padding: 56px 8vw 24px; }
.mz-hero-framed .mz-hero-text { text-align: center; max-width: 900px; margin: 0 auto 32px; }
.mz-hero-framed-image { max-width: 1400px; margin: 0 auto; aspect-ratio: 16 / 9; background-size: cover; background-position: center; }

.mz-hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.mz-hero-split-image { background-size: cover; background-position: center; }
.mz-hero-split-text { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }

.mz-hero-cat { color: var(--mz-gold); margin-bottom: 16px; }
.mz-hero-title {
  font-family: var(--mz-cormorant);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--mz-ivory);
}
.mz-hero-sub {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--mz-ivory);
  margin: 0 0 24px;
  max-width: 800px;
}
.mz-hero-meta {
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mz-muted);
}

/* Block content */
.mz-blocks { max-width: 720px; margin: 64px auto; padding: 0 24px; }

.mz-block { margin: 36px 0; }
.mz-block-paragraph { font-family: var(--mz-cormorant); font-size: 19px; line-height: 1.7; color: var(--mz-ivory); }
.mz-block-paragraph[data-drop-cap="true"]::first-letter {
  font-family: var(--mz-cormorant);
  font-size: 80px;
  line-height: 1;
  font-weight: 500;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--mz-gold);
}

.mz-block-heading { font-family: var(--mz-cormorant); font-weight: 500; color: var(--mz-ivory); margin: 56px 0 16px; }
.mz-block-heading[data-level="2"] { font-size: 36px; }
.mz-block-heading[data-level="3"] { font-size: 28px; }

.mz-block-pull-quote {
  margin: 48px 0;
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--mz-gold);
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 32px;
  line-height: 1.3;
  color: var(--mz-ivory);
}
.mz-block-pull-quote .mz-attribution { display: block; margin-top: 16px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-style: normal; font-family: var(--mz-dm); color: var(--mz-muted); }

.mz-block-block-quote { margin: 32px 24px; padding-left: 16px; border-left: 1px solid var(--mz-gold); font-family: var(--mz-cormorant); font-style: italic; font-size: 20px; color: var(--mz-ivory); }
.mz-block-block-quote cite { display: block; margin-top: 12px; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--mz-dm); color: var(--mz-muted); font-style: normal; }

.mz-block-photo { margin: 48px 0; }
.mz-block-photo[data-mode="full_bleed"] { margin: 60px calc(50% - 50vw); }
.mz-block-photo[data-mode="centered_with_margins"] { max-width: 60%; margin-left: auto; margin-right: auto; }
.mz-block-photo[data-mode="left_aligned_with_text_wrap"] { float: left; max-width: 50%; margin-right: 24px; }
.mz-block-photo[data-mode="right_aligned_with_text_wrap"] { float: right; max-width: 50%; margin-left: 24px; }
.mz-block-photo img { width: 100%; }
.mz-block-photo .mz-caption { margin-top: 8px; font-family: var(--mz-jost); font-style: italic; font-size: 13px; color: var(--mz-muted); }
.mz-block-photo .mz-credit { font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mz-muted-2); }

.mz-block-photo-grid { display: grid; gap: 8px; margin: 48px 0; }
.mz-block-photo-grid[data-layout="2x2"] { grid-template-columns: 1fr 1fr; }
.mz-block-photo-grid[data-layout="3x3"] { grid-template-columns: repeat(3, 1fr); }
.mz-block-photo-grid[data-layout="horizontal_strip"] { grid-template-columns: repeat(4, 1fr); }
.mz-block-photo-grid[data-layout="diptych"] { grid-template-columns: 1fr 1fr; }
.mz-block-photo-grid[data-layout="triptych"] { grid-template-columns: repeat(3, 1fr); }
.mz-block-photo-grid[data-layout="two_thirds_with_thumbnail"] { grid-template-columns: 2fr 1fr; }
.mz-block-photo-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.mz-block-photo-essay { margin: 60px 0; }
.mz-block-photo-essay .mz-essay-image { margin: 24px 0; }
.mz-block-photo-essay[data-cadence="full_bleed_each"] .mz-essay-image { margin: 60px calc(50% - 50vw); }
.mz-block-photo-essay .mz-essay-intro { font-family: var(--mz-cormorant); font-style: italic; font-size: 19px; max-width: 720px; margin: 0 auto 32px; }

.mz-block-pull-list { margin: 40px 0; }
.mz-block-pull-list ol, .mz-block-pull-list ul { padding-left: 24px; margin: 0; }
.mz-block-pull-list li { margin-bottom: 24px; padding-left: 8px; }
.mz-block-pull-list li .mz-list-title { display: block; font-family: var(--mz-cormorant); font-size: 22px; font-weight: 500; color: var(--mz-ivory); }
.mz-block-pull-list li .mz-list-body { font-family: var(--mz-cormorant); font-size: 17px; color: var(--mz-muted); }

.mz-block-sidebar {
  margin: 48px 0;
  padding: 32px 40px;
  background: rgba(196,160,82,0.06);
  border-left: 2px solid var(--mz-gold);
}
.mz-block-sidebar .mz-sidebar-title { font-family: var(--mz-cormorant); font-size: 22px; margin: 0 0 12px; color: var(--mz-ivory); }
.mz-block-sidebar .mz-sidebar-body { font-family: var(--mz-cormorant); font-size: 16px; color: var(--mz-muted); }

.mz-block-callout {
  margin: 60px calc(50% - 50vw);
  padding: 64px 8vw;
  background: var(--mz-ink);
  text-align: center;
}
.mz-block-callout .mz-callout-title { font-family: var(--mz-cormorant); font-size: 28px; margin: 0 0 16px; }
.mz-block-callout .mz-callout-body { font-family: var(--mz-cormorant); font-size: 17px; color: var(--mz-muted); max-width: 720px; margin: 0 auto; }

.mz-block-section-break { display: flex; align-items: center; justify-content: center; padding: 36px 0; color: var(--mz-gold); }
.mz-block-section-break[data-style="thin_line"] { border-top: 1px solid var(--mz-rule); width: 50%; margin: 48px auto; padding: 0; }
.mz-block-section-break[data-style="ornament"]::before { content: '❦'; font-size: 24px; font-family: var(--mz-cormorant); }
.mz-block-section-break[data-style="extra_space"] { padding: 48px 0; }
.mz-block-section-break[data-style="section_marker"] { font-family: var(--mz-cormorant); font-style: italic; font-size: 24px; }

.mz-block-footnote { font-family: var(--mz-dm); font-size: 12px; color: var(--mz-muted); margin: 32px 0; padding: 16px 0; border-top: 1px solid var(--mz-rule-soft); }
.mz-footnote-anchor { color: var(--mz-gold); font-family: var(--mz-dm); font-size: 11px; vertical-align: super; }

.mz-block-embed { margin: 48px 0; aspect-ratio: 16 / 9; }
.mz-block-embed iframe { width: 100%; height: 100%; border: 0; }

.mz-audio-clip { margin: 32px 0; padding: 24px; background: var(--mz-ink); border: 1px solid var(--mz-rule-soft); }
.mz-audio-clip-title { font-family: var(--mz-cormorant); font-size: 18px; margin: 0 0 12px; }

.mz-block-byline-inline { display: flex; align-items: center; gap: 16px; margin: 40px 0; padding: 16px 0; border-top: 1px solid var(--mz-rule-soft); border-bottom: 1px solid var(--mz-rule-soft); }
.mz-block-byline-inline .mz-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--mz-card); }
.mz-block-byline-inline .mz-byline-name { font-family: var(--mz-cormorant); font-size: 17px; }
.mz-block-byline-inline .mz-byline-role { font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mz-muted); }

.mz-block-location-map { margin: 60px 0; height: 400px; background: var(--mz-card); border: 1px solid var(--mz-rule-soft); display: flex; align-items: center; justify-content: center; color: var(--mz-muted); font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ─── Inventory cards (hotel / experience / package) ──────────────────── */

.mz-inv-card {
  margin: 60px calc(50% - 42vw);
  max-width: 84vw;
  background: var(--mz-ink);
  border: 1px solid var(--mz-rule-soft);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  box-shadow: var(--mz-shadow);
}
.mz-inv-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--mz-card);
  background-size: cover;
  background-position: center;
}
.mz-inv-body { padding: 32px 40px; }
.mz-inv-cat { color: var(--mz-gold); margin-bottom: 12px; }
.mz-inv-name { font-family: var(--mz-cormorant); font-size: 28px; margin: 0 0 6px; color: var(--mz-ivory); }
.mz-inv-loc { font-family: var(--mz-cormorant); font-style: italic; font-size: 18px; color: var(--mz-muted); margin: 0 0 16px; }
.mz-inv-context { font-family: var(--mz-cormorant); font-size: 17px; color: var(--mz-ivory); }
.mz-inv-perks { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.mz-inv-perk { font-family: var(--mz-dm); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--mz-rule-soft); color: var(--mz-gold); }
.mz-inv-rate { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--mz-rule-soft); }
.mz-inv-rate-state { font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mz-muted); }
.mz-inv-link { font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mz-gold); }

/* ─── Article footer ──────────────────────────────────────────────────── */

.mz-footer-section { max-width: 1100px; margin: 80px auto; padding: 0 24px; }
.mz-byline-card { display: flex; gap: 20px; align-items: center; padding: 20px; border: 1px solid var(--mz-rule-soft); }
.mz-byline-card .mz-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--mz-card); flex-shrink: 0; }
.mz-share-row { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.mz-share-btn { padding: 10px 18px; border: 1px solid var(--mz-rule); color: var(--mz-muted); font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.mz-share-btn:hover { color: var(--mz-gold); border-color: var(--mz-gold); }

/* ─── Paywall ─────────────────────────────────────────────────────────── */

.mz-paywall {
  margin: 60px auto;
  max-width: 720px;
  padding: 64px 40px;
  text-align: center;
  background: var(--mz-ink);
  border: 1px solid var(--mz-rule);
}
.mz-paywall-title { font-family: var(--mz-cormorant); font-size: 28px; color: var(--mz-ivory); margin: 0 0 16px; }
.mz-paywall-desc { font-family: var(--mz-cormorant); font-style: italic; font-size: 18px; color: var(--mz-muted); margin: 0 0 32px; }
.mz-paywall-actions { display: flex; gap: 16px; justify-content: center; }

/* ─── Destination guide nav ───────────────────────────────────────────── */

.mz-guide-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; padding: 0 8vw; }
.mz-guide-toc { position: sticky; top: 24px; align-self: start; padding: 24px 0; border-right: 1px solid var(--mz-rule-soft); }
.mz-guide-toc-title { font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mz-muted); margin: 0 0 16px; }
.mz-guide-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.mz-guide-toc-list a { font-family: var(--mz-cormorant); font-size: 18px; color: var(--mz-muted); }
.mz-guide-toc-list a.is-active { color: var(--mz-gold); }
.mz-guide-section-title { font-family: var(--mz-cormorant); font-size: 32px; margin: 60px 0 24px; color: var(--mz-ivory); }

.mz-guide-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--mz-rule-soft);
  border-bottom: 1px solid var(--mz-rule-soft);
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mz-muted);
}
.mz-guide-glance strong { display: block; color: var(--mz-ivory); margin-bottom: 4px; }

.mz-guide-mobile-pills {
  display: none;
  position: sticky;
  bottom: 0;
  background: var(--mz-ink);
  padding: 12px 8vw;
  border-top: 1px solid var(--mz-rule);
  overflow-x: auto;
  white-space: nowrap;
  z-index: 10;
}
.mz-guide-mobile-pills a {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 8px;
  border: 1px solid var(--mz-rule);
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mz-gold);
}

/* ─── Photo essay reader ─────────────────────────────────────────────── */

.mz-essay-hero { position: relative; height: 100vh; background-size: cover; background-position: center; }
.mz-essay-hero-text { position: absolute; bottom: 80px; left: 8vw; right: 8vw; color: var(--mz-ivory); }

/* ─── Contributor profile ────────────────────────────────────────────── */

.mz-contributor-page { padding: 80px 8vw; max-width: 1200px; margin: 0 auto; }
.mz-contributor-header { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; margin-bottom: 80px; }
.mz-contributor-header .mz-portrait { aspect-ratio: 1 / 1; background: var(--mz-card); background-size: cover; background-position: center; box-shadow: var(--mz-shadow); }
.mz-contributor-header h1 { font-family: var(--mz-cormorant); font-size: 48px; margin: 0 0 8px; color: var(--mz-ivory); }
.mz-contributor-role { font-family: var(--mz-cormorant); font-style: italic; font-size: 22px; color: var(--mz-muted); margin: 0 0 16px; }
.mz-contributor-expertise { font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mz-gold); margin-bottom: 24px; }
.mz-contributor-bio { font-family: var(--mz-cormorant); font-size: 18px; line-height: 1.7; color: var(--mz-ivory); }

/* ─── Archive ────────────────────────────────────────────────────────── */

.mz-archive { padding: 60px 8vw; }
.mz-archive-filters { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--mz-rule-soft); }
.mz-archive-filters select, .mz-archive-filters input {
  background: var(--mz-ink);
  border: 1px solid var(--mz-rule-soft);
  color: var(--mz-ivory);
  padding: 10px 14px;
  font-family: var(--mz-dm);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.mz-archive-grid { display: grid; gap: 40px; grid-template-columns: repeat(3, 1fr); }
.mz-archive-loadmore { display: flex; justify-content: center; margin-top: 60px; }

/* ─── Geographic browse ──────────────────────────────────────────────── */

.mz-geo-page { padding: 80px 8vw; }
.mz-geo-page h1 { font-family: var(--mz-cormorant); font-size: 48px; text-align: center; margin: 0 0 48px; }
.mz-geo-page .mz-archive-grid { margin-top: 48px; }
.mz-geo-guide-feature {
  margin: 48px 0;
  padding: 56px 64px;
  background: var(--mz-ink);
  border: 1px solid var(--mz-gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.mz-geo-guide-feature .mz-guide-cover { aspect-ratio: 16 / 9; background: var(--mz-card); background-size: cover; background-position: center; }

/* ─── Lightbox ───────────────────────────────────────────────────────── */

.mz-lightbox {
  position: fixed; inset: 0;
  background: rgba(15,26,46,0.96);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.mz-lightbox.is-open { opacity: 1; pointer-events: auto; }
.mz-lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.mz-lightbox-close { position: absolute; top: 24px; right: 24px; font-family: var(--mz-dm); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mz-ivory); }
.mz-lightbox-caption { margin-top: 16px; max-width: 720px; text-align: center; font-family: var(--mz-jost); font-style: italic; font-size: 14px; color: var(--mz-muted); }
.mz-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); padding: 24px; color: var(--mz-ivory); }
.mz-lightbox-nav.prev { left: 24px; }
.mz-lightbox-nav.next { right: 24px; }

/* ─── Toast ──────────────────────────────────────────────────────────── */

.mz-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  background: var(--mz-ink); color: var(--mz-ivory);
  padding: 14px 24px;
  border: 1px solid var(--mz-gold);
  font-family: var(--mz-dm); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; transition: opacity 240ms ease;
  z-index: 100;
}
.mz-toast.is-visible { opacity: 1; }

/* ─── Footer ─────────────────────────────────────────────────────────── */

.mz-footer { padding: 48px 8vw; border-top: 1px solid var(--mz-rule-soft); display: flex; justify-content: space-between; align-items: center; font-family: var(--mz-dm); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mz-muted); }
.mz-footer-links { display: flex; gap: 24px; }

/* ─── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 1280px) {
  .mz-grid-3, .mz-strip { grid-template-columns: repeat(2, 1fr); }
  .mz-geo-grid { grid-template-columns: repeat(3, 1fr); }
  .mz-contributor-spot, .mz-contributor-header, .mz-geo-guide-feature { grid-template-columns: 1fr; }
  .mz-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .mz-guide-layout { grid-template-columns: 1fr; }
  .mz-guide-toc { display: none; }
  .mz-guide-mobile-pills { display: block; }
}
@media (max-width: 768px) {
  body.mz-shell { font-size: 17px; }
  .mz-grid-3, .mz-strip, .mz-geo-grid, .mz-archive-grid, .mz-photo-strip { grid-template-columns: 1fr; }
  .mz-magazine-nav { gap: 16px; flex-wrap: wrap; }
  .mz-blocks { padding: 0 16px; }
  .mz-block-photo[data-mode="left_aligned_with_text_wrap"],
  .mz-block-photo[data-mode="right_aligned_with_text_wrap"] { float: none; max-width: 100%; }
  .mz-hero-split { grid-template-columns: 1fr; }
  .mz-block-photo-grid { grid-template-columns: 1fr !important; }
  .mz-inv-card { margin: 40px 0; max-width: 100%; }
  .mz-share-row { flex-wrap: wrap; }
  .mz-platform-bar { padding: 12px 16px; }
  .mz-magazine-bar { padding: 20px 16px 16px; }
  .mz-archive-filters { flex-direction: column; align-items: stretch; }
  .mz-footer { flex-direction: column; gap: 16px; }
}

/* ─── Country detail page hero & supporting blocks
   (e.g. /magazine/destinations/JP) — May 2026 ───────────────────────── */
body.mz-shell .mz-geo-hero {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
body.mz-shell .mz-geo-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(14, 11, 5, 0.78) 0%,
    rgba(14, 11, 5, 0.45) 45%,
    rgba(14, 11, 5, 0) 80%);
  pointer-events: none;
}
body.mz-shell .mz-geo-hero__body {
  position: relative;
  z-index: 1;
  padding: 60px 8vw 56px;
  max-width: 980px;
  color: #F3E6BF;
}
body.mz-shell .mz-geo-hero__kicker {
  color: #D4B07A;
  letter-spacing: 0.36em;
  font-size: 11px;
  margin-bottom: 14px;
}
body.mz-shell .mz-geo-hero__title {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.02;
  color: #FBF3DE;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
body.mz-shell .mz-geo-hero__lede {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: #F3E6BF;
  margin: 0 0 14px;
  max-width: 58ch;
}
body.mz-shell .mz-geo-hero__regions {
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 230, 191, 0.78);
  margin: 0;
}

body.mz-shell .mz-geo-strip {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: baseline;
  max-width: 980px;
  margin: 56px auto 24px;
  padding: 28px 8vw 24px;
  border-bottom: 1px solid rgba(184, 146, 26, 0.32);
}
body.mz-shell .mz-geo-strip__label {
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #8a6d10;
}
body.mz-shell .mz-geo-strip__value {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 22px;
  color: #18120C;
  line-height: 1.35;
}

body.mz-shell .mz-geo-guide-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 56px auto;
  padding: 0 8vw;
}
body.mz-shell .mz-guide-cover {
  aspect-ratio: 4 / 3;
  background-color: #ECE0C4;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
body.mz-shell .mz-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 26px;
  border: 1px solid rgba(184, 146, 26, 0.45);
  color: #8a6d10;
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
body.mz-shell .mz-cta:hover { background: #B8921A; color: #FBF7EE; }

body.mz-shell .mz-geo-page .mz-archive-grid {
  padding: 0 8vw 80px;
  max-width: 1320px;
  margin: 24px auto 0;
}

body.mz-shell .mz-geo-empty {
  max-width: 640px;
  margin: 80px auto 120px;
  text-align: center;
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 18px;
  color: rgba(24,18,12,0.7);
}

body.mz-shell .mz-geo-seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 48px auto 8px;
  padding: 0 8vw;
}
@media (max-width: 720px) {
  body.mz-shell .mz-geo-seasons { grid-template-columns: 1fr; }
}
body.mz-shell .mz-geo-season {
  padding: 22px 26px 24px;
  border: 1px solid rgba(184, 146, 26, 0.28);
  background: rgba(255, 251, 240, 0.6);
  border-radius: 2px;
}
body.mz-shell .mz-geo-season__label {
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #8a6d10;
  margin-bottom: 8px;
}
body.mz-shell .mz-geo-season__value {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 20px;
  color: #18120C;
  line-height: 1.4;
}

body.mz-shell .mz-geo-section {
  max-width: 1320px;
  margin: 64px auto 8px;
  padding: 0 8vw;
}
body.mz-shell .mz-geo-section__head { margin-bottom: 22px; }
body.mz-shell .mz-geo-section__head .mz-section-title {
  font-size: 32px;
  margin: 6px 0 0;
}

body.mz-shell .mz-geo-hotels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}
body.mz-shell .mz-geo-hotel {
  background: #FBF7EE;
  border: 1px solid rgba(184, 146, 26, 0.22);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
}
body.mz-shell .mz-geo-hotel:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184, 146, 26, 0.18);
  border-color: rgba(184, 146, 26, 0.45);
}
body.mz-shell .mz-geo-hotel__photo {
  aspect-ratio: 4 / 3;
  background-color: #ECE0C4;
  background-size: cover;
  background-position: center;
}
body.mz-shell .mz-geo-hotel__body { padding: 16px 18px 20px; }
body.mz-shell .mz-geo-hotel__name {
  font-family: var(--mz-cormorant);
  font-weight: 500;
  font-size: 22px;
  color: #18120C;
  margin: 6px 0 8px;
  line-height: 1.2;
}
body.mz-shell .mz-geo-hotel__teaser {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 15px;
  color: rgba(24,18,12,0.75);
  line-height: 1.4;
  margin: 0;
}

body.mz-shell .mz-geo-experiences {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}

/* Wave 45 — What's on (calendar events for the destination) */
body.mz-shell .mz-geo-events {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
body.mz-shell .mz-geo-event {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  border: 1px solid rgba(184, 146, 26, 0.22);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
body.mz-shell .mz-geo-event:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(24,18,12,0.10); }
body.mz-shell .mz-geo-event__photo {
  aspect-ratio: 4 / 3;
  background-color: #ECE0C4;
  background-size: cover;
  background-position: center;
}
body.mz-shell .mz-geo-event__body { padding: 14px 16px 18px; }
body.mz-shell .mz-geo-event__name {
  font-family: var(--mz-cormorant);
  font-weight: 500;
  font-size: 20px;
  color: #18120C;
  margin: 6px 0 6px;
  line-height: 1.22;
}
body.mz-shell .mz-geo-event__cat {
  font-family: var(--mz-jost);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a6d10;
}

/* Wave 45 — Plan your trip CTA block */
body.mz-shell .mz-geo-cta {
  margin-top: 4rem;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(184,146,26,0.06) 0%, rgba(184,146,26,0.14) 100%);
  border-radius: 4px;
  text-align: center;
}
body.mz-shell .mz-geo-cta__inner { max-width: 720px; margin: 0 auto; }
body.mz-shell .mz-geo-cta .mz-section-deck { margin: 12px auto 28px; max-width: 540px; }
body.mz-shell .mz-geo-exp {
  background: #FBF7EE;
  border: 1px solid rgba(184, 146, 26, 0.22);
  border-radius: 2px;
  overflow: hidden;
}
body.mz-shell .mz-geo-exp__photo {
  aspect-ratio: 4 / 3;
  background-color: #ECE0C4;
  background-size: cover;
  background-position: center;
}
body.mz-shell .mz-geo-exp__body { padding: 16px 18px 20px; }
body.mz-shell .mz-geo-exp__name {
  font-family: var(--mz-cormorant);
  font-weight: 500;
  font-size: 22px;
  color: #18120C;
  margin: 6px 0 8px;
  line-height: 1.2;
}
body.mz-shell .mz-geo-exp__desc {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 15px;
  color: rgba(24,18,12,0.75);
  line-height: 1.4;
  margin: 0;
}

body.mz-shell .mz-cta.mz-cta--ghost {
  background: transparent;
}
body.mz-shell .mz-cta.mz-cta--ghost:hover {
  background: rgba(184, 146, 26, 0.08);
  color: #6b540a;
}
body.mz-shell .mz-geo-empty p { margin-bottom: 28px; }

@media (max-width: 760px) {
  body.mz-shell .mz-geo-hero__body { padding: 40px 24px 40px; }
  body.mz-shell .mz-geo-strip { grid-template-columns: 1fr; gap: 8px; padding: 24px 24px; margin: 32px auto 16px; }
  body.mz-shell .mz-geo-guide-feature { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; margin: 32px auto; }
}

/* ─── Magazine homepage — centered search hero ─────────────────── */
body.mz-shell .mz-search-hero {
  padding: 80px 8vw 60px;
  background: linear-gradient(180deg, #FCFAF6 0%, #F5EFE3 100%);
  border-bottom: 1px solid rgba(184, 146, 26, 0.18);
}
body.mz-shell .mz-search-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
body.mz-shell .mz-search-hero .mz-small-caps {
  color: #8a6d10;
  letter-spacing: 0.36em;
  font-size: 11px;
  margin-bottom: 18px;
}
body.mz-shell .mz-search-hero__title {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: #18120C;
  margin: 0 0 16px;
}
body.mz-shell .mz-search-hero__sub {
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(24, 18, 12, 0.7);
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}
body.mz-shell .mz-search-hero__input {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 580px;
  padding: 18px 22px;
  background: #FFFFFF;
  border: 1px solid rgba(184, 146, 26, 0.32);
  border-radius: 999px;
  cursor: text;
  color: #18120C;
  font-family: var(--mz-cormorant);
  font-style: italic;
  font-size: 17px;
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 14px rgba(24, 18, 12, 0.04);
}
body.mz-shell .mz-search-hero__input:hover,
body.mz-shell .mz-search-hero__input:focus {
  border-color: rgba(184, 146, 26, 0.6);
  box-shadow: 0 10px 24px rgba(24, 18, 12, 0.08);
  transform: translateY(-1px);
  outline: none;
}
body.mz-shell .mz-search-hero__input svg { color: #8a6d10; flex-shrink: 0; }
body.mz-shell .mz-search-hero__placeholder {
  flex: 1;
  color: rgba(24, 18, 12, 0.5);
}
body.mz-shell .mz-search-hero__kbd {
  font-family: var(--mz-dm);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(24, 18, 12, 0.55);
  padding: 4px 8px;
  border: 1px solid rgba(184, 146, 26, 0.32);
  border-radius: 4px;
  background: rgba(184, 146, 26, 0.06);
  white-space: nowrap;
}
@media (max-width: 600px) {
  body.mz-shell .mz-search-hero { padding: 50px 20px 40px; }
  body.mz-shell .mz-search-hero__kbd { display: none; }
  body.mz-shell .mz-search-hero__input { font-size: 15px; padding: 14px 18px; }
}

/* Wave 23 — sectioned magazine homepage layout. The new panels
   (Trending / Summer / World Cup / Hidden / Hotel features) share a
   common section head: small-caps eyebrow + italic Cormorant title +
   View-all link. */
body.mz-shell .mz-section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
body.mz-shell .mz-section-head .mz-small-caps {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a6d10;
  margin: 0;
}
body.mz-shell .mz-section-head .mz-section-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}
body.mz-shell .mz-section-head .mz-section-more {
  margin-left: auto;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8a6d10;
  text-decoration: none;
  transition: color 120ms ease;
}
body.mz-shell .mz-section-head .mz-section-more:hover {
  color: #18120C;
}
