/* ==========================================================================
   MILFERS · BRAND GLYPHS
   Solid silhouettes from Guía de Marca 2026 (Recursos 76–87).
   Rendered with CSS mask so the color is driven by `color:` / currentColor.
   Drop on any element:  <i class="bg bg--burger" aria-hidden="true"></i>
   Sizing via width/height or font-size + ratio.
   ========================================================================== */

.bg {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 0;
}

/* Food & drink */
.bg--burger    { -webkit-mask-image: url('assets/brand/glyph-burger.svg');    mask-image: url('assets/brand/glyph-burger.svg'); }
.bg--steak     { -webkit-mask-image: url('assets/brand/glyph-steak.svg');     mask-image: url('assets/brand/glyph-steak.svg'); }
.bg--flame     { -webkit-mask-image: url('assets/brand/glyph-flame.svg');     mask-image: url('assets/brand/glyph-flame.svg'); }
.bg--fries     { -webkit-mask-image: url('assets/brand/glyph-fries.svg');     mask-image: url('assets/brand/glyph-fries.svg'); }
.bg--sausages  { -webkit-mask-image: url('assets/brand/glyph-sausages.svg');  mask-image: url('assets/brand/glyph-sausages.svg'); }
.bg--cocktail  { -webkit-mask-image: url('assets/brand/glyph-cocktail.svg');  mask-image: url('assets/brand/glyph-cocktail.svg'); }
.bg--cup       { -webkit-mask-image: url('assets/brand/glyph-cup.svg');       mask-image: url('assets/brand/glyph-cup.svg'); }

/* Service / journey */
.bg--bag       { -webkit-mask-image: url('assets/brand/glyph-bag.svg');       mask-image: url('assets/brand/glyph-bag.svg'); }
.bg--scooter   { -webkit-mask-image: url('assets/brand/glyph-scooter.svg');   mask-image: url('assets/brand/glyph-scooter.svg'); }
.bg--pin       { -webkit-mask-image: url('assets/brand/glyph-pin.svg');       mask-image: url('assets/brand/glyph-pin.svg'); }

/* Seals & numerals */
.bg--badge-35  { -webkit-mask-image: url('assets/brand/badge-35-circle.svg'); mask-image: url('assets/brand/badge-35-circle.svg'); }
.bg--seal-star { -webkit-mask-image: url('assets/brand/seal-star.svg');       mask-image: url('assets/brand/seal-star.svg'); }
.bg--n35-pixel { -webkit-mask-image: url('assets/brand/numerals-35-pixel.svg'); mask-image: url('assets/brand/numerals-35-pixel.svg'); }
.bg--n35-block { -webkit-mask-image: url('assets/brand/numerals-35-block.svg'); mask-image: url('assets/brand/numerals-35-block.svg'); }
.bg--stamp     { -webkit-mask-image: url('assets/brand/stamp-milfers.svg');   mask-image: url('assets/brand/stamp-milfers.svg'); }

/* Corner bursts (radiating-stripe decorations) */
.bg--burst-tl  { -webkit-mask-image: url('assets/brand/burst-tl.svg');        mask-image: url('assets/brand/burst-tl.svg'); }
.bg--burst-tr  { -webkit-mask-image: url('assets/brand/burst-tr.svg');        mask-image: url('assets/brand/burst-tr.svg'); }

/* ----------------- Color helpers (when currentColor isn't ideal) --------- */
.bg-color-ruby     { color: var(--milfers-ruby); }
.bg-color-green    { color: var(--milfers-green); }
.bg-color-concrete { color: var(--milfers-concrete); }
.bg-color-black    { color: var(--milfers-black); }

/* =========================================================================
   PATTERN COMPONENTS — composed glyph layouts
   ========================================================================= */

/* Big silent decorative numeral (35) used as section watermark. */
.mf-watermark {
  position: absolute;
  pointer-events: none;
  color: currentColor;
  opacity: 0.06;
}

/* Service strip: 3-up icon row with caption */
.mf-services {
  background: var(--milfers-concrete);
  border-top: 1px solid var(--rule-on-light);
  border-bottom: 1px solid var(--rule-on-light);
  padding: clamp(28px, 4vw, 56px) var(--gutter);
}
.mf-services-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.mf-svc {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  padding: 14px 26px 14px 0;
  border-right: 1px solid var(--rule-on-light);
}
.mf-svc:last-child { border-right: 0; padding-right: 0; }
.mf-svc + .mf-svc { padding-left: 28px; }
.mf-svc-icon {
  width: 64px;
  height: 64px;
  color: var(--milfers-ruby);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mf-svc-icon .bg { width: 100%; height: 100%; }
.mf-svc-lbl {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(21,21,21,0.55);
  margin: 0 0 4px;
}
.mf-svc-t {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--milfers-black);
  margin: 0 0 4px;
  text-transform: uppercase;
}
.mf-svc-d {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(21,21,21,0.7);
  margin: 0;
}
@media (max-width: 880px) {
  .mf-services-inner { grid-template-columns: 1fr; }
  .mf-svc { border-right: 0; border-bottom: 1px solid var(--rule-on-light); padding: 18px 0 !important; }
  .mf-svc:last-child { border-bottom: 0; }
}

/* About pull quote — marker text with seal-star as watermark behind */
.mf-about-pull {
  position: relative;
  display: block;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule-on-light);
  max-width: 22ch;
  margin-top: 8px;
  isolation: isolate;
}
.mf-about-pull .marker {
  display: block;
  position: relative;
  z-index: 2;
}
.mf-about-pull-seal {
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-44%);
  width: 160px;
  height: 160px;
  color: var(--milfers-ruby);
  opacity: 0.12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: spin 38s linear infinite;
  z-index: 0;
  pointer-events: none;
}
.mf-about-pull-seal .bg { width: 100%; height: 100%; }
@media (max-width: 880px) {
  .mf-about-pull-seal { width: 130px; height: 130px; right: -16px; }
}

/* Maduración · full-width marker banner */
.mf-mad-marker-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 88px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(241,242,242,0.18) 22%, rgba(241,242,242,0.18) 78%, transparent 100%) 1;
  position: relative;
  z-index: 1;
}
.mf-mad-marker-wide .marker {
  font-family: var(--font-accent);
  color: var(--milfers-ruby);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: 0.005em;
  transform: rotate(-2deg);
  display: inline-block;
  text-align: center;
}
.mf-mad-marker-wide .dot {
  color: var(--milfers-ruby);
  font-size: 12px;
  line-height: 1;
  opacity: 0.7;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .mf-mad-marker-wide .dot { display: none; }
}

/* =========================================================================
   REVIEWS · brand background texture (bursts + cursive stamp)
   ========================================================================= */
.mf-reviews { position: relative; overflow: hidden; }
.mf-reviews-inner { position: relative; z-index: 2; }

.mf-reviews-burst {
  position: absolute;
  width: clamp(220px, 26vw, 360px);
  aspect-ratio: 1/1;
  color: var(--milfers-ruby);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.mf-reviews-burst .bg { width: 100%; height: 100%; display: block; }
.mf-reviews-burst--tl { top: -40px; left: -40px; }
.mf-reviews-burst--br { bottom: -40px; right: -40px; transform: rotate(180deg); }

/* Big cursive "Milfers" stamp as watermark behind the headline */
.mf-reviews-stamp {
  position: absolute;
  top: 12px;
  right: 8%;
  width: clamp(220px, 32vw, 480px);
  color: var(--milfers-ruby);
  opacity: 0.08;
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: 1;
}
.mf-reviews-stamp .bg {
  width: 100%;
  height: auto;
  aspect-ratio: 1668/800;
  display: block;
}
@media (max-width: 880px) {
  .mf-reviews-stamp { right: -8%; opacity: 0.06; }
  .mf-reviews-burst { opacity: 0.06; width: 200px; }
}
/* Hero CTA — unified icon sizing */
.mf-cta-ico {
  width: 18px;
  height: 18px;
  color: currentColor;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
.mf-hero-cta-primary,
.mf-hero-cta-secondary,
.mf-header-cta {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ── Continuous attention pulse on the PRIMARY CTAs ─────────────────────
   A subtle ruby halo breathes outward — same vocabulary as the header pulse */
.mf-hero-cta-primary,
.mf-header-cta {
  animation: mfCtaBreathe 2.6s var(--ease-out) infinite;
}
@keyframes mfCtaBreathe {
  0%   { box-shadow: 0 0 0 0  rgba(212,127,154,0.55), 0 0 0 0 rgba(212,127,154,0); }
  60%  { box-shadow: 0 0 0 12px rgba(212,127,154,0),    0 0 22px 4px rgba(212,127,154,0.18); }
  100% { box-shadow: 0 0 0 0  rgba(212,127,154,0),     0 0 0 0 rgba(212,127,154,0); }
}
.mf-hero-cta-primary:hover,
.mf-header-cta:hover { animation-play-state: paused; }

/* ── Diagonal shine sweep on hover (primary + secondary + header) ─────── */
.mf-hero-cta-primary::after,
.mf-hero-cta-secondary::after,
.mf-header-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.45) 50%,
    transparent 65%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}
.mf-hero-cta-secondary::after {
  /* secondary is light bg — sweep with a darker glaze instead of white */
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(33,58,53,0.18) 50%,
    transparent 65%
  );
}
.mf-hero-cta-primary:hover::after,
.mf-hero-cta-secondary:hover::after,
.mf-header-cta:hover::after {
  animation: mfCtaShine 760ms var(--ease-out) forwards;
}
@keyframes mfCtaShine {
  to { left: 150%; }
}

/* Push button content above the shine layer */
.mf-hero-cta-primary > *,
.mf-hero-cta-secondary > *,
.mf-header-cta > * {
  position: relative;
  z-index: 1;
}

/* ── Icon nudges on hover ─────────────────────────────────────────────── */
.mf-hero-cta-primary:hover .mf-cta-ico,
.mf-header-cta:hover .mf-cta-ico {
  animation: mfCtaBounce 600ms var(--ease-out);
}
@keyframes mfCtaBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  35%      { transform: translateY(-4px) rotate(-8deg); }
  65%      { transform: translateY(0)    rotate(4deg); }
}

.mf-hero-cta-secondary:hover .mf-cta-ico {
  animation: mfCtaDrive 800ms var(--ease-out);
}
@keyframes mfCtaDrive {
  0%   { transform: translateX(0); }
  35%  { transform: translateX(6px); }
  55%  { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

/* ── Arrow accents on hover ───────────────────────────────────────────── */
.mf-hero-cta-primary .arr,
.mf-hero-cta-secondary .arr,
.mf-header-cta .arr {
  transition: transform var(--dur-med) var(--ease-out);
  display: inline-block;
}
.mf-hero-cta-primary:hover .arr,
.mf-hero-cta-secondary:hover .arr,
.mf-header-cta:hover .arr {
  transform: translateX(4px);
}

/* Header CTA needs slightly smaller icon to match its tighter padding */
.mf-header-cta .mf-cta-ico {
  width: 14px;
  height: 14px;
  margin-right: 2px;
}
.mf-header-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

/* ── TERTIARY CTA · "ver la carta entera" · clean legible text link (all sizes) ── */
.mf-hero-cta-tertiary {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--milfers-concrete) !important;
  text-decoration: none !important;
  padding: 6px 0 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  transform: none;
  transition: opacity var(--dur-fast);
}
.mf-hero-cta-tertiary:hover { opacity: 0.78; }
.mf-hero-cta-tertiary-arr {
  display: inline-block;
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  transform: none !important;
  color: var(--milfers-ruby);
  transition: transform var(--dur-med) var(--ease-out);
}
.mf-hero-cta-tertiary:hover .mf-hero-cta-tertiary-arr { transform: translateY(2px); }
.mf-hero-cta-tertiary-t {
  display: inline-block;
  border-bottom: 1.5px solid var(--milfers-ruby);
  padding-bottom: 3px;
}
.mf-hero-cta-tertiary-meta {
  font-family: var(--font-body) !important;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241,242,242,0.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mf-hero-cta-tertiary-meta::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--milfers-ruby);
}
@media (max-width: 640px) {
  .mf-hero-cta-tertiary { font-size: 12.5px !important; letter-spacing: 0.1em !important; flex-wrap: wrap; gap: 10px 14px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mf-hero-cta-primary,
  .mf-header-cta,
  .mf-hero-cta-primary::after,
  .mf-hero-cta-secondary::after,
  .mf-header-cta::after,
  .mf-hero-cta-primary:hover .mf-cta-ico,
  .mf-header-cta:hover .mf-cta-ico,
  .mf-hero-cta-secondary:hover .mf-cta-ico {
    animation: none !important;
  }
}

.mf-cta-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}
.mf-cta-icons .bg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

/* About pillars — icon-led version (we keep the old fallback styles) */
.mf-about-pillar-ico .mf-about-pillar-icon {
  width: 44px;
  height: 44px;
  color: var(--milfers-ruby);
  margin-bottom: 18px;
}
.mf-about-pillar-ico .mf-about-pillar-icon .bg { width: 100%; height: 100%; }
@media (max-width: 880px) {
  .mf-about-pillar-ico .mf-about-pillar-icon { width: 32px; height: 32px; margin-bottom: 12px; }
}

/* Hero brand stamp overlay (cursive Milfers mark) */
.mf-hero-stamp {
  position: absolute;
  top: 8%;
  left: -3%;
  width: clamp(180px, 22vw, 320px);
  color: var(--milfers-ruby);
  opacity: 0.92;
  transform: rotate(-8deg);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}
.mf-hero-stamp .bg { width: 100%; height: auto; aspect-ratio: 1668/800; display: block; }
@media (max-width: 880px) { .mf-hero-stamp { display: none; } }

/* Watermark — gigantic "35" living in maduración bg */
.mf-mad-watermark {
  position: absolute;
  right: -6%;
  bottom: -10%;
  width: clamp(420px, 55vw, 780px);
  color: var(--milfers-ruby);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.mf-mad-watermark .bg { width: 100%; height: auto; aspect-ratio: 1019/800; display: block; }

/* Footer corner bursts */
.mf-footer-burst {
  position: absolute;
  width: clamp(180px, 22vw, 280px);
  height: auto;
  color: var(--milfers-ruby);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.mf-footer-burst .bg { width: 100%; height: auto; aspect-ratio: 1/1; display: block; }
.mf-footer-burst--tl { top: 0; left: 0; }
.mf-footer-burst--tr { top: 0; right: 0; }
.mf-footer-burst--bl { bottom: 0; left: 0; transform: rotate(180deg); }
.mf-footer-burst--br { bottom: 0; right: 0; transform: rotate(180deg); }

/* SealsStrip — bigger, with caption under each */
.mf-seals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
}
.mf-seal-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  border-right: 1px solid rgba(241,242,242,0.08);
}
.mf-seal-cell:last-child { border-right: 0; }
.mf-seal-glyph {
  width: clamp(64px, 9vw, 96px);
  height: clamp(64px, 9vw, 96px);
  color: var(--milfers-ruby);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: spin 32s linear infinite;
}
.mf-seal-cell:nth-child(2) .mf-seal-glyph { animation-duration: 26s; animation-direction: reverse; color: var(--milfers-concrete); }
.mf-seal-cell:nth-child(3) .mf-seal-glyph { animation-duration: 40s; }
.mf-seal-cell:nth-child(4) .mf-seal-glyph { animation-duration: 30s; animation-direction: reverse; color: var(--milfers-concrete); }
.mf-seal-glyph .bg { width: 100%; height: 100%; }
.mf-seal-cell .lbl {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(241,242,242,0.55);
  text-align: center;
  line-height: 1.3;
  max-width: 16ch;
}
@media (max-width: 760px) {
  .mf-seals-grid { grid-template-columns: repeat(2, 1fr); }
  .mf-seal-cell:nth-child(2) { border-right: 0; }
  .mf-seal-cell:nth-child(1), .mf-seal-cell:nth-child(2) { border-bottom: 1px solid rgba(241,242,242,0.08); }
}

/* Menu — small category tabs (reuse mf-tab styles, swap icon) */
.mf-tab-bg {
  width: 22px;
  height: 22px;
  color: currentColor;
  opacity: 0.7;
}
.mf-tab.is-active .mf-tab-bg { opacity: 1; }

/* =========================================================================
   SEALS STRIP · editorial brand-identity layout (overrides legacy 3-col)
   ========================================================================= */
.mf-seals { position: relative; }
.mf-seals-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: block !important;       /* override the old grid */
  position: relative;
  z-index: 1;
}

.mf-seals-burst {
  position: absolute;
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 1/1;
  color: var(--milfers-ruby);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.mf-seals-burst .bg { width: 100%; height: 100%; display: block; }
.mf-seals-burst--tl { top: 0; left: 0; }
.mf-seals-burst--br { bottom: 0; right: 0; transform: rotate(180deg); }

.mf-seals-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 56px);
  position: relative;
  z-index: 2;
}
.mf-seals-head .ed-sec-title { display: inline-block; margin-bottom: 18px; }
.mf-seals-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  margin: 0 0 18px;
  color: var(--milfers-concrete);
}
.mf-seals-title em { font-style: normal; color: var(--milfers-ruby); }
.mf-seals-lede {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: rgba(241,242,242,0.72);
  max-width: 48ch;
  margin: 0 auto;
}
.mf-seals-lede strong { color: var(--milfers-ruby); font-weight: 700; }

/* Centerpiece seal */
.mf-seals-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(20px, 3vw, 40px) 0 clamp(36px, 5vw, 64px);
  position: relative;
  z-index: 2;
}
.mf-seals-hero-stage {
  position: relative;
  width: clamp(220px, 32vw, 360px);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(212,127,154,0.18));
}
.mf-seals-hero-stage::before {
  content: '';
  position: absolute;
  inset: -8%;
  border: 1px dashed rgba(241,242,242,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.mf-seals-hero-seal {
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(0) saturate(100%) invert(68%) sepia(21%) saturate(790%) hue-rotate(296deg) brightness(91%) contrast(89%);
}
.mf-seals-hero-tag {
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  background: var(--milfers-black);
  border: 1px solid rgba(241,242,242,0.18);
  color: rgba(241,242,242,0.78);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Satellites row */
.mf-seals-sats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(241,242,242,0.12);
  border-bottom: 1px solid rgba(241,242,242,0.12);
  margin-top: clamp(28px, 4vw, 56px);
  position: relative;
  z-index: 2;
}
.mf-seals-sat {
  padding: 28px 22px;
  border-right: 1px solid rgba(241,242,242,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.mf-seals-sat:last-child { border-right: 0; }
.mf-seals-sat-icon {
  width: clamp(48px, 6vw, 72px);
  height: clamp(48px, 6vw, 72px);
  color: var(--milfers-concrete);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: spin 36s linear infinite;
}
.mf-seals-sat:nth-child(odd) .mf-seals-sat-icon { color: var(--milfers-ruby); animation-direction: reverse; animation-duration: 30s; }
.mf-seals-sat:nth-child(3) .mf-seals-sat-icon { animation-duration: 44s; }
.mf-seals-sat-icon .bg { width: 100%; height: 100%; }
.mf-seals-sat-lbl {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(241,242,242,0.62);
  line-height: 1.35;
}
.mf-seals-sat-lbl span:first-child {
  color: var(--milfers-concrete);
  font-weight: 600;
}

.mf-seals-credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 0;
  margin-top: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(241,242,242,0.55);
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .mf-seals-sats { grid-template-columns: repeat(2, 1fr); }
  .mf-seals-sat:nth-child(2) { border-right: 0; }
  .mf-seals-sat:nth-child(1), .mf-seals-sat:nth-child(2) {
    border-bottom: 1px solid rgba(241,242,242,0.10);
  }
  .mf-seals-credits { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .mf-seals-burst { width: 160px; opacity: 0.16; }
}

/* =========================================================================
   FOOTER additions — keep cta children above corner bursts
   ========================================================================= */
.mf-footer-cta { position: relative; }
.mf-footer-cta > *:not(.mf-footer-burst) { position: relative; z-index: 1; }

.mf-footer-modes {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 22px;
  border-top: 1px solid rgba(241,242,242,0.18);
  border-bottom: 1px solid rgba(241,242,242,0.18);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(241,242,242,0.78);
}
.mf-footer-modes .mode {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mf-footer-modes .mode .bg {
  width: 22px;
  height: 22px;
  color: var(--milfers-ruby);
}
.mf-footer-modes .mode-sep {
  color: rgba(241,242,242,0.35);
  letter-spacing: 0;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .mf-footer-modes { flex-wrap: wrap; justify-content: center; gap: 8px 16px; padding: 14px; font-size: 10px; letter-spacing: 0.18em; }
}
