/* ===================================================================
   Manhattan Trust — case-file dossier visual system
   Vellum + oxford green + brass + Cormorant + Lora + Courier Prime
   Class prefix: mt-
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Lora:wght@400;500;600&family=Courier+Prime:wght@400;700&display=swap');

:root {
  /* Color palette — ivory neutral, away from the warm-cream cluster of #1/#4/#5 */
  --vellum:      #F1EFE8;
  --vellum-deep: #E2DFD5;
  --vellum-edge: #C7C2B3;
  --paper:       #F8F6EE;
  --oxford:      #1B3A2C;
  --oxford-deep: #122819;
  --oxford-soft: #2E523F;
  --ink:         #14201A;
  --ink-soft:    #3A4640;
  --ink-mute:    #6B6F66;
  --brass:       #A88B4A;
  --brass-bright:#C7A661;
  --seal-red:    #7A1F2B;
  --rule:        #C9B57E;
  --rule-soft:   #DCCDA5;

  /* Typography */
  --display: "Cormorant Garamond", "Cormorant SC", "Playfair Display", Georgia, "Times New Roman", serif;
  --body:    "Lora", "Source Serif Pro", "Iowan Old Style", Georgia, serif;
  --mono:    "Courier Prime", "Courier New", ui-monospace, "SFMono-Regular", monospace;
}

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

/* ===== Shared atoms ===== */
.mt-mono {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxford-soft);
}
.mt-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  padding: 4px 10px 3px;
  margin-bottom: 14px;
}

.mt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px 10px;
  background: var(--oxford);
  color: var(--vellum);
  border: 1.5px solid var(--oxford);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease;
}
.mt-btn:hover { background: var(--oxford-deep); }
.mt-btn--line {
  background: transparent;
  color: var(--oxford);
}
.mt-btn--line:hover { background: var(--oxford); color: var(--vellum); }
.mt-btn--brass {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--paper);
}
.mt-btn--brass:hover { background: #957B40; border-color: #957B40; }

/* Brass rule divider used between sections */
.mt-rule {
  height: 1px;
  background: var(--rule);
  position: relative;
  margin: 32px 0;
}
.mt-rule::before, .mt-rule::after {
  content: '';
  position: absolute; top: -3px; width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
}
.mt-rule::before { left: 50%; transform: translateX(-50%); }
.mt-rule::after  { display: none; }

/* ===== Site shell — header & footer ===== */
.mt-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.mt-toprule {
  height: 4px;
  background: linear-gradient(90deg, var(--oxford) 0 33%, var(--brass) 33% 67%, var(--oxford) 67% 100%);
}

.mt-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.mt-brand { flex: 1 1 auto; min-width: 0; }
.mt-nav { flex: 0 0 auto; }
.mt-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.mt-brand__seal {
  position: relative;
  width: 54px; height: 54px;
  background: var(--vellum);
  border: 1.5px solid var(--oxford);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: var(--oxford);
  letter-spacing: -1px;
}
.mt-brand__seal::after {
  content: '';
  position: absolute;
  bottom: -3px; right: -3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brass);
  border: 2px solid var(--paper);
}
.mt-brand__copy { display: grid; gap: 2px; }
.mt-brand__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.mt-brand__name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--oxford);
  letter-spacing: 0.2px;
  line-height: 1;
}
.mt-brand__deck {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 3px;
}

/* Mobile-only nav controls — checkbox state, label toggle, label backdrop.
   Hidden by default on desktop; revealed inside @media (max-width: 880px). */
.mt-nav-state { position: absolute; opacity: 0; pointer-events: none; clip: rect(0 0 0 0); }
.mt-nav-toggle { display: none; }
.mt-nav-backdrop { display: none; }

.mt-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.mt-nav a {
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oxford-soft);
  border: 1px solid transparent;
  border-radius: 1px;
  transition: all .15s ease;
}
.mt-nav a:hover { color: var(--oxford); background: var(--vellum-deep); }
.mt-nav a.is-active {
  color: var(--oxford);
  border-color: var(--brass);
  background: var(--vellum);
}

/* ===== Footer ===== */
.mt-foot {
  background: var(--oxford);
  color: var(--vellum-deep);
  padding: 44px 36px 22px;
  margin-top: 60px;
  font-size: 13px;
}
.mt-foot__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1220px;
  margin: 0 auto;
}
.mt-foot__id strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--vellum);
  display: block;
  margin-bottom: 6px;
}
.mt-foot__id p { color: rgba(244,236,216,0.72); line-height: 1.55; margin: 0; }
.mt-foot__col h3 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(168,139,74,0.4);
  padding-bottom: 6px;
}
.mt-foot__col a {
  display: block;
  padding: 4px 0;
  color: rgba(244,236,216,0.86);
  font-family: var(--body);
  font-size: 13.5px;
  transition: color .12s ease;
}
.mt-foot__col a:hover { color: var(--brass-bright); }
.mt-foot__bottom {
  max-width: 1220px;
  margin: 26px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(168,139,74,0.3);
  color: rgba(244,236,216,0.6);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
}

/* ============================================================
   HOTEL DETAIL PAGE — case-file dossier sections
   Section 1: COVER SHEET HERO
   ============================================================ */
.mt-cover {
  max-width: 1220px;
  margin: 28px auto 0;
  padding: 0 36px;
}
.mt-cover__sheet {
  background: var(--paper);
  border: 1.5px solid var(--oxford);
  position: relative;
  padding: 30px 38px 34px;
  box-shadow: 0 1px 0 rgba(168,139,74,0.4), 0 6px 0 -2px var(--vellum-deep);
}
.mt-cover__sheet::before {
  content: '';
  position: absolute;
  top: -1.5px; left: -1.5px; right: -1.5px;
  height: 6px;
  background: var(--oxford);
}
.mt-cover__tab {
  position: absolute;
  top: -1.5px;
  right: 60px;
  height: 30px;
  padding: 0 28px;
  background: var(--oxford);
  color: var(--vellum-deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}
.mt-cover__crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
  margin-top: 6px;
}
.mt-cover__crumbs a { color: var(--oxford-soft); }
.mt-cover__crumbs a:hover { color: var(--brass); }
.mt-cover__crumbs span:last-child { color: var(--brass); }

.mt-cover__caption {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: end;
}
.mt-cover__h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.05;
  color: var(--oxford);
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}
.mt-cover__loc {
  font-family: var(--body);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
}
.mt-cover__lede {
  margin-top: 14px;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink);
  border-left: 3px double var(--brass);
  padding-left: 16px;
}

.mt-cover__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--vellum-deep);
}
.mt-cover__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.06) saturate(0.92) contrast(0.96);
}
.mt-cover__placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 700;
  color: var(--oxford-soft);
  background: var(--vellum-deep);
  letter-spacing: -2px;
}
.mt-cover__exif {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(20,32,26,0.84);
  color: var(--vellum);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.mt-cover__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px;
}
.mt-chip {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--vellum);
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}
.mt-chip--score { color: var(--oxford); border-color: var(--oxford-soft); }
.mt-chip--rating { color: var(--brass); border-color: var(--brass); }
.mt-chip--warn   { color: var(--seal-red); border-color: var(--seal-red); background: #FBEDEE; }

.mt-cover__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}

/* ============================================================
   Section 2: PRACTICE TABS — manila folder tab strip
   ============================================================ */
.mt-practice {
  max-width: 1220px;
  margin: 36px auto 0;
  padding: 0 36px;
}
.mt-practice__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 14px;
  gap: 16px;
}
.mt-practice__h2 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 0;
  letter-spacing: -0.3px;
}
.mt-practice__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-bottom: 2px solid var(--oxford);
}
.mt-tab {
  position: relative;
  background: var(--vellum-deep);
  border: 1px solid var(--vellum-edge);
  border-bottom: none;
  padding: 18px 16px 14px;
  display: grid; gap: 4px;
  text-align: left;
  border-radius: 6px 6px 0 0;
  margin-right: -1px;
}
.mt-tab--active {
  background: var(--oxford);
  border-color: var(--oxford);
  color: var(--vellum);
  z-index: 2;
}
.mt-tab--active::after {
  content: '';
  position: absolute;
  top: 8px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass-bright);
}
.mt-tab__no {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--brass);
  text-transform: uppercase;
}
.mt-tab--active .mt-tab__no { color: var(--brass-bright); }
.mt-tab__name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--oxford);
  letter-spacing: -0.2px;
  line-height: 1.15;
}
.mt-tab--active .mt-tab__name { color: var(--vellum); }
.mt-tab__src {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.mt-tab--active .mt-tab__src { color: var(--brass-bright); }
.mt-tab--ask  { background: var(--vellum); }
.mt-tab--ask .mt-tab__name { color: var(--ink-mute); }

.mt-practice__caption {
  margin: 14px 0 0;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ============================================================
   Section 3: EXHIBIT PHOTOS BOARD
   ============================================================ */
.mt-exhibit {
  max-width: 1220px;
  margin: 44px auto 0;
  padding: 0 36px;
}
.mt-exhibit__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 14px;
}
.mt-exhibit__h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 0;
}
.mt-exhibit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 6px;
}
.mt-exhibit__cell {
  position: relative;
  background: var(--vellum-deep);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.mt-exhibit__cell:first-child { grid-row: span 2; }
.mt-exhibit__cell img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.05) saturate(0.92);
}
.mt-exhibit__num {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--paper);
  border: 1px solid var(--oxford);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 7px;
  color: var(--oxford);
}
.mt-exhibit__cell--single {
  grid-template-columns: 1fr;
}

/* ============================================================
   Stack (main + side) for sections 4–10
   ============================================================ */
.mt-stack {
  max-width: 1220px;
  margin: 48px auto 0;
  padding: 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}
.mt-stack__main { display: grid; gap: 44px; }
.mt-stack__side { display: grid; gap: 18px; position: sticky; top: 24px; align-self: start; }
.mt-stack__side--flow { position: static; }

/* ============================================================
   Section 4: FILING RECORD (source attribution table)
   ============================================================ */
.mt-filing {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 32px 30px;
  position: relative;
}
.mt-filing::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px dotted var(--rule-soft);
  pointer-events: none;
}
.mt-filing__h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 6px;
}
.mt-filing__sub {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-style: italic;
}
.mt-filing__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body);
  font-size: 14.5px;
  position: relative;
}
.mt-filing__table thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 2px double var(--rule);
  padding: 6px 10px;
}
.mt-filing__table tbody th,
.mt-filing__table tbody td {
  padding: 11px 10px;
  border-bottom: 1px dashed var(--rule);
  vertical-align: top;
}
.mt-filing__table tbody th {
  text-align: left;
  font-weight: 600;
  font-family: var(--display);
  color: var(--oxford);
  font-size: 16px;
  white-space: nowrap;
  width: 18%;
}
.mt-src {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid currentColor;
  display: inline-block;
}
.mt-src--site { color: var(--oxford); }
.mt-src--maps { color: var(--brass); }
.mt-conf {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

/* ============================================================
   Section 5: COUNSEL STATEMENT / CLIENT TESTIMONY (deposition)
   ============================================================ */
.mt-deposition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}
.mt-deposition::before,
.mt-deposition::after {
  content: '';
  position: absolute;
  width: 1px;
  background: var(--rule);
  top: 12px; bottom: 12px;
  left: 50%;
}
.mt-deposition__col {
  padding: 28px 30px 30px;
}
.mt-deposition__col + .mt-deposition__col {
  border-left: 1px solid var(--rule);
  background: linear-gradient(180deg, transparent 0, transparent 6px, var(--vellum) 6px, var(--vellum) 7px, transparent 7px);
  background-size: 100% 28px;
  background-attachment: local;
}
.mt-deposition__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--oxford);
  margin: 0 0 8px;
}
.mt-deposition__role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
}
.mt-quote {
  margin: 0 0 16px;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--brass);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink);
  font-style: italic;
}
.mt-quote::before {
  content: '“';
  font-family: var(--display);
  font-size: 32px;
  color: var(--brass);
  vertical-align: -10px;
  margin-right: 4px;
  line-height: 0;
}
.mt-deposition__empty {
  margin: 0;
  color: var(--ink-mute);
  font-style: italic;
}

/* ============================================================
   Section 6: ESTATE PLANNING ANATOMY (4-cell explainer)
   ============================================================ */
.mt-anatomy {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 32px 30px;
}
.mt-anatomy__h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 6px;
}
.mt-anatomy__intro {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-style: italic;
}
.mt-anatomy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mt-doc {
  border: 1px solid var(--rule);
  background: var(--vellum);
  padding: 18px 20px 20px;
  position: relative;
}
.mt-doc__no {
  position: absolute;
  top: -10px; left: 14px;
  background: var(--paper);
  padding: 0 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.mt-doc__title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--oxford);
  margin: 0 0 8px;
}
.mt-doc__body {
  margin: 0 0 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.mt-doc__call {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   Section 7: STATE INHERITANCE LAW BANDS
   ============================================================ */
.mt-state {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 28px 32px 30px;
}
.mt-state__h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 6px;
}
.mt-state__intro {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-style: italic;
}
.mt-state__band {
  border-left: 3px solid var(--brass);
  padding: 6px 16px 8px;
  margin: 14px 0;
  background: var(--vellum);
}
.mt-state__band--here {
  border-left-color: var(--seal-red);
  background: linear-gradient(90deg, #FBEDEE 0, #FBEDEE 6px, var(--vellum) 6px);
}
.mt-state__band h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--oxford);
}
.mt-state__band span {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.mt-state__band p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

/* ============================================================
   Section 8: DOCUMENT-BY-DOCUMENT DIY/PRO
   ============================================================ */
.mt-spectrum {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 28px 32px 30px;
}
.mt-spectrum__h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 6px;
}
.mt-spectrum__intro {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-style: italic;
}
.mt-spectrum__row {
  display: grid;
  grid-template-columns: 38% 1fr 18%;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
}
.mt-spectrum__row:last-child { border-bottom: none; }
.mt-spectrum__doc {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--oxford);
}
.mt-spectrum__note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.mt-spectrum__verdict {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 4px 8px;
  text-align: center;
  align-self: start;
}
.mt-spectrum__verdict--ok    { color: var(--oxford); }
.mt-spectrum__verdict--mid   { color: var(--brass); }
.mt-spectrum__verdict--call  { color: var(--seal-red); }
.mt-spectrum__verdict--law   { color: var(--vellum); background: var(--seal-red); border-color: var(--seal-red); }

/* ============================================================
   Section 9: COMMON QUESTIONS (FAQ)
   ============================================================ */
.mt-faq {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 28px 32px 30px;
}
.mt-faq__h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 18px;
}
.mt-faq details {
  border-top: 1px dashed var(--rule);
  padding: 14px 0 6px;
}
.mt-faq details:last-child { border-bottom: 1px dashed var(--rule); }
.mt-faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--oxford);
  padding-right: 28px;
  position: relative;
  list-style: none;
}
.mt-faq summary::-webkit-details-marker { display: none; }
.mt-faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: -2px;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--brass);
  transition: transform .2s ease;
}
.mt-faq details[open] summary::after { content: '–'; }
.mt-faq details p {
  margin: 10px 0 6px;
  color: var(--ink);
  line-height: 1.62;
  font-size: 14.5px;
}

/* ============================================================
   Section 10: NEARBY FIRMS
   ============================================================ */
.mt-nearby {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 28px 32px 30px;
}
.mt-nearby__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 16px; gap: 12px;
}
.mt-nearby__h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 0;
}
.mt-nearby__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mt-firm {
  border: 1px solid var(--rule);
  background: var(--vellum);
  padding: 16px 18px 18px;
  display: grid;
  gap: 4px;
  text-decoration: none;
  transition: border-color .12s ease, background .12s ease;
}
.mt-firm:hover { border-color: var(--brass); background: var(--paper); }
.mt-firm small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.mt-firm h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--oxford);
  margin: 0;
  letter-spacing: -0.2px;
}
.mt-firm p {
  margin: 4px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}

/* ============================================================
   SIDEBAR cards
   ============================================================ */
.mt-side-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 22px 24px 24px;
  display: grid; gap: 8px;
}
.mt-side-card--dark {
  background: var(--oxford);
  border-color: var(--oxford);
  color: var(--vellum);
}
.mt-side-card h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--oxford);
  margin: 0;
}
.mt-side-card--dark h3 { color: var(--vellum); }
.mt-side-card .mt-label {
  margin-bottom: 6px;
}
.mt-side-card--dark .mt-label {
  color: var(--brass-bright);
  border-color: var(--brass-bright);
}

.mt-side-facts {
  margin: 0; padding: 0;
  font-size: 13.5px;
}
.mt-side-facts > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(168,139,74,0.35);
}
.mt-side-facts > div:last-child { border-bottom: none; }
.mt-side-facts dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 2px 0 0;
}
.mt-side-facts dd { margin: 0; word-break: break-word; }
.mt-side-card--dark .mt-side-facts dd a { color: var(--vellum); border-bottom: 1px dotted var(--brass-bright); }

.mt-side-hours {
  margin: 0; padding: 0;
  font-size: 13.5px;
  font-family: var(--mono);
}
.mt-side-hours > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(168,139,74,0.35);
  letter-spacing: 0.04em;
}
.mt-side-hours > div:last-child { border-bottom: none; }
.mt-side-hours dt {
  text-transform: uppercase;
  color: var(--brass);
  font-size: 11px;
}
.mt-side-hours dd { margin: 0; }

.mt-side-drill ol {
  margin: 0; padding: 0;
  list-style: none;
  counter-reset: drill;
}
.mt-side-drill li {
  counter-increment: drill;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}
.mt-side-drill li:last-child { border-bottom: none; }
.mt-side-drill li::before {
  content: counter(drill, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--brass);
  padding-top: 2px;
}

.mt-side-map { background: var(--vellum-deep); border: 1px solid var(--rule); height: 300px; overflow: hidden; }
.mt-side-map > div { width: 100%; height: 100%; }
.mt-side-map__fallback { display: grid; place-items: center; color: var(--ink-mute); font-style: italic; padding: 20px; }
.leaflet-container { background: var(--vellum-deep) !important; }
.leaflet-control-attribution {
  font-family: var(--mono) !important;
  font-size: 9px !important;
  background: rgba(244,236,216,0.9) !important;
}

.mt-side-blog {
  text-decoration: none;
  display: grid; gap: 8px;
}
.mt-side-blog img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border: 1px solid var(--rule);
}
.mt-side-blog h3 { margin: 4px 0 0; }
.mt-side-blog p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.mt-side-blog__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ============================================================
   INDEX (home) page
   ============================================================ */
.mt-home {
  max-width: 1220px;
  margin: 0 auto;
  padding: 36px;
}
.mt-home-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  background: var(--paper);
  border: 1px solid var(--oxford);
  padding: 44px 50px;
  position: relative;
}
.mt-home-hero::before {
  content: '';
  position: absolute; top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px dotted var(--rule-soft);
  pointer-events: none;
}
.mt-home-hero__copy { position: relative; }
.mt-home-hero__h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 700;
  color: var(--oxford);
  margin: 8px 0 14px;
  line-height: 1.04;
  letter-spacing: -0.5px;
}
.mt-home-hero__h1 em { font-style: italic; color: var(--brass); }
.mt-home-hero__lede {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.62;
  margin: 0;
}
.mt-home-hero__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}
.mt-home-hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: end;
  position: relative;
}
.mt-home-hero__meta > div {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 10px;
}
.mt-home-hero__meta b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  color: var(--oxford);
  letter-spacing: -1px;
}
.mt-home-hero__meta span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  text-align: right;
  max-width: 130px;
  line-height: 1.3;
}

.mt-home-flow {
  background: var(--vellum-deep);
  padding: 30px 36px 32px;
  border: 1px solid var(--rule);
  margin-top: 36px;
}
.mt-home-flow__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 20px; gap: 12px;
}
.mt-home-flow__h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford);
  margin: 0;
}
.mt-home-flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.mt-home-flow__step {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 18px 18px 20px;
  text-decoration: none;
  display: grid; gap: 6px;
  position: relative;
  transition: border-color .12s ease;
}
.mt-home-flow__step:hover { border-color: var(--brass); }
.mt-home-flow__step b {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--brass);
}
.mt-home-flow__step strong {
  font-family: var(--display);
  font-size: 19px;
  color: var(--oxford);
  letter-spacing: -0.2px;
  display: block;
}
.mt-home-flow__step span {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
}

.mt-home-section {
  margin-top: 44px;
}
.mt-home-section__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 20px;
}
.mt-home-section__h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  color: var(--oxford);
  margin: 6px 0 0;
}
.mt-home-section__head p {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.62;
}
.mt-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mt-home-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 22px 24px 24px;
  display: grid; gap: 8px;
  text-decoration: none;
  transition: border-color .12s ease;
}
.mt-home-card:hover { border-color: var(--brass); }
.mt-home-card small {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.mt-home-card h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 4px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.mt-home-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.mt-home-card__chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px;
}
.mt-home-card__chips em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}
.mt-home-card__cta {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.mt-states {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.mt-states a {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 10px 12px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--oxford);
  text-align: center;
  letter-spacing: -0.2px;
  transition: border-color .12s ease, background .12s ease;
}
.mt-states a:hover { border-color: var(--brass); background: var(--vellum); }
.mt-states a small {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ============================================================
   DESTINATIONS (listing) page
   ============================================================ */
.mt-directory {
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px 36px 60px;
}
.mt-directory__head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--oxford);
}
.mt-directory__head h1 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 700;
  color: var(--oxford);
  margin: 6px 0 8px;
  letter-spacing: -0.5px;
}
.mt-directory__head p {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}
.mt-directory__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mt-directory__stats > div {
  text-align: right;
  border-right: 1px solid var(--rule);
  padding-right: 14px;
}
.mt-directory__stats > div:last-child { border-right: none; }
.mt-directory__stats b {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--oxford);
  letter-spacing: -1px;
}
.mt-directory__stats span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2px;
}

.mt-listing {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.mt-filter {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0;
  position: sticky;
  top: 24px;
  align-self: start;
}
.mt-filter > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--oxford);
  border-bottom: 1px solid var(--rule);
  background: var(--vellum-deep);
}
.mt-filter > summary::-webkit-details-marker { display: none; }
.mt-filter__body {
  padding: 18px;
  display: grid; gap: 18px;
}
.mt-filter__body details {
  border-top: 1px dashed var(--rule);
  padding-top: 12px;
}
.mt-filter__body details:first-child { border-top: none; padding-top: 0; }
.mt-filter__body summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 6px 0;
}
.mt-filter__body summary::-webkit-details-marker { display: none; }
.mt-filter__list {
  margin-top: 8px;
  max-height: 280px;
  overflow-y: auto;
  display: grid; gap: 0;
}
.mt-filter__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dotted var(--rule-soft);
  font-size: 14px;
  color: var(--ink);
  transition: color .12s ease;
}
.mt-filter__list a:last-child { border-bottom: none; }
.mt-filter__list a:hover { color: var(--brass); }
.mt-filter__list a.is-active { color: var(--oxford); font-weight: 600; }
.mt-filter__list a span:last-child {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
}

.mt-results__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.mt-results__list { display: grid; gap: 8px; }
.mt-row {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 18px 22px 20px;
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 14px 22px;
  text-decoration: none;
  transition: border-color .12s ease, background .12s ease;
}
.mt-row:hover { border-color: var(--brass); background: var(--paper); }
.mt-row--limited {
  border-style: dashed;
  background: var(--vellum);
}
.mt-row strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  color: var(--oxford);
  display: block;
  letter-spacing: -0.3px;
}
.mt-row > div:first-child > span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin: 2px 0 6px;
}
.mt-row p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.mt-row__chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.mt-row__chips em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}
.mt-row__chips em.mt-chip--warn {
  color: var(--seal-red);
  border-color: var(--seal-red);
  background: #FBEDEE;
}
.mt-row__rt {
  text-align: right;
  display: grid;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.mt-row__rt span:last-child { color: var(--brass); text-transform: uppercase; }

.mt-pagination {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.mt-pagination__btns { display: flex; gap: 10px; }

/* ============================================================
   STATIC PAGES (about, contact, glossary, 404, policy, blog)
   ============================================================ */
.mt-static {
  max-width: 880px;
  margin: 36px auto;
  padding: 0 36px;
}
.mt-static__head {
  border-bottom: 2px solid var(--oxford);
  padding-bottom: 18px;
  margin-bottom: 26px;
}
.mt-static__h1 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 700;
  color: var(--oxford);
  margin: 8px 0 6px;
  letter-spacing: -0.5px;
}
.mt-static__lede {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}
.mt-static h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--oxford);
  margin: 32px 0 12px;
  letter-spacing: -0.3px;
}
.mt-static h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--oxford);
  margin: 22px 0 8px;
}
.mt-static p { line-height: 1.7; }
.mt-static ul, .mt-static ol { line-height: 1.7; padding-left: 20px; }
.mt-static a { color: var(--brass); border-bottom: 1px solid currentColor; }
.mt-static blockquote {
  margin: 18px 0;
  padding: 12px 18px;
  background: var(--paper);
  border-left: 3px double var(--brass);
  font-style: italic;
}
.mt-static dl dt {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--oxford);
  margin: 18px 0 4px;
}
.mt-static dl dd {
  margin: 0 0 14px;
  line-height: 1.65;
  color: var(--ink);
}
.mt-static__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 24px 28px 26px;
  margin-top: 24px;
}
.mt-static__contact dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.mt-static__contact dd { margin: 0; font-size: 16px; }
.mt-static__notice {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--vellum-deep);
  border: 1px solid var(--rule-soft);
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-soft);
}

/* ============================================================
   BLOG (travel-tips) — index + detail
   ============================================================ */
.mt-blog {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 36px;
}
.mt-blog__head {
  border-bottom: 2px solid var(--oxford);
  padding-bottom: 18px;
  margin-bottom: 30px;
}
.mt-blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mt-blog-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: border-color .12s ease;
  display: grid;
}
.mt-blog-card:hover { border-color: var(--brass); }
.mt-blog-card__cover {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--vellum-deep);
}
.mt-blog-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.mt-blog-card__body { padding: 18px 20px 22px; display: grid; gap: 6px; }
.mt-blog-card small {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.mt-blog-card h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.mt-blog-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

.mt-article {
  max-width: 760px;
  margin: 36px auto;
  padding: 0 36px;
}
.mt-article__hero {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 34px 32px;
  margin-bottom: 26px;
}
.mt-article h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 700;
  color: var(--oxford);
  margin: 4px 0 10px;
  letter-spacing: -0.5px;
}
.mt-article__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.mt-article__cover {
  aspect-ratio: 16/9;
  margin-bottom: 22px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.mt-article__cover img { width: 100%; height: 100%; object-fit: cover; }
.mt-article__body { font-size: 17px; line-height: 1.74; }
.mt-article__body h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford);
  margin: 32px 0 12px;
  letter-spacing: -0.4px;
}
.mt-article__body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--oxford);
  margin: 24px 0 10px;
}
.mt-article__body a { color: var(--brass); border-bottom: 1px solid currentColor; }
.mt-article__body blockquote {
  margin: 20px 0;
  padding: 14px 20px;
  border-left: 3px double var(--brass);
  background: var(--paper);
  font-style: italic;
  color: var(--ink-soft);
}
.mt-article__promo {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 22px 26px 24px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
}
.mt-article__promo img { width: 120px; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--rule); }
.mt-article__promo strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--oxford);
  display: block;
  margin-bottom: 4px;
}
.mt-article__promo span { font-size: 13.5px; color: var(--ink); line-height: 1.5; }
.mt-article__promo .mt-btn { white-space: nowrap; align-self: center; }

/* ============================================================
   404 page
   ============================================================ */
.mt-404 {
  max-width: 720px;
  margin: 80px auto 60px;
  padding: 0 36px;
  text-align: center;
}
.mt-404__seal {
  display: inline-grid;
  place-items: center;
  width: 180px; height: 180px;
  border: 4px double var(--brass);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 76px;
  font-weight: 700;
  color: var(--seal-red);
  letter-spacing: -2px;
  margin-bottom: 20px;
  background: var(--paper);
}
.mt-404 h1 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  color: var(--oxford);
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}
.mt-404 p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Desktop force-expand on filter rail (matches no-mark pattern) */
@media (min-width: 881px) {
  .mt-filter > summary { pointer-events: none; }
  .mt-filter > summary::after { content: ''; }
  .mt-filter__body details > summary { pointer-events: auto; }
}

@media (max-width: 1100px) {
  .mt-stack { grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; }
  .mt-cover__caption { grid-template-columns: 1.6fr 0.4fr; gap: 22px; }
  .mt-home-hero { grid-template-columns: 1fr 0.7fr; gap: 24px; padding: 36px 36px; }
  .mt-home-grid { grid-template-columns: 1fr 1fr; }
  .mt-home-flow__list { grid-template-columns: 1fr 1fr; }
  .mt-states { grid-template-columns: repeat(6, 1fr); }
  .mt-practice__strip { grid-template-columns: repeat(3, 1fr); }
  .mt-tab { border-radius: 4px; border-bottom: 1px solid var(--vellum-edge); margin: -1px; }
}

@media (max-width: 880px) {
  body.mt-body { font-size: 15.5px; }

  /* Header — keep brand+toggle in single row, hamburger opens side drawer */
  .mt-header { padding: 12px 20px; gap: 12px; position: relative; }
  .mt-brand { gap: 10px; min-width: 0; }
  .mt-brand__seal { width: 40px; height: 40px; font-size: 21px; flex: none; }
  .mt-brand__seal::after { width: 9px; height: 9px; bottom: -2px; right: -2px; border-width: 1.5px; }
  .mt-brand__copy { min-width: 0; }
  .mt-brand__eyebrow { display: none; }
  .mt-brand__name { font-size: 19px; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
  .mt-brand__deck { display: none; }
  .mt-toprule { height: 3px; }

  /* Hamburger toggle (label tied to checkbox) */
  .mt-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px; height: 40px;
    padding: 0;
    background: var(--paper);
    border: 1.5px solid var(--oxford);
    cursor: pointer;
    position: relative;
    z-index: 60;
    flex: 0 0 auto;
  }
  .mt-nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--oxford);
    transition: transform .22s ease, opacity .15s ease, background .15s ease;
  }
  .mt-nav-state:checked ~ .mt-nav-toggle { background: var(--oxford); border-color: var(--oxford); }
  .mt-nav-state:checked ~ .mt-nav-toggle span { background: var(--vellum); }
  .mt-nav-state:checked ~ .mt-nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mt-nav-state:checked ~ .mt-nav-toggle span:nth-child(2) { opacity: 0; }
  .mt-nav-state:checked ~ .mt-nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Backdrop — label so clicking outside drawer also closes it */
  .mt-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 32, 26, 0.62);
    z-index: 45;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: opacity .22s ease;
  }
  .mt-nav-state:checked ~ .mt-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  /* Side drawer — slides in from the right edge */
  .mt-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 320px);
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-left: 1.5px solid var(--oxford);
    box-shadow: -8px 0 28px rgba(20, 32, 26, 0.18);
    z-index: 50;
    padding: 86px 0 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s ease, visibility .28s;
    visibility: hidden;
  }
  .mt-nav-state:checked ~ .mt-nav {
    transform: translateX(0);
    visibility: visible;
  }
  .mt-nav a {
    width: 100%;
    padding: 16px 26px;
    border: none;
    border-bottom: 1px dashed var(--rule);
    border-radius: 0;
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.16em;
    color: var(--oxford);
  }
  .mt-nav a:first-child { border-top: 1px dashed var(--rule); }
  .mt-nav a:last-child { border-bottom: 1px dashed var(--rule); }
  .mt-nav a.is-active {
    background: var(--vellum-deep);
    color: var(--oxford);
    border-left: 3px solid var(--brass);
    padding-left: 23px;
  }
  /* Lock body scroll when drawer is open */
  body:has(.mt-nav-state:checked) { overflow: hidden; }

  /* Cover sheet hero */
  .mt-cover { padding: 0 20px; margin-top: 16px; }
  .mt-cover__sheet { padding: 28px 22px 26px; }
  .mt-cover__sheet::before { height: 4px; }
  .mt-cover__tab { right: 22px; height: 26px; padding: 0 18px; font-size: 9.5px; letter-spacing: 0.18em; }
  .mt-cover__caption { grid-template-columns: 1fr; gap: 20px; }
  .mt-cover__media { aspect-ratio: 16/10; order: -1; }
  .mt-cover__h1 { font-size: clamp(28px, 7vw, 38px); line-height: 1.08; }
  .mt-cover__loc { font-size: 16px; }
  .mt-cover__lede { font-size: 15px; }
  .mt-cover__chips { gap: 6px; }
  .mt-chip { font-size: 9.5px; padding: 4px 8px; letter-spacing: 0.13em; }
  .mt-cover__actions { gap: 8px; }
  .mt-btn { padding: 10px 14px 9px; font-size: 11px; letter-spacing: 0.13em; flex: 1 1 auto; min-width: 0; justify-content: center; }

  /* Practice tabs strip — single-column stack on mobile, head collapses */
  .mt-practice { padding: 0 20px; }
  .mt-practice__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .mt-practice__h2 { font-size: 24px; }
  .mt-practice__strip { grid-template-columns: 1fr; border-bottom: none; gap: 6px; }
  .mt-tab { border-radius: 4px; padding: 14px 16px 12px; }
  .mt-tab__name { font-size: 17px; }

  .mt-exhibit { padding: 0 20px; }
  .mt-exhibit__head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .mt-exhibit__h2 { font-size: 22px; }
  .mt-exhibit__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .mt-exhibit__cell:first-child { grid-row: span 2; }

  /* Section stack — main + side */
  .mt-stack { padding: 0 20px; grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
  .mt-stack__main { gap: 24px; }
  .mt-stack__side { position: static; gap: 14px; }

  /* Filing record */
  .mt-filing { padding: 22px 20px 24px; }
  .mt-filing::before { top: 10px; left: 10px; right: 10px; bottom: 10px; }
  .mt-filing__h2 { font-size: 22px; }
  .mt-filing__table thead { display: none; }
  .mt-filing__table, .mt-filing__table tbody, .mt-filing__table tr, .mt-filing__table th, .mt-filing__table td { display: block; width: 100%; }
  .mt-filing__table tr {
    border: 1px dashed var(--rule);
    padding: 12px 14px;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--rule);
  }
  .mt-filing__table tbody th {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brass);
    padding: 0 0 4px;
    font-family: var(--mono);
    border-bottom: none;
  }
  .mt-filing__table tbody td { padding: 2px 0; border-bottom: none; }

  /* Deposition — stack columns + hide center divider lines */
  .mt-deposition { grid-template-columns: 1fr; }
  .mt-deposition::before, .mt-deposition::after { display: none; }
  .mt-deposition__col { padding: 22px 20px 24px; }
  .mt-deposition__col + .mt-deposition__col {
    border-left: none;
    border-top: 1px solid var(--rule);
    background: none;
  }
  .mt-deposition__title { font-size: 19px; }

  /* Anatomy / spectrum */
  .mt-anatomy { padding: 22px 20px 24px; }
  .mt-anatomy__h2 { font-size: 22px; }
  .mt-anatomy__grid { grid-template-columns: 1fr; gap: 14px; }
  .mt-doc__title { font-size: 17px; }

  .mt-state { padding: 22px 20px 24px; }
  .mt-state__h2 { font-size: 22px; }

  .mt-spectrum { padding: 22px 20px 24px; }
  .mt-spectrum__h2 { font-size: 22px; }
  .mt-spectrum__row { grid-template-columns: 1fr; gap: 6px; padding: 12px 0; }
  .mt-spectrum__doc { font-size: 16px; }
  .mt-spectrum__verdict { justify-self: start; padding: 4px 10px; }

  .mt-faq { padding: 22px 20px 24px; }
  .mt-faq__h2 { font-size: 22px; }
  .mt-faq summary { font-size: 16px; }

  .mt-nearby { padding: 22px 20px 24px; }
  .mt-nearby__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .mt-nearby__h2 { font-size: 22px; }
  .mt-nearby__list { grid-template-columns: 1fr; }

  /* Sidebar cards */
  .mt-side-card { padding: 18px 20px 20px; }
  .mt-side-facts > div { grid-template-columns: 64px 1fr; gap: 8px; }

  /* HOME — section heads collapse, hero compact */
  .mt-home { padding: 22px 20px; }
  .mt-home-hero { grid-template-columns: 1fr; padding: 26px 22px; }
  .mt-home-hero::before { display: none; }
  .mt-home-hero__h1 { font-size: clamp(30px, 7.5vw, 42px); line-height: 1.08; }
  .mt-home-hero__lede { font-size: 15.5px; }
  .mt-home-hero__meta > div { padding: 12px 0 10px; }
  .mt-home-hero__meta b { font-size: 30px; }
  .mt-home-hero__meta span { max-width: 110px; font-size: 9.5px; letter-spacing: 0.14em; }

  .mt-home-flow { padding: 22px 22px; }
  .mt-home-flow__head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .mt-home-flow__h2 { font-size: 22px; }
  .mt-home-flow__list { grid-template-columns: 1fr; gap: 10px; }
  .mt-home-flow__step { padding: 16px 18px 18px; }

  .mt-home-section { margin-top: 32px; }
  .mt-home-section__head { grid-template-columns: 1fr; gap: 8px; align-items: start; margin-bottom: 16px; }
  .mt-home-section__h2 { font-size: 24px; line-height: 1.15; }
  .mt-home-grid { grid-template-columns: 1fr; gap: 14px; }
  .mt-home-card { padding: 18px 20px 20px; }
  .mt-home-card h3 { font-size: 19px; }

  .mt-states { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .mt-states a { padding: 8px 6px; font-size: 14px; }

  /* DIRECTORY (listing) */
  .mt-directory { padding: 22px 20px 50px; }
  .mt-directory__head { grid-template-columns: 1fr; gap: 14px; padding-bottom: 16px; margin-bottom: 18px; }
  .mt-directory__head h1 { font-size: clamp(28px, 7vw, 36px); line-height: 1.1; }
  .mt-directory__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .mt-directory__stats > div { text-align: left; padding: 0; border-right: none; }
  .mt-directory__stats b { font-size: 22px; line-height: 1; }
  .mt-directory__stats span { font-size: 9px; letter-spacing: 0.12em; max-width: none; }

  .mt-listing { grid-template-columns: 1fr; gap: 16px; }
  .mt-filter { position: static; }
  .mt-filter > summary { display: flex; justify-content: space-between; align-items: center; }
  .mt-filter > summary::after { content: '+'; font-family: var(--mono); color: var(--brass); font-size: 22px; }
  .mt-filter[open] > summary::after { content: '–'; }
  .mt-row { grid-template-columns: 1fr; padding: 16px 18px 18px; }
  .mt-row strong { font-size: 19px; }
  .mt-row__rt { text-align: left; flex-direction: row; display: flex; gap: 14px; align-items: center; padding-top: 10px; border-top: 1px dashed var(--rule); margin-top: 4px; }

  /* STATIC pages */
  .mt-static { padding: 0 20px; margin: 24px auto; }
  .mt-static__head { padding-bottom: 14px; margin-bottom: 22px; }
  .mt-static__h1 { font-size: clamp(28px, 7vw, 38px); line-height: 1.1; }
  .mt-static__lede { font-size: 15.5px; }
  .mt-static h2 { font-size: 22px; margin: 26px 0 10px; }
  .mt-static h3 { font-size: 18px; margin: 18px 0 6px; }
  .mt-static__contact { grid-template-columns: 1fr; gap: 14px; padding: 18px 20px; }

  .mt-blog { padding: 0 20px; margin: 24px auto; }
  .mt-blog__list { grid-template-columns: 1fr; gap: 14px; }
  .mt-article { padding: 0 20px; margin: 24px auto; }
  .mt-article__hero { padding: 22px 22px 24px; }
  .mt-article h1 { font-size: clamp(26px, 7vw, 36px); line-height: 1.1; }
  .mt-article__body { font-size: 16px; }
  .mt-article__body h2 { font-size: 22px; margin: 24px 0 10px; }
  .mt-article__body h3 { font-size: 19px; margin: 18px 0 8px; }
  .mt-article__promo { grid-template-columns: 1fr; text-align: left; padding: 20px 22px; }
  .mt-article__promo img { width: 100%; aspect-ratio: 16/9; }

  /* 404 */
  .mt-404 { padding: 0 20px; margin: 50px auto 40px; }
  .mt-404 h1 { font-size: clamp(28px, 7vw, 36px); }
  .mt-404 p { font-size: 15.5px; }

  /* Footer */
  .mt-foot { padding: 36px 22px 20px; margin-top: 40px; }
  .mt-foot__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .mt-foot__id { grid-column: 1 / -1; }
  .mt-foot__id strong { font-size: 20px; }
  .mt-foot__bottom { font-size: 10px; letter-spacing: 0.08em; }
}

@media (max-width: 540px) {
  .mt-cover__h1 { font-size: 28px; }
  .mt-cover__sheet { padding: 26px 18px 22px; }
  .mt-cover__tab { right: 18px; padding: 0 14px; }
  .mt-cover__actions .mt-btn { flex: 1 1 100%; }
  .mt-exhibit__grid { grid-template-columns: 1fr; grid-template-rows: 220px; }
  .mt-exhibit__cell:nth-child(n+3) { display: none; }
  .mt-exhibit__cell:first-child { grid-row: auto; }
  .mt-foot__grid { grid-template-columns: 1fr; gap: 18px; }
  .mt-foot__id { grid-column: auto; }
  .mt-states { grid-template-columns: repeat(2, 1fr); }
  .mt-404__seal { width: 120px; height: 120px; font-size: 50px; }
  .mt-directory__stats b { font-size: 19px; }
  .mt-side-facts > div { grid-template-columns: 56px 1fr; }
}
