/* Mauritian Rides — Modern Island Luxe design tokens */
:root {
  /* Core palette — inspired by Mauritius */
  --basalt-950: #0a0f14;        /* deep volcanic black */
  --basalt-900: #0f1720;
  --basalt-800: #182330;
  --basalt-700: #243243;
  --ink-600: #4a5a6e;
  --ink-400: #7d8ea3;
  --ink-300: #a8b5c4;

  --sand-50: #faf6ee;           /* warm sand cream */
  --sand-100: #f4ecd8;
  --sand-200: #e9dcb8;

  --lagoon-200: #9ee8e0;        /* turquoise lagoon */
  --lagoon-400: #2cd4c4;
  --lagoon-500: #0bb8ad;
  --lagoon-600: #089890;
  --lagoon-900: #0a4843;

  --coral-300: #ffc0a0;         /* sunset coral */
  --coral-500: #ff7a54;
  --coral-600: #ee5a30;

  --sunset-400: #ffb24a;         /* sunset gold */
  --sunset-500: #f89428;

  --reef-500: #e0395e;            /* coral reef pink-red for alerts */

  /* Semantic */
  --bg: var(--sand-50);
  --bg-alt: #fff;
  --fg: var(--basalt-950);
  --fg-soft: var(--basalt-700);
  --muted: var(--ink-400);
  --line: rgba(10, 15, 20, 0.08);
  --line-strong: rgba(10, 15, 20, 0.14);
  --accent: var(--lagoon-500);
  --accent-warm: var(--coral-500);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 44px;
  --r-pill: 999px;

  /* Shadows — layered for 3D depth */
  --shadow-sm: 0 1px 2px rgba(10,15,20,0.06), 0 2px 6px rgba(10,15,20,0.04);
  --shadow-md: 0 4px 10px rgba(10,15,20,0.06), 0 12px 30px rgba(10,15,20,0.08);
  --shadow-lg: 0 10px 30px rgba(10,15,20,0.10), 0 30px 80px rgba(10,15,20,0.14);
  --shadow-clay: 0 2px 0 rgba(255,255,255,0.8) inset, 0 -6px 18px rgba(10,15,20,0.06) inset, 0 18px 40px rgba(10,15,20,0.14);
  --shadow-glass: 0 1px 0 rgba(255,255,255,0.6) inset, 0 -1px 0 rgba(10,15,20,0.05) inset, 0 10px 30px rgba(10,15,20,0.10);
  --shadow-lagoon: 0 20px 60px rgba(11, 184, 173, 0.35);
  --shadow-coral: 0 20px 60px rgba(255, 122, 84, 0.35);

  /* Gradients */
  --grad-lagoon: linear-gradient(135deg, #2cd4c4 0%, #0bb8ad 40%, #089890 100%);
  --grad-sunset: linear-gradient(135deg, #ffb24a 0%, #ff7a54 55%, #ee5a30 100%);
  --grad-sky: linear-gradient(180deg, #ffd6a8 0%, #ffa07a 30%, #ff7a54 55%, #7a5fa5 85%, #2a3960 100%);
  --grad-sand: linear-gradient(180deg, #faf6ee 0%, #f4ecd8 100%);
  --grad-basalt: linear-gradient(180deg, #182330 0%, #0a0f14 100%);

  /* Type */
  --font-display: "Fraunces", "Playfair Display", ui-serif, Georgia, serif;
  --font-body: "Manrope", "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; margin: 0; line-height: 1.02; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Utility 3D effects */
.glass {
  background: rgba(255,255,255,0.62);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-glass);
}
.glass-dark {
  background: rgba(15, 23, 32, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.clay {
  background: linear-gradient(180deg, #fff 0%, #f4ecd8 100%);
  box-shadow: var(--shadow-clay);
  border-radius: var(--r-lg);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(10,15,20,0.06);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-soft);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad-sunset);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn-lagoon {
  background: var(--grad-lagoon);
  color: #fff;
  box-shadow: var(--shadow-lagoon);
}
.btn-ghost {
  background: rgba(10,15,20,0.06);
  color: var(--fg);
}
.btn-ghost:hover { background: rgba(10,15,20,0.1); }
.btn-dark {
  background: var(--basalt-950);
  color: var(--sand-50);
}

.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lagoon-600);
  font-weight: 500;
}

/* Layout helpers */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* Shared nav */
.mt-nav {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 0;
  background: rgba(250, 246, 238, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.mt-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.mt-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; font-size: 20px; }
.mt-logo-mark {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--grad-sunset);
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-coral), inset 0 1px 0 rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.mt-nav-links { display: flex; gap: 4px; align-items: center; }
.mt-nav-link {
  padding: 10px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--fg-soft);
  border-radius: var(--r-pill);
  transition: background .15s;
}
.mt-nav-link:hover, .mt-nav-link.active { background: rgba(10,15,20,0.06); color: var(--fg); }

/* Grain overlay for that photographic feel */
.grain::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
}

/* ──────────────────────────────────────────────────────────────
 * P0 — Accessibility + Mobile nav (added in WP theme conversion)
 * ────────────────────────────────────────────────────────────── */

/* Focus ring — a single semantic token, applied via :focus-visible */
:root {
  --focus-ring: 0 0 0 3px rgba(11, 184, 173, 0.45);
}
*:focus { outline: none; }
*:focus-visible { outline: none; box-shadow: var(--focus-ring); }
button:focus-visible, .btn:focus-visible, .mt-nav-link:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.tile-opt:focus-visible, .chip-sug:focus-visible, .chip:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Global overflow containment — kills horizontal scroll on mobile. Use `clip`,
   not `hidden`: `hidden` turns body into a scroll container and breaks every
   position:sticky descendant (the TOC sidebar); `clip` crops without that. */
html, body { max-width: 100vw; overflow-x: clip; }

/* ──────────────────────────────────────────────────────────────
 * Mobile nav: hamburger button + slide-in drawer
 * 3D treatment: glass drawer over basalt-block backdrop, layered shadows.
 * ────────────────────────────────────────────────────────────── */
.mt-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: rgba(10, 15, 20, 0.06);
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.mt-nav-toggle:hover { background: rgba(10, 15, 20, 0.1); }
.mt-nav-toggle:active { transform: scale(0.96); }
.mt-nav-toggle .bars {
  width: 20px; height: 14px; position: relative;
  display: inline-block;
}
.mt-nav-toggle .bars::before,
.mt-nav-toggle .bars::after,
.mt-nav-toggle .bars span {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--fg);
  transition: transform .25s ease, opacity .2s;
}
.mt-nav-toggle .bars::before { top: 0; }
.mt-nav-toggle .bars span    { top: 6px; }
.mt-nav-toggle .bars::after  { top: 12px; }
.mt-nav-toggle[aria-expanded="true"] .bars::before { top: 6px; transform: rotate(45deg); }
.mt-nav-toggle[aria-expanded="true"] .bars::after  { top: 6px; transform: rotate(-45deg); }
.mt-nav-toggle[aria-expanded="true"] .bars span    { opacity: 0; }

.mr-nav-drawer {
  position: fixed; inset: 0; z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.mr-nav-drawer.is-open { pointer-events: auto; visibility: visible; }

.mr-nav-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 15, 20, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .28s ease;
}
.mr-nav-drawer.is-open .mr-nav-backdrop { opacity: 1; }

.mr-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  padding: 24px 22px 28px;
  background:
    radial-gradient(ellipse 300px 220px at 100% 0%, rgba(255, 178, 74, 0.30), transparent 65%),
    linear-gradient(170deg, #182330 0%, #0a0f14 100%);
  color: #fff;
  box-shadow:
    -30px 0 80px rgba(0, 0, 0, 0.45),
    inset 1px 0 0 rgba(255, 255, 255, 0.06);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column; gap: 16px;
  overflow-y: auto;
}
.mr-nav-drawer.is-open .mr-nav-panel { transform: translateX(0); }

.mr-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mr-nav-top .mt-logo { color: #fff; }
.mr-nav-top .mt-logo-mark { /* inherits gradient from core, good on dark */ }

.mr-nav-close {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s;
}
.mr-nav-close:hover { background: rgba(255, 255, 255, 0.14); }

.mr-nav-group { padding-top: 12px; border-top: 1px dashed rgba(255,255,255,0.08); }
.mr-nav-group .g-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 10px;
}
.mr-nav-group .g-links { display: grid; gap: 2px; }
.mr-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px;
  border-radius: var(--r-md);
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: background .15s, transform .15s;
  min-height: 44px; /* touch target */
}
.mr-nav-item:hover { background: rgba(255,255,255,0.06); }
.mr-nav-item:active { transform: translateX(2px); }
.mr-nav-item.is-current { background: var(--grad-sunset); color: #fff; box-shadow: var(--shadow-coral); }

.mr-nav-footer {
  margin-top: auto; padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; color: var(--ink-300);
  font-family: var(--font-mono);
}

body.mr-nav-locked { overflow: hidden; }

/* Mobile breakpoint — swap desktop nav links for hamburger */
@media (max-width: 860px) {
  .mt-nav-links { display: none; }
  .mt-nav-toggle { display: inline-flex; }
}

/* ──────────────────────────────────────────────────────────────
 * Currency toggle (header) — pill button, lazy-loaded popover
 * ────────────────────────────────────────────────────────────── */
.mt-currency-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  min-height: 40px;
  border-radius: var(--r-pill);
  background: rgba(10, 15, 20, 0.05);
  font-size: 13px; font-weight: 600;
  color: var(--fg-soft);
  cursor: pointer;
  transition: background .15s;
}
.mt-currency-toggle:hover { background: rgba(10, 15, 20, 0.09); color: var(--fg); }
.mt-currency-toggle .flag { font-size: 16px; line-height: 1; }
.mt-currency-toggle .code { letter-spacing: 0.02em; }

/* ──────────────────────────────────────────────────────────────
 * Reduced-motion — P0 #6
 * Halt GSAP loops, CSS infinite animations, scroll-snaps.
 * ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.mr-reduced-motion [class*="pulse"],
.mr-reduced-motion [class*="cardFloat"],
.mr-reduced-motion [class*="pinFloat"] { animation: none !important; }

/* ──────────────────────────────────────────────────────────────
 * Touch-target bumps — P0 #8 (min 36px on utility chips/pills)
 * ────────────────────────────────────────────────────────────── */
.chip, .chip-sug, .tab {
  min-height: 36px;
  display: inline-flex; align-items: center;
}

/* Screen-reader-only utility (WP convention) */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* Contextual button variant used on sunset CTA bands (lifted from inline styles) */
.btn-ghost.mr-on-sunset {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn-ghost.mr-on-sunset:hover { background: rgba(255, 255, 255, 0.32); }

/* ──────────────────────────────────────────────────────────────
 * Currency picker dialog
 * ────────────────────────────────────────────────────────────── */
.mr-currency-dialog {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease;
}
.mr-currency-dialog.is-open { pointer-events: auto; opacity: 1; }

.mr-currency-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 15, 20, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.mr-currency-panel {
  position: absolute;
  top: 50%; left: 50%;
  width: min(92vw, 460px);
  max-height: min(86vh, 640px);
  transform: translate(-50%, -48%);
  padding: 22px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse 260px 180px at 100% 0%, rgba(255, 178, 74, 0.28), transparent 60%),
    linear-gradient(170deg, #182330 0%, #0a0f14 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.50),
    inset 1px 0 0 rgba(255, 255, 255, 0.06);
}
.mr-currency-dialog.is-open .mr-currency-panel { transform: translate(-50%, -50%); transition: transform .32s cubic-bezier(0.22, 1, 0.36, 1); }

.mr-currency-head { display: flex; justify-content: space-between; align-items: center; }
.mr-currency-head h3 { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 22px; font-weight: 500; }

.mr-currency-close {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px; line-height: 1;
  cursor: pointer;
}
.mr-currency-close:hover { background: rgba(255, 255, 255, 0.14); }

.mr-currency-search {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.mr-currency-search::placeholder { color: rgba(255, 255, 255, 0.45); }
.mr-currency-search:focus-visible { border-color: var(--lagoon-400); box-shadow: 0 0 0 3px rgba(11, 184, 173, 0.35); }

.mr-currency-list {
  flex: 1 1 auto;
  overflow-y: auto;
  display: grid;
  gap: 4px;
  padding-right: 4px;
}
.mr-currency-list::-webkit-scrollbar { width: 6px; }
.mr-currency-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 3px; }

.mr-currency-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background .15s, transform .15s;
  min-height: 48px;
}
.mr-currency-row:hover { background: rgba(255, 255, 255, 0.10); transform: translateX(2px); }
.mr-currency-flag { font-size: 22px; line-height: 1; }
.mr-currency-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mr-currency-name { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mr-currency-code { font-size: 11px; color: var(--ink-300); font-family: var(--font-mono); letter-spacing: 0.04em; }

.mr-currency-note {
  font-size: 12px;
  color: var(--ink-400);
  line-height: 1.5;
  padding: 10px 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────────
 * Theme shell: header actions row + skip-link + site footer + fallback
 * Modern Island Luxe applied — clay surfaces, layered shadows, basalt block.
 * ────────────────────────────────────────────────────────────── */

/* Skip link (a11y) — invisible until focused */
.mr-skip-link {
  position: absolute; left: -9999px; top: 8px;
  padding: 10px 16px;
  background: var(--basalt-950);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
  z-index: 100;
}
.mr-skip-link:focus { left: 16px; }

/* Logo text next to inline SVG mark */
.mt-logo { gap: 12px; }
.mt-logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
  white-space: nowrap;
}

/* Header right-side action group: currency toggle + Book CTA + hamburger */
.mt-nav-actions { display: flex; align-items: center; gap: 8px; }
.mt-nav-cta {
  padding: 10px 18px !important;
  font-size: 13px !important;
  min-height: 40px;
}
@media (max-width: 540px) {
  .mt-nav-cta { display: none; }
}

/* ──────────────────────────────────────────────────────────────
 * Site footer — basalt block with layered ornaments
 * ────────────────────────────────────────────────────────────── */
.mr-site-footer {
  position: relative;
  padding: 80px 0 32px;
  background:
    radial-gradient(ellipse 600px 400px at 100% 0%, rgba(255, 178, 74, 0.18), transparent 60%),
    radial-gradient(ellipse 500px 300px at 0% 100%, rgba(11, 184, 173, 0.14), transparent 60%),
    linear-gradient(180deg, #0f1720 0%, #0a0f14 100%);
  color: var(--ink-300);
  overflow: hidden;
}
.mr-site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}

.mr-footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .mr-footer-inner { grid-template-columns: 1fr; gap: 36px; } }

.mr-footer-brand .mt-logo-text { color: #fff; }
.mr-footer-tagline {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-300);
  line-height: 1.4;
  max-width: 320px;
}

.mr-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 640px) { .mr-footer-nav { grid-template-columns: 1fr 1fr; gap: 22px; } }

.mr-footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
  margin: 0 0 14px;
}
.mr-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mr-footer-col a {
  color: var(--ink-300);
  font-size: 14px;
  transition: color .15s;
}
.mr-footer-col a:hover { color: #fff; }

.mr-footer-meta {
  position: relative;
  grid-column: 1 / -1;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--ink-400);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mr-footer-sep { opacity: 0.4; }

/* ──────────────────────────────────────────────────────────────
 * Fallback page (index.php)
 * ────────────────────────────────────────────────────────────── */
.mr-fallback { padding: 80px 0 120px; }
.mr-article-header { margin-bottom: 28px; }
.mr-article-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
.mr-article-content { font-size: 17px; line-height: 1.6; color: var(--fg-soft); }
.mr-article-content > * + * { margin-top: 18px; }

.mr-empty {
  padding: 120px 0;
  text-align: center;
}
.mr-empty h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  margin: 0 0 14px;
}
.mr-empty p {
  font-size: 17px;
  color: var(--fg-soft);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.55;
}
.mr-empty p:last-child { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
