@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --white: #ffffff;
  --canvas: #f4f6f8;
  --navy: #15202b;
  --navy-soft: #1e2d3d;
  --copper: #b87333;
  --copper-light: #d4a574;
  --slate: #5a6b7d;
  --ink: #0f1419;
  --line: #dde3ea;
  --font-display: "Bitter", Georgia, serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 8px 24px rgba(21,32,43,.08);
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); font-size: 1rem; line-height: 1.6; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.25; color: var(--navy); }
.container { width: min(var(--max), 92vw); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; z-index: 9999; background: var(--navy); color: #fff; padding: 8px 16px; font-weight: 700; border-radius: var(--radius); }
.skip-link:focus { left: 12px; top: 12px; }

/* Topbar */
.fm-topbar { background: var(--navy); color: #cbd5e1; font-size: .75rem; padding: 8px 0; border-bottom: 2px solid var(--copper); }
.fm-topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; width: min(var(--max), 92vw); margin-inline: auto; }
.fm-topbar a { color: var(--copper-light); }
.fm-topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.tasa-bcv { color: var(--copper-light); font-weight: 600; }

/* Header */
.fm-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 300; }
.fm-header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 14px 4vw; max-width: var(--max); margin-inline: auto; }
.fm-logo img { height: 40px; width: auto; }
.fm-nav { display: flex; justify-content: center; gap: 6px; }
.fm-nav a { font-size: .84rem; font-weight: 600; color: var(--slate); padding: 8px 16px; border-radius: var(--radius); border: 1px solid transparent; }
.fm-nav a:hover, .fm-nav a.active { color: var(--navy); background: var(--canvas); border-color: var(--line); }
.fm-nav-toggle { display: none; background: var(--navy); color: #fff; border: none; padding: 8px 14px; border-radius: var(--radius); font-weight: 700; cursor: pointer; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; font-family: var(--font-ui); font-size: .84rem; font-weight: 600; border: none; border-radius: var(--radius); cursor: pointer; transition: background .2s, transform .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: #9a6129; color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--navy); background: var(--canvas); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-sm { padding: 8px 14px; font-size: .78rem; }
.btn-block { width: 100%; }

/* Hero portada — layout equilibrado dentro de .container */
.hero-portada {
  background: linear-gradient(180deg, var(--white) 0%, var(--canvas) 100%);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 0;
}
.hero-portada-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  min-height: 460px;
}
.hero-portada-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 48px;
  max-width: 540px;
}
.hero-portada-kicker {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--copper);
  background: rgba(184,115,51,.1);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
  width: fit-content;
}
.hero-portada-copy h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 18em;
  text-wrap: balance;
}
.hero-portada-lead {
  font-size: .98rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 34em;
}
.hero-portada-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-portada-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hero-portada-meta li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
}
.hero-portada-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-portada-meta span {
  font-size: .68rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-portada-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-portada-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
}
.hero-portada-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(21,32,43,.92));
  padding: 48px 20px 20px;
  color: #fff;
}
.hero-portada-badge-label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--copper-light);
  margin-bottom: 4px;
}
.hero-portada-badge strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* Legacy hero (otras refs) */
.fm-hero { background: var(--canvas); border-bottom: 1px solid var(--line); }

/* Trust bar */
.fm-trust { background: var(--navy); color: #e2e8f0; padding: 20px 0; }
.fm-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.fm-trust-item strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--copper-light); }
.fm-trust-item span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }

/* Sections */
.fm-section { padding: 64px 0; }
.fm-section-alt { background: var(--canvas); }
.fm-section-head { margin-bottom: 36px; }
.fm-section-head.center { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 36px; }
.fm-section-head .label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--copper); margin-bottom: 8px; }
.fm-section-head p { color: var(--slate); margin-top: 10px; font-size: .95rem; }

/* Service grid 4 cols */
.fm-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fm-svc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 18px; transition: box-shadow .2s, border-color .2s; }
.fm-svc-card:hover { box-shadow: var(--shadow); border-color: var(--copper-light); }
.fm-svc-num { font-size: .68rem; font-weight: 700; color: var(--copper); letter-spacing: .08em; margin-bottom: 8px; }
.fm-svc-card h3 { font-size: .95rem; margin-bottom: 8px; }
.fm-svc-card p { font-size: .82rem; color: var(--slate); line-height: 1.5; }

/* Rates table */
.fm-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.fm-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.fm-table thead { background: var(--navy); color: #fff; }
.fm-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.fm-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.fm-table tbody tr:hover { background: var(--canvas); }
.fm-table .sku { font-weight: 700; color: var(--copper); font-size: .8rem; white-space: nowrap; }
.fm-table .price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.fm-table .price small { display: block; font-weight: 400; font-size: .74rem; color: var(--slate); }

/* Timeline */
.fm-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.fm-timeline::before { content: ""; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px; background: var(--line); z-index: 0; }
.fm-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.fm-step-num { width: 56px; height: 56px; margin: 0 auto 14px; background: var(--white); border: 2px solid var(--copper); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--copper); }
.fm-step h3 { font-size: .92rem; margin-bottom: 6px; }
.fm-step p { font-size: .8rem; color: var(--slate); }

/* FAQ 2 col */
.fm-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fm-faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fm-faq-q { width: 100%; text-align: left; background: var(--canvas); border: none; padding: 14px 16px; font-family: var(--font-display); font-size: .88rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; gap: 10px; }
.fm-faq-q::after { content: "+"; color: var(--copper); font-size: 1.1rem; font-weight: 400; }
.fm-faq-item.open .fm-faq-q::after { content: "−"; }
.fm-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
.fm-faq-item.open .fm-faq-a { max-height: 180px; }
.fm-faq-a p { padding: 12px 16px 16px; font-size: .84rem; color: var(--slate); }

/* Contact */
.fm-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; }
.fm-info-list { display: flex; flex-direction: column; gap: 12px; }
.fm-info-card { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--copper); border-radius: var(--radius); padding: 16px 18px; }
.fm-info-card h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--copper); margin-bottom: 6px; font-family: var(--font-ui); font-weight: 700; }
.fm-info-card p, .fm-info-card a { font-size: .9rem; color: var(--ink); }
.fm-map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fm-map iframe { width: 100%; height: 340px; border: none; display: block; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--copper); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; }
.contact-card h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--copper); margin-bottom: 6px; font-family: var(--font-ui); font-weight: 700; }
.contact-banner { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; border: 1px solid var(--line); }
.contact-banner img { width: 100%; height: 180px; object-fit: cover; }
.contact-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,32,43,.92), rgba(184,115,51,.78)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; color: #fff; }
.contact-banner-overlay h2 { color: #fff; margin-bottom: 8px; }
.map-wrap iframe { width: 100%; height: 340px; border: none; border-radius: var(--radius); border: 1px solid var(--line); }
.btn-steel { background: var(--navy); color: #fff; }
.btn-steel:hover { background: var(--navy-soft); color: #fff; }

/* Catalog */
.fm-cat-hero { background: var(--navy); color: #fff; padding: 56px 0; text-align: center; border-bottom: 4px solid var(--copper); }
.fm-cat-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 10px; }
.fm-cat-hero p { color: #94a3b8; max-width: 560px; margin-inline: auto; font-size: .92rem; }
.fm-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.fm-chip { padding: 7px 14px; font-size: .76rem; font-weight: 600; border: 1px solid var(--line); background: var(--white); border-radius: 999px; cursor: pointer; color: var(--slate); }
.fm-chip.active, .fm-chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.fm-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fm-cat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.fm-cat-img img { width: 100%; height: 170px; object-fit: cover; }
.fm-cat-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.fm-cat-body .sku { font-size: .68rem; font-weight: 700; color: var(--copper); }
.fm-cat-body h2 { font-size: 1rem; margin: 6px 0; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 10px 0; }
.feat-tags li { font-size: .68rem; padding: 3px 8px; background: var(--canvas); border-radius: 4px; color: var(--slate); }
.modalidad-tag { font-size: .72rem; color: var(--copper); font-weight: 600; }
.precio-slot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.precio-line strong { color: var(--navy); font-size: .95rem; }
.precio-line span { display: block; font-size: .74rem; color: var(--slate); margin-top: 2px; }
.precio-note { font-size: .72rem; color: var(--slate); font-style: italic; margin-top: 4px; }

/* Legal */
.legal-page { padding: 48px 0 64px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .fecha { color: var(--slate); margin-bottom: 24px; font-size: .88rem; }
.legal-page h2 { font-size: 1.05rem; margin: 28px 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--canvas); }
.legal-page p, .legal-page li { font-size: .9rem; margin-bottom: 8px; color: var(--slate); }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.legal-page th { background: var(--canvas); font-weight: 600; }
.legal-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.legal-hub-card { display: block; padding: 20px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--copper); border-radius: var(--radius); color: inherit; }
.legal-hub-card:hover { box-shadow: var(--shadow); }
.legal-hub-card h2 { font-size: .92rem; margin: 6px 0; border: none; padding: 0; }
.legal-hub-card p { font-size: .82rem; }

.about-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; margin-bottom: 32px; }
.about-visual { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.about-visual img { width: 100%; min-height: 260px; object-fit: cover; }

/* Disclaimer & footer */
.ads-disclaimer { background: #fef9f3; border: 1px solid #f0dfc8; border-left: 4px solid var(--copper); padding: 16px 20px; margin: 32px auto; font-size: .84rem; max-width: var(--max); width: 92vw; border-radius: var(--radius); color: var(--slate); }
.ads-disclaimer strong { color: var(--navy); }
.fm-legal-strip { background: var(--navy-soft); color: #94a3b8; text-align: center; padding: 12px; font-size: .8rem; }
.fm-legal-strip a { color: var(--copper-light); }

.fm-footer { background: var(--navy); color: #cbd5e1; padding: 48px 0 24px; }
.fm-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.fm-footer-brand p { font-size: .84rem; margin-top: 12px; line-height: 1.5; }
.fm-footer-col h4 { font-family: var(--font-display); color: #fff; font-size: .88rem; margin-bottom: 12px; }
.fm-footer-col a { display: block; color: #94a3b8; font-size: .82rem; margin-bottom: 6px; }
.fm-footer-col a:hover { color: var(--copper-light); }
.fm-footer-legal { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.fm-footer-legal a { color: #94a3b8; font-size: .76rem; }
.fm-footer-copy { text-align: center; font-size: .72rem; margin-top: 16px; color: #64748b; }

/* CTA band */
.fm-cta { background: var(--navy); color: #fff; padding: 48px; text-align: center; border-radius: var(--radius); border-bottom: 4px solid var(--copper); }
.fm-cta h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.fm-cta p { color: #94a3b8; margin-bottom: 20px; font-size: .92rem; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--navy); color: #fff; padding: 16px; transform: translateY(100%); transition: transform .35s; border-top: 3px solid var(--copper); }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: var(--max); margin-inline: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; }
.cookie-inner p { font-size: .84rem; flex: 1; min-width: 220px; color: #cbd5e1; }
.cookie-inner a { color: var(--copper-light); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s, transform .45s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .fm-header-inner { grid-template-columns: 1fr auto; }
  .fm-nav { position: fixed; inset: 0; top: 108px; background: var(--white); flex-direction: column; padding: 24px; transform: translateX(100%); transition: transform .3s; border-top: 1px solid var(--line); align-items: stretch; }
  .fm-nav.open { transform: translateX(0); }
  .fm-nav a { padding: 12px 16px; }
  .fm-nav-toggle { display: block; }
  .fm-header .btn-copper { display: none; }
  .hero-portada-inner { grid-template-columns: 1fr; min-height: auto; gap: 24px; }
  .hero-portada-copy { max-width: none; padding-bottom: 0; }
  .hero-portada-meta { grid-template-columns: 1fr; }
  .hero-portada-visual { min-height: 280px; }
  .hero-portada-visual img { min-height: 280px; }
  .fm-hero-grid, .fm-svc-grid, .fm-trust-grid, .fm-timeline, .fm-faq-grid, .fm-contact-grid, .contact-grid, .fm-cat-grid, .fm-footer-grid, .legal-hub-grid, .about-split { grid-template-columns: 1fr; }
  .fm-hero-text { padding: 40px 4vw; }
  .fm-hero-media { padding: 0 4vw 40px; }
  .fm-timeline::before { display: none; }
  .fm-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .fm-svc-grid { grid-template-columns: 1fr; }
  .fm-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Legacy alias map (rediseño v2) */
.strip-bar { background: var(--navy); color: #cbd5e1; font-size: .75rem; padding: 8px 0; border-bottom: 2px solid var(--copper); }
.strip-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; width: min(var(--max), 92vw); margin-inline: auto; }
.site-header, .fm-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 300; }
.header-inner, .fm-header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 14px 4vw; max-width: var(--max); margin-inline: auto; }
.nav-panel, .fm-nav { display: flex; justify-content: center; gap: 6px; }
.nav-panel a, .fm-nav a { font-size: .84rem; font-weight: 600; color: var(--slate); padding: 8px 16px; border-radius: var(--radius); }
.nav-panel a:hover, .nav-panel a.active, .fm-nav a:hover, .fm-nav a.active { color: var(--navy); background: var(--canvas); }
.nav-btn, .fm-nav-toggle { display: none; background: var(--navy); color: #fff; border: none; padding: 8px 14px; border-radius: var(--radius); cursor: pointer; font-weight: 700; }
.btn-lilac, .btn-choc { background: var(--copper); color: #fff; }
.btn-lilac:hover, .btn-choc:hover { background: #9a6129; color: #fff; }
.section { padding: 64px 0; }
.section-mist, .section-sand { background: var(--canvas); }
.section-paper, .section-cream { background: var(--white); }
.section-lilac-dark, .section-choc { background: var(--ink); color: #e2e8f0; }
.section-intro .label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--copper); }
.cat-hero { background: var(--navy); color: #fff; padding: 56px 4vw; text-align: center; border-bottom: 4px solid var(--copper); }
.cat-hero h1 { color: #fff; }
.cat-hero-overlay, .cat-hero-bg { display: none; }
.chips, .fm-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.chip, .fm-chip { padding: 7px 14px; font-size: .76rem; font-weight: 600; border: 1px solid var(--line); background: var(--white); border-radius: 999px; cursor: pointer; }
.chip.active, .chip:hover, .fm-chip.active, .fm-chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.cat-grid, .fm-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cat-card, .fm-cat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.site-footer, .fm-footer { background: var(--navy); color: #cbd5e1; padding: 48px 0 24px; }
.footer-grid-4, .fm-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-col, .fm-footer-col h4 { font-family: var(--font-display); color: #fff; }
.legal-strip, .fm-legal-strip { background: var(--navy-soft); color: #94a3b8; text-align: center; padding: 12px; font-size: .8rem; }
@media (max-width: 960px) {
  .nav-panel, .fm-nav { position: fixed; inset: 0; top: 108px; background: #fff; flex-direction: column; padding: 24px; transform: translateX(100%); transition: transform .3s; z-index: 250; }
  .nav-panel.open, .fm-nav.open { transform: translateX(0); }
  .nav-btn, .fm-nav-toggle { display: block; }
  .header-cta { display: none; }
  .cat-grid, .fm-cat-grid, .footer-grid-4, .fm-footer-grid { grid-template-columns: 1fr; }
}
