/* ═══════════════════════════════════════════════════════════
   Motenza — Luxury Magazine Flow (Layout 50)
   Premium editorial · dark muted luxury · mixed typography
   ═══════════════════════════════════════════════════════════ */

:root {
  --mz-ink: #0c0c0e;
  --mz-paper: #f3efe6;
  --mz-cream: #e8e2d4;
  --mz-champagne: #c4a55a;
  --mz-champagne-light: #dbc68a;
  --mz-slate: #2a2d34;
  --mz-slate-soft: #3d4149;
  --mz-muted: #8a8680;
  --mz-line: rgba(196, 165, 90, 0.22);
  --mz-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --mz-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
  --mz-font-serif: 'Shippori Mincho', 'Cormorant Garamond', Georgia, serif;
  --mz-font-display: 'Cormorant Garamond', 'Shippori Mincho', serif;
  --mz-font-sans: 'DM Sans', 'IBM Plex Sans JP', system-ui, sans-serif;
  --mz-masthead-h: 72px;
  --mz-spine-w: 52px;
  --mz-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mz-radius: 2px;
}

[data-theme="light"] {
  --mz-ink: #1a1a1c;
  --mz-paper: #faf8f4;
  --mz-cream: #f0ebe2;
  --mz-slate: #e4e0d8;
  --mz-slate-soft: #d8d3ca;
  --mz-muted: #6b6760;
  --mz-line: rgba(196, 165, 90, 0.35);
  --mz-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --mz-shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.mz-body {
  font-family: var(--mz-font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--mz-paper);
  background: var(--mz-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--mz-champagne); text-decoration: none; transition: color 0.25s var(--mz-ease); }
a:hover { color: var(--mz-champagne-light); }
address { font-style: normal; }

.mz-kicker {
  font-family: var(--mz-font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mz-champagne);
}

.mz-wrap {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

.mz-skip {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 8px 16px; background: var(--mz-champagne); color: var(--mz-ink);
}
.mz-skip:focus { left: 16px; top: 16px; }

/* ── Spine (home only) ── */
.mz-spine {
  position: fixed;
  left: 0; top: var(--mz-masthead-h); bottom: 0;
  width: var(--mz-spine-w);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background: linear-gradient(180deg, var(--mz-slate) 0%, var(--mz-ink) 100%);
  border-right: 1px solid var(--mz-line);
}

.mz-spine__vol {
  writing-mode: vertical-rl;
  font-family: var(--mz-font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--mz-muted);
  margin-bottom: 16px;
}

.mz-spine__folios {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  scrollbar-width: none;
}
.mz-spine__folios::-webkit-scrollbar { display: none; }

.mz-spine__folios button {
  width: 28px; height: 28px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--mz-muted);
  font-size: 9px;
  font-family: var(--mz-font-sans);
  cursor: pointer;
  border-radius: var(--mz-radius);
  transition: all 0.3s var(--mz-ease);
}
.mz-spine__folios button:hover,
.mz-spine__folios button.is-active {
  border-color: var(--mz-champagne);
  color: var(--mz-champagne);
  background: rgba(196, 165, 90, 0.08);
}

.mz-spine__progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--mz-champagne);
  font-weight: 600;
}

.mz-spine__bar {
  width: 3px; height: 60px;
  background: var(--mz-slate-soft);
  border-radius: 2px;
  overflow: hidden;
}
.mz-spine__bar i {
  display: block;
  width: 100%;
  background: var(--mz-champagne);
  height: 0%;
  transition: height 0.5s var(--mz-ease);
}

/* ── Masthead ── */
.mz-masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s var(--mz-ease);
}
[data-theme="light"] .mz-masthead { background: rgba(250, 248, 244, 0.94); }

.mz-masthead.is-scrolled { box-shadow: var(--mz-shadow-soft); }

.mz-masthead__rule {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mz-champagne), transparent);
}
.mz-masthead__rule--thin { height: 1px; opacity: 0.4; }

.mz-masthead__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  max-width: 1400px;
  margin-inline: auto;
}

.mz-masthead__brand {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.mz-masthead__brand:hover { color: inherit; }
.mz-masthead__issue {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mz-muted);
}
.mz-masthead__brand strong {
  font-family: var(--mz-font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.mz-masthead__brand em {
  font-size: 10px;
  font-style: normal;
  color: var(--mz-muted);
  letter-spacing: 0.1em;
}

.mz-masthead__nav {
  display: flex;
  gap: 28px;
}
.mz-masthead__nav a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mz-muted);
  position: relative;
  padding-bottom: 4px;
}
.mz-masthead__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--mz-champagne);
  transition: width 0.3s var(--mz-ease);
}
.mz-masthead__nav a:hover,
.mz-masthead__nav a.is-active { color: var(--mz-paper); }
.mz-masthead__nav a:hover::after,
.mz-masthead__nav a.is-active::after { width: 100%; }

.mz-masthead__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.mz-masthead__tool,
.mz-masthead__cart {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mz-line);
  background: transparent;
  color: var(--mz-paper);
  border-radius: var(--mz-radius);
  cursor: pointer;
  transition: all 0.25s var(--mz-ease);
  position: relative;
}
.mz-masthead__tool:hover,
.mz-masthead__cart:hover {
  border-color: var(--mz-champagne);
  color: var(--mz-champagne);
}

.mz-masthead__cart span {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 16px; height: 16px;
  background: var(--mz-champagne);
  color: var(--mz-ink);
  font-size: 9px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mz-icon-moon { display: none; }
[data-theme="light"] .mz-icon-sun { display: none; }
[data-theme="light"] .mz-icon-moon { display: block; }

.mz-masthead__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.mz-masthead__burger span {
  display: block;
  height: 1.5px;
  background: var(--mz-paper);
  transition: transform 0.3s var(--mz-ease);
}
.mz-masthead__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mz-masthead__burger.is-open span:nth-child(2) { opacity: 0; }
.mz-masthead__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Search & Drawer ── */
.mz-search, .mz-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--mz-ease);
}
.mz-search.is-open, .mz-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mz-search__veil, .mz-drawer__veil {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.mz-search__sheet {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(480px, calc(100% - 40px));
  padding: 40px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
  transition: transform 0.35s var(--mz-ease);
}
.mz-search.is-open .mz-search__sheet { transform: translate(-50%, -50%) scale(1); }

.mz-search__form {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.mz-search__form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--mz-line);
  background: var(--mz-ink);
  color: var(--mz-paper);
  font-family: var(--mz-font-sans);
  border-radius: var(--mz-radius);
}
.mz-search__hints {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--mz-muted);
}
.mz-search__hints button {
  padding: 4px 12px;
  border: 1px solid var(--mz-line);
  background: transparent;
  color: var(--mz-paper);
  font-size: 11px;
  cursor: pointer;
  border-radius: var(--mz-radius);
}

.mz-drawer__panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(320px, 85vw);
  padding: 48px 32px;
  background: var(--mz-slate);
  border-left: 1px solid var(--mz-line);
  transform: translateX(100%);
  transition: transform 0.4s var(--mz-ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mz-drawer.is-open .mz-drawer__panel { transform: translateX(0); }
.mz-drawer__panel a {
  font-family: var(--mz-font-display);
  font-size: 22px;
  color: var(--mz-paper);
}
.mz-drawer__meta {
  margin-top: auto;
  font-size: 13px;
  color: var(--mz-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Buttons ── */
.mz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--mz-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--mz-radius);
  transition: all 0.3s var(--mz-ease);
  text-decoration: none;
}
.mz-btn--champagne {
  background: var(--mz-champagne);
  color: var(--mz-ink);
}
.mz-btn--champagne:hover {
  background: var(--mz-champagne-light);
  color: var(--mz-ink);
  transform: translateY(-2px);
  box-shadow: var(--mz-shadow-soft);
}
.mz-btn--line {
  background: transparent;
  color: var(--mz-paper);
  border: 1px solid var(--mz-line);
}
.mz-btn--line:hover {
  border-color: var(--mz-champagne);
  color: var(--mz-champagne);
}
.mz-btn--sm { padding: 8px 16px; font-size: 10px; }

/* ── Reveal ── */
.mz-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--mz-ease), transform 0.7s var(--mz-ease);
}
.mz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .mz-reveal { opacity: 1; transform: none; }
}

/* ── Main & Magazine ── */
.page-home .mz-main { margin-left: var(--mz-spine-w); }

.mz-magazine {
  scroll-snap-type: y proximity;
}

.mz-chapter {
  position: relative;
  scroll-snap-align: start;
  min-height: 100vh;
  padding: 80px 48px 100px;
  overflow: hidden;
}

.mz-chapter__slant {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.mz-chapter__slant--cover {
  top: -10%; right: -20%;
  width: 60%; height: 120%;
  background: linear-gradient(135deg, transparent 40%, rgba(196, 165, 90, 0.04) 100%);
  transform: skewX(-8deg);
}

/* 01 Cover */
.mz-cover {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.mz-cover__vol {
  font-family: var(--mz-font-display);
  font-size: 13px;
  color: var(--mz-muted);
  letter-spacing: 0.1em;
  margin: 8px 0 20px;
}

.mz-cover__title {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.mz-cover__kanji {
  font-family: var(--mz-font-serif);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  color: var(--mz-champagne);
  opacity: 0.35;
}
.mz-cover__word {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
}
.mz-cover__word em {
  font-family: var(--mz-font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
.mz-cover__word span {
  font-size: 14px;
  color: var(--mz-muted);
  margin-top: 12px;
  letter-spacing: 0.06em;
}

.mz-cover__deck {
  font-size: 15px;
  color: var(--mz-muted);
  max-width: 420px;
  margin-bottom: 28px;
  line-height: 1.85;
}

.mz-cover__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.mz-cover__stats {
  list-style: none;
  display: flex;
  gap: 32px;
}
.mz-cover__stats li {
  display: flex;
  flex-direction: column;
}
.mz-cover__stats em {
  font-family: var(--mz-font-display);
  font-size: 28px;
  font-style: normal;
  color: var(--mz-champagne);
}
.mz-cover__stats span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mz-muted);
}

.mz-cover__frame {
  position: relative;
  box-shadow: var(--mz-shadow);
}
.mz-cover__frame::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--mz-line);
  z-index: -1;
}
.mz-cover__frame img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.mz-cover__frame figcaption {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--mz-champagne);
  background: rgba(12, 12, 14, 0.7);
  padding: 4px 10px;
}

/* 02 Letter */
.mz-chapter--letter {
  background: linear-gradient(180deg, var(--mz-ink) 0%, var(--mz-slate) 50%, var(--mz-ink) 100%);
}

.mz-letter {
  display: grid;
  grid-template-columns: 180px 1fr 280px;
  gap: 48px;
  max-width: 1100px;
  margin-inline: auto;
  align-items: start;
}

.mz-letter__folio {
  font-family: var(--mz-font-display);
  font-size: 64px;
  color: var(--mz-champagne);
  opacity: 0.2;
  line-height: 1;
}
.mz-letter__rail h2 {
  font-family: var(--mz-font-serif);
  font-size: 28px;
  margin-top: 8px;
}

.mz-letter__dropcap::first-letter {
  float: left;
  font-family: var(--mz-font-display);
  font-size: 72px;
  line-height: 0.8;
  padding-right: 12px;
  color: var(--mz-champagne);
  font-weight: 600;
}

.mz-letter__body p {
  margin-bottom: 20px;
  color: var(--mz-cream);
  font-size: 16px;
  line-height: 1.9;
}

.mz-letter__pull {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--mz-champagne);
  background: rgba(196, 165, 90, 0.06);
}
.mz-letter__pull p {
  font-family: var(--mz-font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--mz-paper);
  margin: 0;
}
.mz-letter__pull cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--mz-muted);
  font-style: normal;
}

.mz-letter__margin {
  position: relative;
  margin-top: 40px;
  box-shadow: var(--mz-shadow-soft);
  transform: rotate(2deg);
}
.mz-letter__margin span {
  position: absolute;
  top: -10px; left: 16px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mz-champagne);
}

/* 03 Ribbon */
.mz-chapter--ribbon {
  padding-inline: 0;
  min-height: auto;
  padding-bottom: 80px;
}

.mz-ribbon-head {
  padding-inline: 48px;
  margin-bottom: 40px;
}
.mz-ribbon-head h2 {
  font-family: var(--mz-font-display);
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0;
}
.mz-ribbon-head h2 em { font-style: italic; color: var(--mz-champagne); }

.mz-ribbon-track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--mz-champagne) var(--mz-slate);
  padding: 20px 48px 60px;
  -webkit-overflow-scrolling: touch;
}

.mz-ribbon-track__inner {
  display: flex;
  gap: 24px;
  width: max-content;
}

.mz-ribbon-card {
  flex: 0 0 min(340px, 80vw);
  scroll-snap-align: center;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
  transition: all 0.4s var(--mz-ease);
  cursor: pointer;
  opacity: 0.65;
  transform: scale(0.96);
}
.mz-ribbon-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--mz-champagne);
  box-shadow: var(--mz-shadow);
}

.mz-ribbon-card figure { position: relative; }
.mz-ribbon-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.mz-ribbon-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  width: 32px; height: 32px;
  background: var(--mz-champagne);
  color: var(--mz-ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mz-ribbon-card__body { padding: 20px; }
.mz-ribbon-card__body h3 {
  font-family: var(--mz-font-display);
  font-size: 22px;
  margin: 6px 0 12px;
}
.mz-ribbon-card__body dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
  font-size: 12px;
}
.mz-ribbon-card__body dt { color: var(--mz-muted); }
.mz-ribbon-card__body dd { font-weight: 600; }
.mz-ribbon-card__body p {
  font-size: 13px;
  color: var(--mz-muted);
  margin-bottom: 12px;
}
.mz-ribbon-card__body strong {
  font-family: var(--mz-font-display);
  font-size: 20px;
  color: var(--mz-champagne);
}

.mz-ribbon-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.mz-ribbon-nav__btn {
  width: 44px; height: 44px;
  border: 1px solid var(--mz-line);
  background: transparent;
  color: var(--mz-paper);
  font-size: 18px;
  cursor: pointer;
  border-radius: var(--mz-radius);
  transition: all 0.25s var(--mz-ease);
}
.mz-ribbon-nav__btn:hover {
  border-color: var(--mz-champagne);
  color: var(--mz-champagne);
}

/* 04 Pinned Spread */
.mz-chapter--spread {
  padding: 0;
  min-height: auto;
}

.mz-spread {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 100vh;
}

.mz-spread__pin {
  position: sticky;
  top: var(--mz-masthead-h);
  height: calc(100vh - var(--mz-masthead-h));
  padding: 60px 40px;
  background: var(--mz-slate);
  border-right: 1px solid var(--mz-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mz-spread__title {
  font-family: var(--mz-font-display);
  font-size: clamp(28px, 3vw, 40px);
  margin: 8px 0 16px;
}
.mz-spread__title em { font-style: italic; color: var(--mz-champagne); }
.mz-spread__deck {
  color: var(--mz-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.mz-spread__layers {
  list-style: none;
}
.mz-spread__layers li {
  padding: 14px 0;
  border-bottom: 1px solid var(--mz-line);
  font-size: 14px;
  color: var(--mz-muted);
  cursor: pointer;
  transition: color 0.25s var(--mz-ease);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mz-spread__layers li span {
  font-family: var(--mz-font-display);
  font-size: 18px;
  color: var(--mz-champagne);
  opacity: 0.5;
}
.mz-spread__layers li.is-active,
.mz-spread__layers li:hover { color: var(--mz-paper); }
.mz-spread__layers li.is-active span { opacity: 1; }

.mz-spread__scroll { position: relative; }

.mz-spread__panel {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px 60px;
  position: relative;
}

.mz-spread__panel:nth-child(odd) { background: var(--mz-ink); }
.mz-spread__panel:nth-child(even) { background: rgba(42, 45, 52, 0.5); }

.mz-spread__img {
  position: relative;
  transition: all 0.6s var(--mz-ease);
  box-shadow: var(--mz-shadow);
}
.mz-spread__img--1 { transform: translateX(20px) rotate(-1deg); }
.mz-spread__img--2 { transform: translateX(-10px) rotate(1deg); }
.mz-spread__img--3 { transform: translateX(15px); }
.mz-spread__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mz-spread__roman {
  font-family: var(--mz-font-display);
  font-size: 48px;
  color: var(--mz-champagne);
  opacity: 0.3;
}
.mz-spread__copy h3 {
  font-family: var(--mz-font-serif);
  font-size: 28px;
  margin: 8px 0 12px;
}
.mz-spread__copy p { color: var(--mz-muted); line-height: 1.8; }

/* 05 Fleet */
.mz-fleet-head h2 {
  font-family: var(--mz-font-display);
  font-size: clamp(32px, 4vw, 48px);
}
.mz-fleet-head h2 em { font-style: italic; color: var(--mz-champagne); }

.mz-fleet-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 48px;
}

.mz-fleet-card {
  grid-column: span 4;
  position: relative;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
  transition: transform 0.4s var(--mz-ease), box-shadow 0.4s var(--mz-ease);
}
.mz-fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mz-shadow);
  z-index: 2;
}
.mz-fleet-card--0 { grid-column: 1 / 6; margin-top: 0; }
.mz-fleet-card--1 { grid-column: 6 / 11; margin-top: 48px; }
.mz-fleet-card--2 { grid-column: 3 / 8; margin-top: -24px; }
.mz-fleet-card--3 { grid-column: 8 / 13; margin-top: 32px; }
.mz-fleet-card--4 { grid-column: 1 / 5; margin-top: 16px; }
.mz-fleet-card--5 { grid-column: 5 / 10; margin-top: -16px; }

.mz-fleet-card figure { position: relative; overflow: hidden; }
.mz-fleet-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s var(--mz-ease);
}
.mz-fleet-card:hover img { transform: scale(1.04); }
.mz-fleet-card__folio {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--mz-font-display);
  font-size: 24px;
  color: var(--mz-champagne);
  opacity: 0.6;
}

.mz-fleet-card__body { padding: 20px; }
.mz-fleet-card__body h3 {
  font-family: var(--mz-font-display);
  font-size: 20px;
  margin: 6px 0 8px;
}
.mz-fleet-card__body p {
  font-size: 13px;
  color: var(--mz-muted);
  margin-bottom: 16px;
}
.mz-fleet-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mz-fleet-card__foot strong {
  font-family: var(--mz-font-display);
  font-size: 18px;
  color: var(--mz-champagne);
}

/* 06 Atlas */
.mz-chapter--atlas {
  background: var(--mz-slate);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding-top: 120px;
}

.mz-atlas__head {
  text-align: center;
  margin-bottom: 60px;
}
.mz-atlas__head h2 {
  font-family: var(--mz-font-display);
  font-size: clamp(32px, 4vw, 48px);
}
.mz-atlas__head h2 em { font-style: italic; color: var(--mz-champagne); }

.mz-atlas__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
  padding: 0 48px;
}

.mz-atlas__stop {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--mz-line);
  position: relative;
}
.mz-atlas__slant {
  position: absolute;
  left: 180px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--mz-champagne), transparent);
  transform: skewX(-12deg);
}

.mz-atlas__stop figure img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: var(--mz-shadow-soft);
}
.mz-atlas__grade {
  display: inline-block;
  padding: 4px 12px;
  background: var(--mz-champagne);
  color: var(--mz-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.mz-atlas__copy h3 {
  font-family: var(--mz-font-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.mz-atlas__copy p {
  font-size: 14px;
  color: var(--mz-muted);
  margin-bottom: 8px;
}
.mz-atlas__copy em {
  font-size: 12px;
  color: var(--mz-champagne);
  font-style: normal;
  letter-spacing: 0.08em;
}

/* 07 Dial */
.mz-dial__head h2 {
  font-family: var(--mz-font-display);
  font-size: clamp(32px, 4vw, 48px);
}
.mz-dial__head h2 em { font-style: italic; color: var(--mz-champagne); }

.mz-dial__interface {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  margin-top: 40px;
  padding: 40px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}

.mz-dial__tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mz-dial__tabs button {
  padding: 12px 24px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--mz-muted);
  font-family: var(--mz-font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s var(--mz-ease);
  border-radius: var(--mz-radius);
}
.mz-dial__tabs button.is-active,
.mz-dial__tabs button:hover {
  border-color: var(--mz-line);
  color: var(--mz-champagne);
  background: rgba(196, 165, 90, 0.06);
}

.mz-dial__panel {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}
.mz-dial__panel[hidden] { display: none; }

.mz-dial__ring {
  position: relative;
  width: 180px; height: 180px;
}
.mz-dial__svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.mz-dial__track-ring {
  fill: none;
  stroke: var(--mz-slate-soft);
  stroke-width: 6;
}
.mz-dial__fill-ring {
  fill: none;
  stroke: var(--mz-champagne);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 534;
  stroke-dashoffset: calc(534 * (1 - var(--dial-pct, 0.8)));
  transition: stroke-dashoffset 0.8s var(--mz-ease);
}

.mz-dial__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mz-dial__center em {
  font-family: var(--mz-font-display);
  font-size: 42px;
  font-style: normal;
  color: var(--mz-champagne);
  line-height: 1;
}
.mz-dial__center span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mz-muted);
  margin-top: 4px;
}

.mz-dial__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mz-dial__specs dt {
  font-size: 11px;
  color: var(--mz-muted);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.mz-dial__specs dd {
  font-family: var(--mz-font-display);
  font-size: 22px;
}

/* 08 Mail */
.mz-mail-head h2 {
  font-family: var(--mz-font-display);
  font-size: clamp(32px, 4vw, 48px);
}
.mz-mail-head h2 em { font-style: italic; color: var(--mz-champagne); }

.mz-mail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.mz-mail-card {
  padding: 32px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
  position: relative;
  font-style: italic;
  transition: transform 0.3s var(--mz-ease);
}
.mz-mail-card:hover { transform: translateY(-4px); }
.mz-mail-card__stamp {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 24px;
  opacity: 0.3;
}
.mz-mail-card p {
  font-family: var(--mz-font-serif);
  font-size: 15px;
  line-height: 1.85;
  color: var(--mz-cream);
  margin-bottom: 24px;
}
.mz-mail-card footer cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}
.mz-mail-card footer span {
  font-size: 12px;
  color: var(--mz-muted);
  font-style: normal;
}

/* 09 Notes */
.mz-notes {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin-inline: auto;
  align-items: start;
}

.mz-notes__hero {
  position: relative;
  box-shadow: var(--mz-shadow);
}
.mz-notes__hero img {
  width: 100%;
  aspect-ratio: 8/5;
  object-fit: cover;
}
.mz-notes__hero figcaption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--mz-champagne);
}

.mz-notes__cols h2 {
  font-family: var(--mz-font-display);
  font-size: clamp(28px, 3vw, 40px);
  margin: 8px 0 24px;
}
.mz-notes__cols h2 em { font-style: italic; color: var(--mz-champagne); }

.mz-notes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.mz-notes__roman {
  font-family: var(--mz-font-display);
  font-size: 32px;
  color: var(--mz-champagne);
  opacity: 0.4;
}
.mz-notes__item h3 {
  font-family: var(--mz-font-serif);
  font-size: 18px;
  margin: 4px 0 8px;
}
.mz-notes__item p {
  font-size: 13px;
  color: var(--mz-muted);
  line-height: 1.7;
}

.mz-notes__trust {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--mz-line);
}
.mz-notes__trust div {
  display: flex;
  flex-direction: column;
}
.mz-notes__trust em {
  font-family: var(--mz-font-display);
  font-size: 28px;
  font-style: normal;
  color: var(--mz-champagne);
}
.mz-notes__trust span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mz-muted);
}

/* 10 Insert */
.mz-chapter--insert {
  min-height: 80vh;
  padding: 0;
}

.mz-insert {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.mz-insert__slant {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--mz-slate) 50%, var(--mz-ink) 50%);
  clip-path: polygon(0 0, 55% 0, 45% 100%, 0 100%);
  z-index: 0;
}

.mz-insert__copy {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mz-insert__copy h2 {
  font-family: var(--mz-font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin: 12px 0 20px;
}
.mz-insert__copy h2 em { font-style: italic; color: var(--mz-champagne); }
.mz-insert__copy > p {
  color: var(--mz-muted);
  max-width: 400px;
  margin-bottom: 24px;
  line-height: 1.85;
}

.mz-insert__perks {
  list-style: none;
  margin-bottom: 32px;
}
.mz-insert__perks li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--mz-cream);
  border-bottom: 1px solid var(--mz-line);
}
.mz-insert__perks li::before {
  content: '—';
  color: var(--mz-champagne);
  margin-right: 8px;
}

.mz-insert__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mz-insert__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.mz-insert__visual img {
  max-width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  box-shadow: var(--mz-shadow);
  transform: rotate(-2deg);
}

/* ── Colophon Footer ── */
.mz-colophon {
  position: relative;
  background: var(--mz-slate);
  border-top: 1px solid var(--mz-line);
  padding: 80px 48px 32px;
  margin-top: 0;
}
.page-home .mz-colophon { margin-left: var(--mz-spine-w); }

.mz-colophon__slant {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mz-champagne), transparent 60%, var(--mz-champagne));
  opacity: 0.5;
}

.mz-colophon__grid {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 48px;
}

.mz-colophon__mark {
  display: flex;
  flex-direction: column;
  color: inherit;
  margin: 12px 0 16px;
}
.mz-colophon__mark strong {
  font-family: var(--mz-font-display);
  font-size: 32px;
}
.mz-colophon__mark span {
  font-size: 13px;
  color: var(--mz-muted);
  margin-top: 4px;
}
.mz-colophon__deck {
  font-size: 14px;
  color: var(--mz-muted);
  line-height: 1.8;
  max-width: 360px;
}

.mz-colophon__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mz-colophon__col h3 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mz-champagne);
  margin-bottom: 16px;
}
.mz-colophon__col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mz-colophon__col nav a {
  font-size: 13px;
  color: var(--mz-muted);
}
.mz-colophon__col nav a:hover { color: var(--mz-paper); }
.mz-colophon__col--studio address,
.mz-colophon__col--studio a,
.mz-colophon__col--studio span {
  display: block;
  font-size: 13px;
  color: var(--mz-muted);
  margin-bottom: 8px;
}

.mz-colophon__news {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid var(--mz-line);
}
.mz-colophon__news label {
  font-size: 12px;
  color: var(--mz-muted);
  display: block;
  margin-bottom: 12px;
}
.mz-colophon__news-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.mz-colophon__news-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--mz-line);
  background: var(--mz-ink);
  color: var(--mz-paper);
  border-radius: var(--mz-radius);
  font-family: var(--mz-font-sans);
}

.mz-colophon__base {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--mz-line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-size: 11px;
  color: var(--mz-muted);
  letter-spacing: 0.04em;
}

/* ── Back to top & Toast ── */
.mz-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border: 1px solid var(--mz-line);
  background: var(--mz-slate);
  color: var(--mz-champagne);
  cursor: pointer;
  border-radius: var(--mz-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s var(--mz-ease);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mz-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mz-top:hover {
  border-color: var(--mz-champagne);
  background: var(--mz-champagne);
  color: var(--mz-ink);
}

.mz-toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 28px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-champagne);
  color: var(--mz-paper);
  font-size: 13px;
  border-radius: var(--mz-radius);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--mz-ease);
  z-index: 300;
}
.mz-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── Inner Pages ── */
.mz-page { padding: 60px 0 100px; }

.mz-page-head {
  text-align: center;
  margin-bottom: 60px;
}
.mz-page-head h1 {
  font-family: var(--mz-font-display);
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0;
}
.mz-page-head h1 em { font-style: italic; color: var(--mz-champagne); }
.mz-page-deck {
  color: var(--mz-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* About */
.mz-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.mz-about-dropcap::first-letter {
  float: left;
  font-family: var(--mz-font-display);
  font-size: 64px;
  line-height: 0.85;
  padding-right: 10px;
  color: var(--mz-champagne);
}
.mz-about-story__copy p { margin-bottom: 16px; color: var(--mz-cream); line-height: 1.85; }
.mz-about-pull {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--mz-champagne);
  font-family: var(--mz-font-display);
  font-size: 20px;
  font-style: italic;
}
.mz-about-pull cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  color: var(--mz-muted);
  margin-top: 8px;
}
.mz-about-story__img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  box-shadow: var(--mz-shadow);
}

.mz-about-mission { margin-bottom: 80px; }
.mz-about-mission h2 {
  font-family: var(--mz-font-display);
  font-size: 32px;
  margin: 8px 0 32px;
}
.mz-about-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mz-about-mission__grid article {
  padding: 28px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-about-mission__grid h3 {
  font-family: var(--mz-font-serif);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--mz-champagne);
}
.mz-about-mission__grid p { font-size: 14px; color: var(--mz-muted); }

.mz-about-timeline { margin-bottom: 80px; }
.mz-timeline {
  max-width: 700px;
  margin: 40px auto;
  padding-left: 32px;
  border-left: 2px solid var(--mz-line);
}
.mz-timeline__item {
  position: relative;
  padding: 0 0 40px 32px;
}
.mz-timeline__item::before {
  content: '';
  position: absolute;
  left: -37px; top: 6px;
  width: 10px; height: 10px;
  background: var(--mz-champagne);
  border-radius: 50%;
}
.mz-timeline__year {
  font-family: var(--mz-font-display);
  font-size: 28px;
  color: var(--mz-champagne);
}
.mz-timeline__item h3 {
  font-family: var(--mz-font-serif);
  font-size: 20px;
  margin: 4px 0 8px;
}
.mz-timeline__item p { font-size: 14px; color: var(--mz-muted); }
.mz-about-timeline__img img {
  width: 100%;
  aspect-ratio: 9/4;
  object-fit: cover;
}

.mz-about-studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.mz-about-studio h2 {
  font-family: var(--mz-font-display);
  font-size: 32px;
  margin: 8px 0 16px;
}
.mz-about-studio h2 em { font-style: italic; color: var(--mz-champagne); }
.mz-about-studio p { color: var(--mz-muted); margin-bottom: 16px; line-height: 1.8; }
.mz-about-studio address,
.mz-about-studio span {
  display: block;
  font-size: 14px;
  color: var(--mz-muted);
  margin-bottom: 8px;
}
.mz-about-studio .mz-btn { margin-top: 20px; }
.mz-about-studio__img img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  box-shadow: var(--mz-shadow-soft);
}

.mz-about-cta {
  text-align: center;
  padding: 60px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-about-cta h2 {
  font-family: var(--mz-font-display);
  font-size: 32px;
  margin-bottom: 12px;
}
.mz-about-cta p { color: var(--mz-muted); margin-bottom: 24px; }

/* Shop */
.mz-shop-head { text-align: center; margin-bottom: 48px; }
.mz-shop-head h1 {
  font-family: var(--mz-font-display);
  font-size: clamp(36px, 5vw, 52px);
}
.mz-shop-head h1 em { font-style: italic; color: var(--mz-champagne); }

.mz-shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.mz-shop-filter {
  position: sticky;
  top: calc(var(--mz-masthead-h) + 24px);
  padding: 24px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-shop-filter h2 {
  font-family: var(--mz-font-serif);
  font-size: 18px;
  margin: 8px 0 16px;
}
.mz-shop-filter__tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mz-shop-filter__tab {
  padding: 8px 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--mz-muted);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  border-radius: var(--mz-radius);
  transition: all 0.25s var(--mz-ease);
}
.mz-shop-filter__tab.is-active,
.mz-shop-filter__tab:hover {
  border-color: var(--mz-line);
  color: var(--mz-champagne);
}
.mz-shop-filter__sort {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--mz-line);
}
.mz-shop-filter__sort label {
  font-size: 11px;
  color: var(--mz-muted);
  display: block;
  margin-bottom: 8px;
}
.mz-shop-filter__sort select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--mz-line);
  background: var(--mz-ink);
  color: var(--mz-paper);
  font-family: var(--mz-font-sans);
  border-radius: var(--mz-radius);
}
.mz-shop-filter__count {
  margin-top: 16px;
  font-size: 12px;
  color: var(--mz-champagne);
}

.mz-shop-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mz-shop-card {
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
  transition: transform 0.3s var(--mz-ease), box-shadow 0.3s var(--mz-ease);
}
.mz-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mz-shadow-soft);
}
.mz-shop-card--tall { grid-row: span 2; }
.mz-shop-card--wide { grid-column: span 2; }

.mz-shop-card__img { position: relative; overflow: hidden; }
.mz-shop-card__img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s var(--mz-ease);
}
.mz-shop-card:hover .mz-shop-card__img img { transform: scale(1.03); }
.mz-shop-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  width: 28px; height: 28px;
  background: var(--mz-champagne);
  color: var(--mz-ink);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mz-shop-card__body { padding: 20px; }
.mz-shop-card__body h2 {
  font-family: var(--mz-font-display);
  font-size: 22px;
  margin: 6px 0 8px;
}
.mz-shop-card__story {
  font-size: 13px;
  color: var(--mz-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.mz-shop-card__spec {
  display: flex;
  gap: 24px;
  font-size: 12px;
  margin-bottom: 16px;
}
.mz-shop-card__spec dt { color: var(--mz-muted); }
.mz-shop-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.mz-shop-card__foot strong {
  font-family: var(--mz-font-display);
  font-size: 20px;
  color: var(--mz-champagne);
}
.mz-shop-card__actions { display: flex; gap: 8px; }

.mz-shop-book {
  margin-top: 80px;
  padding: 48px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-shop-book h2 {
  font-family: var(--mz-font-display);
  font-size: 28px;
  margin: 8px 0 32px;
}
.mz-shop-book h2 em { font-style: italic; color: var(--mz-champagne); }
.mz-shop-book__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mz-shop-book__steps span {
  font-family: var(--mz-font-display);
  font-size: 32px;
  color: var(--mz-champagne);
  opacity: 0.5;
}
.mz-shop-book__steps h3 {
  font-family: var(--mz-font-serif);
  font-size: 18px;
  margin: 8px 0;
}
.mz-shop-book__steps p { font-size: 13px; color: var(--mz-muted); }
.mz-shop-book__note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--mz-muted);
}

/* FAQ */
.mz-faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.mz-faq-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: calc(var(--mz-masthead-h) + 24px);
}
.mz-faq-nav__btn {
  padding: 12px 16px;
  border: 1px solid var(--mz-line);
  background: transparent;
  color: var(--mz-muted);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  border-radius: var(--mz-radius);
  transition: all 0.25s var(--mz-ease);
}
.mz-faq-nav__btn.is-active,
.mz-faq-nav__btn:hover {
  border-color: var(--mz-champagne);
  color: var(--mz-champagne);
  background: rgba(196, 165, 90, 0.06);
}

.mz-faq-panel[hidden] { display: none; }
.mz-faq-panel__title {
  font-family: var(--mz-font-display);
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--mz-champagne);
}

.mz-faq-item {
  border: 1px solid var(--mz-line);
  margin-bottom: 12px;
  background: var(--mz-slate);
}
.mz-faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mz-faq-item summary::-webkit-details-marker { display: none; }
.mz-faq-item__num {
  font-family: var(--mz-font-display);
  font-size: 18px;
  color: var(--mz-champagne);
  opacity: 0.6;
}
.mz-faq-item__body {
  padding: 0 24px 20px 56px;
}
.mz-faq-item__body p {
  font-size: 14px;
  color: var(--mz-muted);
  line-height: 1.8;
}

.mz-faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-faq-cta h2 {
  font-family: var(--mz-font-display);
  font-size: 28px;
  margin-bottom: 12px;
}
.mz-faq-cta p { color: var(--mz-muted); margin-bottom: 24px; }

/* Contact */
.mz-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.mz-contact-info__block {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-contact-info__block h2 {
  font-family: var(--mz-font-serif);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--mz-champagne);
}
.mz-contact-info__block address,
.mz-contact-info__block a,
.mz-contact-info__block p,
.mz-contact-info__block span {
  display: block;
  font-size: 14px;
  color: var(--mz-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.mz-contact-form {
  padding: 32px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-contact-form h2 {
  font-family: var(--mz-font-display);
  font-size: 24px;
  margin: 8px 0 24px;
}

.mz-form-row {
  margin-bottom: 20px;
}
.mz-form-row label {
  display: block;
  font-size: 12px;
  color: var(--mz-muted);
  margin-bottom: 6px;
}
.mz-form-row label span { color: var(--mz-champagne); }
.mz-form-row input,
.mz-form-row select,
.mz-form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--mz-line);
  background: var(--mz-ink);
  color: var(--mz-paper);
  font-family: var(--mz-font-sans);
  border-radius: var(--mz-radius);
  font-size: 14px;
}
.mz-form-row textarea { resize: vertical; min-height: 120px; }

.mz-contact-map { padding: 0 24px; }
.mz-contact-map__frame {
  position: relative;
  box-shadow: var(--mz-shadow);
}
.mz-contact-map__frame img {
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: cover;
}
.mz-contact-map__frame figcaption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 12px;
  color: var(--mz-champagne);
  background: rgba(12, 12, 14, 0.75);
  padding: 6px 14px;
}

/* Cart */
.mz-cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.mz-cart-empty {
  text-align: center;
  padding: 60px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-cart-empty p { color: var(--mz-muted); margin-bottom: 20px; }

.mz-cart-list { list-style: none; }

.mz-cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
  margin-bottom: 16px;
}
.mz-cart-item img {
  width: 120px;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.mz-cart-item__info h3 {
  font-family: var(--mz-font-display);
  font-size: 18px;
  margin-bottom: 4px;
}
.mz-cart-item__price {
  font-size: 16px;
  color: var(--mz-champagne);
  margin-bottom: 8px;
}
.mz-cart-remove {
  background: none;
  border: none;
  color: var(--mz-muted);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
}
.mz-cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mz-cart-qty button {
  width: 32px; height: 32px;
  border: 1px solid var(--mz-line);
  background: transparent;
  color: var(--mz-paper);
  cursor: pointer;
  border-radius: var(--mz-radius);
}

.mz-cart-summary {
  position: sticky;
  top: calc(var(--mz-masthead-h) + 24px);
  padding: 28px;
  background: var(--mz-slate);
  border: 1px solid var(--mz-line);
}
.mz-cart-summary h2 {
  font-family: var(--mz-font-display);
  font-size: 22px;
  margin-bottom: 20px;
}
.mz-cart-totals div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--mz-line);
}
.mz-cart-totals__grand {
  font-size: 18px;
  font-weight: 600;
  color: var(--mz-champagne);
  border-bottom: none;
  margin-top: 8px;
}

.mz-cart-coupon {
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--mz-line);
}
.mz-cart-coupon label {
  font-size: 12px;
  color: var(--mz-muted);
  display: block;
  margin-bottom: 8px;
}
.mz-cart-coupon__row {
  display: flex;
  gap: 8px;
}
.mz-cart-coupon__row input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--mz-line);
  background: var(--mz-ink);
  color: var(--mz-paper);
  border-radius: var(--mz-radius);
}
.mz-cart-coupon__hint {
  font-size: 11px;
  color: var(--mz-muted);
  margin-top: 8px;
}
.mz-cart-checkout { width: 100%; margin-bottom: 12px; }

/* Legal */
.mz-legal-head { text-align: center; margin-bottom: 48px; }
.mz-legal-head h1 {
  font-family: var(--mz-font-display);
  font-size: clamp(32px, 4vw, 48px);
}
.mz-legal-head h1 em { font-style: italic; color: var(--mz-champagne); }
.mz-legal-updated { font-size: 13px; color: var(--mz-muted); margin-top: 8px; }

.mz-legal-body section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--mz-line);
}
.mz-legal-body h2 {
  font-family: var(--mz-font-serif);
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--mz-champagne);
}
.mz-legal-body h3 {
  font-size: 16px;
  margin: 20px 0 12px;
}
.mz-legal-body p {
  font-size: 14px;
  color: var(--mz-cream);
  line-height: 1.85;
  margin-bottom: 12px;
}
.mz-legal-body ul {
  margin: 12px 0 12px 24px;
  font-size: 14px;
  color: var(--mz-muted);
  line-height: 1.8;
}
.mz-legal-body code {
  font-size: 12px;
  background: var(--mz-slate);
  padding: 2px 6px;
  border-radius: 2px;
}
.mz-legal-contact {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mz-muted);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .mz-cover { grid-template-columns: 1fr; }
  .mz-letter { grid-template-columns: 1fr; }
  .mz-letter__margin { display: none; }
  .mz-spread { grid-template-columns: 1fr; }
  .mz-spread__pin { position: relative; height: auto; }
  .mz-fleet-card { grid-column: span 6 !important; margin-top: 0 !important; }
  .mz-mail-grid { grid-template-columns: 1fr; }
  .mz-notes { grid-template-columns: 1fr; }
  .mz-insert { grid-template-columns: 1fr; }
  .mz-insert__visual { display: none; }
  .mz-colophon__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .mz-spine { display: none; }
  .page-home .mz-main,
  .page-home .mz-colophon { margin-left: 0; }

  .mz-masthead__inner {
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }
  .mz-masthead__nav { display: none; }
  .mz-masthead__burger { display: flex; }

  .mz-chapter { padding: 60px 24px 80px; }

  .mz-shop-layout,
  .mz-faq-layout,
  .mz-contact-layout,
  .mz-cart-layout { grid-template-columns: 1fr; }

  .mz-shop-filter,
  .mz-faq-nav,
  .mz-cart-summary { position: static; }

  .mz-shop-mosaic { grid-template-columns: 1fr; }
  .mz-shop-card--tall,
  .mz-shop-card--wide { grid-column: span 1; grid-row: span 1; }

  .mz-about-story,
  .mz-about-studio,
  .mz-about-mission__grid,
  .mz-shop-book__steps { grid-template-columns: 1fr; }

  .mz-dial__interface { grid-template-columns: 1fr; }
  .mz-dial__tabs { flex-direction: row; flex-wrap: wrap; }
  .mz-dial__panel { grid-template-columns: 1fr; text-align: center; }
  .mz-dial__ring { margin-inline: auto; }

  .mz-spread__panel { grid-template-columns: 1fr; padding: 40px 24px; }
  .mz-atlas__stop { grid-template-columns: 1fr; }
  .mz-colophon__columns { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .mz-cover__title { flex-direction: column; }
  .mz-cover__stats { flex-wrap: wrap; gap: 20px; }
  .mz-notes__grid { grid-template-columns: 1fr; }
  .mz-cart-item { grid-template-columns: 80px 1fr; }
  .mz-cart-qty { grid-column: 1 / -1; justify-content: center; }
}
