/* treatment.css — aesthetic treatment pages + the /estetika/ hub.
   Builds on tokens.css. Every class here is emitted by tools/pages/treatments.py
   from content/pages/<slug>.json; the mm-t-* / mm-s-* vocabulary is the folded
   form of the three bespoke prefixes the live pages used (me-, br-, poli-).

   Local aliases so the extracted markup reads against the shared tokens. */
.mm-t {
  --t-green: var(--mm-green);
  --t-gold: var(--mm-gold);
  --t-ink: var(--mm-charcoal);
  --t-mute: var(--mm-mute);
  --t-line: var(--mm-line);
  --t-alt: #f9fbfb;
  --t-radius: 10px;
}

/* ------------------------------------------------------------ breadcrumbs */
.mm-t-crumbs {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--mm-mute);
  padding-top: 18px;
  padding-bottom: 2px;
}
.mm-t-crumbs a { color: var(--mm-mute); text-decoration: none; }
.mm-t-crumbs a:hover { color: var(--mm-gold); text-decoration: underline; }
.mm-t-crumbs span[aria-hidden] { margin: 0 6px; color: var(--mm-gold); }
.mm-t-crumbs [aria-current] { color: var(--mm-green); font-weight: 600; }

/* ------------------------------------------------------------ title band
   Values lifted from the live Elementor CSS (_source/css/post-<ID>.css,
   container 5a5ddd9): 235px min-height, a vertical green-to-black gradient and
   the clinic logo as a 3% watermark. The logo URL comes in as --mm-band-mark
   from the template so it stays resolved through the media map. */
.mm-t-band {
  position: relative;
  isolation: isolate;
  min-height: 235px;
  display: grid;
  align-content: center;
  background: linear-gradient(360deg, #0f3c3a 0%, #000 100%);
  color: var(--mm-cream);
  padding: clamp(34px, 6vw, 56px) 0;
  text-align: center;
  overflow: hidden;
}
.mm-t-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--mm-band-mark, none);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.03;
  pointer-events: none;
}
.mm-t-band__inner { max-width: var(--mm-container); margin: 0 auto; padding: 0 var(--mm-pad-x); }
.mm-t-band h2, .mm-t-band .mm-t-kicker {
  font-family: var(--mm-font-serif);
  font-size: clamp(28px, 4.4vw, 50px);
  line-height: 1.14;
  color: var(--mm-cream);
  margin: 0;
  white-space: pre-line;
}
.mm-t-band__lede {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(246, 249, 247, 0.82);
  font-size: clamp(15px, 1.5vw, 17px);
}
.mm-t-band__lede p { margin: 0 0 0.6em; }
.mm-t-band__lede p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ shell */
.mm-t { color: var(--t-ink); }
.mm-t-section { padding: clamp(44px, 6.5vw, 88px) 0; }
.mm-t-section.mm-t-alt {
  background: var(--t-alt);
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.mm-t-container { max-width: var(--mm-container); margin: 0 auto; padding: 0 var(--mm-pad-x); }
.mm-t-narrow { max-width: 900px; margin-inline: auto; }
.mm-t-center { text-align: center; }
.mm-t-head { max-width: 760px; margin: 0 auto clamp(28px, 4vw, 52px); text-align: center; }
.mm-t-head :last-child { margin-bottom: 0; }

.mm-t h2 { font-size: clamp(25px, 3.4vw, 40px); margin: 0 0 16px; }
.mm-t h3 { font-size: clamp(19px, 2.2vw, 25px); margin: 0 0 14px; }
.mm-t h4, .mm-t h5 {
  font-family: var(--mm-font-serif);
  font-weight: 400;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--t-green);
  line-height: 1.25;
  margin: 0 0 10px;
}
.mm-t p { margin: 0 0 18px; color: var(--t-mute); }
.mm-t p:last-child { margin-bottom: 0; }
.mm-t strong { color: var(--t-ink); font-weight: 600; }
.mm-t a { color: var(--t-green); font-weight: 500; }
.mm-t a:hover { color: var(--t-gold); }

.mm-t-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-gold);
  margin: 0 0 14px;
}
.mm-t-sub { font-size: clamp(16px, 1.8vw, 19px); color: var(--t-green); margin: 0 0 18px; }

/* lists: gold bullet, no marker */
.mm-t ul { list-style: none; margin: 0 0 18px; padding: 0; }
.mm-t li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--t-mute); }
.mm-t li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--t-gold);
}
.mm-t-checks li::before {
  content: "";
  left: 2px;
  top: 0.34em;
  width: 12px;
  height: 7px;
  border: 2px solid var(--t-gold);
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  background: none;
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------ buttons */
.mm-t-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--t-green);
  color: var(--mm-cream) !important;
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--t-green);
  border-radius: 2px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.mm-t-btn:hover {
  background: transparent;
  color: var(--t-green) !important;
  transform: translateY(-2px);
}
.mm-t-btn::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transition: transform .25s ease;
}
.mm-t-btn:hover::after { transform: translateX(3px); }
.mm-t-btn--light {
  background: var(--mm-cream);
  color: var(--t-green) !important;
  border-color: var(--mm-cream);
}
.mm-t-btn--light:hover { background: var(--t-gold); border-color: var(--t-gold); color: #fff !important; }
.mm-t-btn--ghost { background: transparent; color: var(--mm-cream) !important; border-color: rgba(246,249,247,.45); }
.mm-t-btn--ghost:hover { background: var(--mm-cream); color: var(--t-green) !important; }

/* ------------------------------------------------------------ hero */
.mm-t-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.mm-t-hero-text h1 { margin: 0 0 18px; }
.mm-t-hero-text p { font-size: clamp(15px, 1.6vw, 17px); }
.mm-t-hero-text .mm-t-btn { margin-top: 12px; }
.mm-t-hero-img img,
.mm-t-hero-img > picture img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 18px 18px 0 var(--t-gold);
}
.mm-t-hero--solo { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; text-align: center; }

/* ------------------------------------------------------------ grids */
.mm-t-grid-2, .mm-t-grid-3, .mm-t-grid-4 { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.mm-t-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mm-t-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mm-t-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ------------------------------------------------------------ boxes & cards */
.mm-t-box {
  background: #fff;
  border: 1px solid var(--t-line);
  border-radius: var(--t-radius);
  padding: clamp(24px, 3vw, 38px);
}
.mm-t-alt .mm-t-box { background: #fff; }
.mm-t-box h3 { padding-bottom: 14px; border-bottom: 1px solid var(--t-line); }

.mm-t-card {
  background: #fff;
  border: 1px solid var(--t-line);
  border-radius: var(--t-radius);
  padding: clamp(22px, 2.6vw, 30px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mm-t-card:hover {
  transform: translateY(-4px);
  border-color: var(--mm-gold-soft);
  box-shadow: var(--mm-shadow-tile);
}
.mm-t-card p:last-child { margin-bottom: 0; }

.mm-t-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mm-beige);
  margin: 0 0 16px;
  position: relative;
  flex: 0 0 auto;
}
.mm-t-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--t-gold);
}
.mm-t-center .mm-t-icon, .mm-t-card.mm-t-center .mm-t-icon { margin-inline: auto; }

.mm-t-proto { padding: 14px 0; border-bottom: 1px dashed var(--t-line); }
.mm-t-proto:last-child { border-bottom: 0; padding-bottom: 0; }
.mm-t-proto strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-gold);
  margin-bottom: 6px;
}
.mm-t-proto p { margin: 0; }

/* steps / phases */
.mm-t-stack { display: grid; gap: clamp(16px, 2vw, 24px); }
.mm-t-phase {
  background: #fff;
  border: 1px solid var(--t-line);
  border-left: 3px solid var(--t-gold);
  border-radius: var(--t-radius);
  padding: clamp(22px, 2.6vw, 32px);
}
.mm-t-step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-gold);
  margin-bottom: 10px;
}

/* split media bands */
.mm-t-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
}
.mm-t-split-text > :last-child { margin-bottom: 0; }
.mm-t-video, .mm-t-split-media video, .mm-t-split-media iframe {
  width: 100%;
  border-radius: var(--t-radius);
  overflow: hidden;
  display: block;
}
.mm-t-video video, .mm-t-video iframe { width: 100%; display: block; border: 0; }
.mm-t iframe { aspect-ratio: 16 / 9; width: 100%; border: 0; border-radius: var(--t-radius); }
.mm-t video { background: #0b2620; }
.mm-t-figure img { border-radius: var(--t-radius); }

/* product comparison (biologique-recherche) */
.mm-t-product-img img { border-radius: var(--t-radius); }
.mm-t-product-body { padding-top: 18px; }

/* ------------------------------------------------------------ estetika rows */
.mm-t-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--t-line);
}
.mm-t-row:last-child { border-bottom: 0; }
.mm-t-row-rev .mm-t-row-text { order: 2; }
.mm-t-row-rev .mm-t-row-img { order: 1; }
.mm-t-row-text h3 { margin-bottom: 12px; }
.mm-t-row-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 14px 14px 0 var(--mm-beige);
}

/* ------------------------------------------------------------ tiles (BR) */
.mm-t-tile {
  position: relative;
  border-radius: var(--t-radius);
  overflow: hidden;
  display: block;
  background: var(--mm-green);
}
.mm-t-tile-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.mm-t-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 20px 18px;
  background: linear-gradient(to top, rgba(11, 40, 34, .92), rgba(11, 40, 34, 0));
  color: #fff;
}
.mm-t-tile-title { font-family: var(--mm-font-serif); font-size: 20px; color: #fff; margin: 0 0 4px; }
.mm-t-tile-meta { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mm-gold-light); margin: 0; }

/* marquee / product strip */
.mm-t-marquee { overflow: hidden; }
.mm-t-marquee-track { display: flex; gap: 22px; }
.mm-t-prod {
  flex: 0 0 auto;
  width: min(240px, 62vw);
  background: #fff;
  border: 1px solid var(--t-line);
  border-radius: var(--t-radius);
  padding: 18px;
  text-align: center;
}
.mm-t-prod img { width: 100%; height: 190px; object-fit: contain; margin-bottom: 12px; }

/* horizontal gallery (BR) */
.mm-t-gal { position: relative; }
.mm-t-gal-vp { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.mm-t-gal-track { display: flex; gap: 18px; padding-bottom: 8px; }
.mm-t-gal-item { flex: 0 0 auto; width: min(320px, 78vw); scroll-snap-align: start; }
.mm-t-gal-item img { width: 100%; border-radius: var(--t-radius); }

/* ------------------------------------------------------------ accordion */
.mm-t-acc {
  background: #fff;
  border: 1px solid var(--t-line);
  border-radius: var(--t-radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.mm-t-acc-h {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 17px 20px;
  font-family: var(--mm-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--t-green);
  background: none;
  border: 0;
  cursor: pointer;
}
.mm-t-acc-ico { color: var(--t-gold); font-size: 20px; line-height: 1; transition: transform .25s ease; flex: 0 0 auto; }
.mm-t-acc.is-open .mm-t-acc-ico { transform: rotate(45deg); }
/* open by default; the toggle only engages once the script has enhanced it, so
   the copy is readable (and crawlable) with JS off */
.mm-t-acc--js .mm-t-acc-c { display: none; }
.mm-t-acc--js.is-open .mm-t-acc-c { display: block; }
.mm-t-acc-i { padding: 0 20px 18px; }
.mm-t-acc-i p { margin: 0; }

/* ------------------------------------------------------------ before/after */
.mm-s-wrap { display: grid; gap: clamp(24px, 3vw, 40px); max-width: 900px; margin: 0 auto; }
.mm-s-grid { display: grid; gap: clamp(18px, 2.4vw, 30px); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.mm-s {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--t-radius);
  overflow: hidden;
  border: 1px solid var(--t-line);
  background: #eef2f0;
  box-shadow: 0 20px 50px -30px rgba(15, 62, 53, .5);
  --pos: 50%;
  touch-action: pan-y;
}
.mm-s-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mm-s-img-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.mm-s-label {
  position: absolute;
  top: 12px;
  z-index: 3;
  background: rgba(255, 255, 255, .9);
  color: var(--t-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  pointer-events: none;
}
.mm-s-l { left: 12px; }
.mm-s-r { right: 12px; }
.mm-s-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255, 255, 255, .95);
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 2;
}
.mm-s-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--t-gold);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .3);
}
.mm-s-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: none;
}
.mm-s-range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; cursor: ew-resize; }
.mm-s-range::-moz-range-thumb { width: 44px; height: 999px; border: 0; opacity: 0; cursor: ew-resize; }
.mm-s-range:focus-visible { opacity: 1; outline: 2px solid var(--t-gold); outline-offset: 2px; }

/* gallery filter tabs */
.mm-t-filters { margin: 0 0 clamp(24px, 3vw, 38px); }
.mm-t-filters-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.mm-t-filter {
  font-family: var(--mm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t-green);
  background: #fff;
  border: 1px solid var(--t-line);
  border-radius: var(--mm-radius-pill);
  padding: 9px 18px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.mm-t-filter:hover { border-color: var(--mm-gold-soft); }
.mm-t-filter[aria-pressed="true"] { background: var(--t-green); border-color: var(--t-green); color: var(--mm-cream); }
.mm-t-gallery-grid { display: grid; gap: clamp(18px, 2.4vw, 28px); grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.mm-t-gallery-note {
  grid-column: 1 / -1;
  background: var(--t-alt);
  border: 1px solid var(--t-line);
  border-radius: var(--t-radius);
  padding: clamp(34px, 5vw, 60px) 24px;
  text-align: center;
}
.mm-t-gallery-note h4 { margin-bottom: 8px; }
[hidden] { display: none !important; }

/* ------------------------------------------------------------ prices */
.mm-t-prices + .mm-t-prices { margin-top: 30px; }
.mm-t-prices__title { font-size: clamp(18px, 2vw, 22px); margin: 0 0 14px; }
.mm-t-prices table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--t-line); border-radius: var(--t-radius); overflow: hidden; }
.mm-t-prices th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t-mute);
  font-weight: 600;
  padding: 12px 16px;
  background: var(--mm-cream);
  border-bottom: 1px solid var(--t-line);
}
.mm-t-prices td { padding: 12px 16px; border-bottom: 1px solid var(--t-line); font-size: 15px; }
.mm-t-prices tr:last-child td { border-bottom: 0; }
.mm-t-prices td:last-child { white-space: nowrap; font-weight: 600; color: var(--t-green); text-align: right; }
.mm-t-prices__note { font-size: 13px; color: var(--t-mute); margin: 12px 0 0; }
.mm-t-scroll { overflow-x: auto; }

/* content tables that came from the source page (endolift) */
.mm-t figure { margin: 0 0 18px; overflow-x: auto; }
.mm-t table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--t-line); }
.mm-t th, .mm-t td { padding: 12px 16px; border-bottom: 1px solid var(--t-line); text-align: left; font-size: 15px; }
.mm-t th { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--t-mute); background: var(--mm-cream); }
.mm-t figcaption { font-size: 13px; color: var(--t-mute); padding-top: 10px; }

/* ------------------------------------------------------------ FAQ */
.mm-t-faq { max-width: 900px; margin: 0 auto; }
.mm-t-faq__links { margin: 18px 0 0; font-size: 15px; }

/* ------------------------------------------------------------ related */
.mm-t-related { display: grid; gap: clamp(18px, 2.4vw, 28px); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.mm-t-post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--t-line);
  border-radius: var(--t-radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mm-t-post:hover { transform: translateY(-4px); border-color: var(--mm-gold-soft); box-shadow: var(--mm-shadow-tile); }
.mm-t-post img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.mm-t-post__body { padding: 20px 22px 24px; }
.mm-t-post__kicker { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--t-gold); margin: 0 0 8px; }
.mm-t-post__title { font-family: var(--mm-font-serif); font-size: 19px; line-height: 1.25; color: var(--t-green); margin: 0 0 8px; }
.mm-t-post__excerpt { font-size: 14px; color: var(--t-mute); margin: 0; }

.mm-t-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.mm-t-chip {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t-green);
  background: #fff;
  border: 1px solid var(--t-line);
  border-radius: var(--mm-radius-pill);
  padding: 9px 20px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.mm-t-chip:hover { background: var(--t-green); border-color: var(--t-green); color: var(--mm-cream) !important; }

/* ------------------------------------------------------------ closing CTA */
.mm-t-cta { background: var(--mm-green); color: var(--mm-cream); text-align: center; }
.mm-t-cta h2 { color: var(--mm-cream); }
.mm-t-cta p { color: rgba(246, 249, 247, .8); max-width: 620px; margin-inline: auto; }
.mm-t-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.mm-t-cta__meta { margin-top: 26px; font-size: 13px; color: rgba(246, 249, 247, .62); }
.mm-t-cta__meta a { color: var(--mm-gold-light); }

/* ------------------------------------------------------------ hub tiles */
.mm-t-hub { display: grid; gap: clamp(18px, 2.4vw, 28px); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.mm-t-hub__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--t-line);
  border-radius: var(--t-radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mm-t-hub__item:hover { transform: translateY(-4px); border-color: var(--mm-gold-soft); box-shadow: var(--mm-shadow-tile); }
.mm-t-hub__media { background: var(--mm-beige); aspect-ratio: 4 / 3; position: relative; }
.mm-t-hub__media img { width: 100%; height: 100%; object-fit: cover; }
.mm-t-hub__media:empty::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46px;
  height: 46px;
  border: 2px solid var(--mm-gold);
  border-radius: 50%;
  opacity: .5;
}
.mm-t-hub__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mm-t-hub__name { font-family: var(--mm-font-serif); font-size: 20px; color: var(--t-green); margin: 0; }
.mm-t-hub__desc { font-size: 14px; color: var(--t-mute); margin: 0; flex: 1; }
.mm-t-hub__more { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--t-gold); }

/* ------------------------------------------------------------ reveal
   Visible by default. The script opts the page in by putting .js-reveal on
   <html>, so copy can never end up permanently invisible because an observer
   failed to fire. */
.mm-rv { opacity: 1; transform: none; }
.js-reveal .mm-rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js-reveal .mm-rv.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1024px) {
  .mm-t-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .mm-t-hero, .mm-t-split, .mm-t-row { grid-template-columns: 1fr; }
  .mm-t-hero { gap: 34px; }
  .mm-t-row { gap: 26px; padding: 30px 0; }
  .mm-t-row-rev .mm-t-row-text, .mm-t-row-rev .mm-t-row-img { order: initial; }
  .mm-t-hero-img { order: -1; }
  .mm-t-hero-img img { box-shadow: 12px 12px 0 var(--t-gold); max-width: 520px; margin-inline: auto; }
  .mm-t-row-img img { box-shadow: 10px 10px 0 var(--mm-beige); max-width: 480px; margin-inline: auto; }
  .mm-t-grid-2, .mm-t-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .mm-t-grid-2, .mm-t-grid-3, .mm-t-grid-4 { grid-template-columns: 1fr; }
  .mm-t-related, .mm-t-hub, .mm-t-gallery-grid { grid-template-columns: 1fr; }
  .mm-t-btn { width: 100%; justify-content: center; }
  .mm-t-cta__actions .mm-t-btn { width: auto; }
  .mm-s { aspect-ratio: 4 / 3; }
  .mm-t-hero-img img, .mm-t-row-img img { box-shadow: 8px 8px 0 var(--t-gold); }
  .mm-t-row-img img { box-shadow: 8px 8px 0 var(--mm-beige); }
  .mm-t-filters-scroll { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .mm-t-filter { white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .mm-rv, .js-reveal .mm-rv { opacity: 1; transform: none; transition: none; }
  .mm-t-card:hover, .mm-t-post:hover, .mm-t-hub__item:hover, .mm-t-btn:hover { transform: none; }
}

@media print {
  .mm-t-cta, .mm-t-filters, .mm-s-range, .mm-t-band { display: none; }
  .mm-rv { opacity: 1; transform: none; }
}
