/* =========================================================
   SBS — Schimensky Building Services
   Sistema corporativo: navy institucional + cyan de marca
   Tipografía: Noto Sans JP (400 / 500 / 700 / 900)
   Firma: mosaico de módulos del logo SBS
   ========================================================= */

:root {
  --navy-deep: #102a43;
  --navy: #1a4169;
  --cyan: #00b5e2;
  --cyan-dark: #007fa3;
  --steel: #9aa7b1;
  --ink: #1f2933;
  --muted: #5d6f7f;
  --line: #d9e2ea;
  --paper: #f4f7fa;
  --white: #ffffff;
  --gutter: max(24px, calc((100vw - 1180px) / 2));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, dl, dd, dt { margin: 0; }

h1 {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--white);
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--navy);
}

h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

/* ---------- voz utilitaria: micro-etiquetas ---------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* marcador: eco en miniatura del mosaico del logo */
.eyebrow::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(var(--cyan), var(--cyan)) 0 0 / 6px 6px no-repeat,
    linear-gradient(var(--steel), var(--steel)) 8px 0 / 6px 6px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 8px 8px / 6px 6px no-repeat;
}

.eyebrow.light { color: var(--cyan); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  padding: 7px var(--gutter);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .85);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .02em;
}

.topbar span { margin-right: auto; color: rgba(255, 255, 255, .6); }

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.topbar svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.topbar a:hover { color: var(--cyan); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 62px;
  padding: 0 var(--gutter);
}

.brand img {
  width: 52px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 700;
}

.menu a:not(.btn) {
  position: relative;
  padding: 6px 0;
}

.menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.menu a:not(.btn):hover::after,
.menu a:not(.btn):focus-visible::after,
.menu a.is-active::after { transform: scaleX(1); }

.menu a.is-active { color: var(--cyan-dark); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

/* ---------- botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 2px;
  background: var(--cyan);
  color: var(--navy-deep);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.btn:hover { background: #33c6e9; }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.btn-small { min-height: 42px; padding: 0 18px; }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .45);
  color: var(--white);
}

.btn-ghost:hover { background: rgba(255, 255, 255, .12); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: var(--navy-deep); color: var(--white); }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  background: var(--navy-deep);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  padding: 96px 64px 0 var(--gutter);
}

.hero-content { max-width: 620px; }

.hero-lead {
  margin-top: 22px;
  max-width: 540px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.4vw, 18.5px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-facts dt {
  color: var(--cyan);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.hero-facts dd {
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 13.5px;
  font-weight: 500;
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: 560px;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scaleX(-1);
}

/* firma: costura de mosaico entre panel y fotografía */
.mosaic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -36px;
  height: 100%;
}

/* ---------- secciones ---------- */

.section { padding: 96px var(--gutter); }

.section-head {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17.5px;
}

/* ---------- directorio de torres ---------- */

.portfolio { background: var(--white); }

.directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 48px;
}

.directory-group h3 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.directory-group ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.directory-group li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.directory-group li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  background: var(--cyan);
}

/* ---------- servicios ---------- */

.services {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 30px 28px 34px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
  background: var(--white);
}

.service-index {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 10px;
  background: var(--paper);
  color: var(--cyan-dark);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; }

.service-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--navy);
  color: var(--white);
}

.service-note strong { font-size: 19px; font-weight: 900; }
.service-note p { flex: 1 1 240px; color: rgba(255, 255, 255, .72); font-size: 15px; }

/* ---------- por qué elegirnos ---------- */

.why { background: var(--white); }

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.why-copy > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 32px;
  margin-top: 38px;
}

.why-pillars strong {
  display: block;
  padding-top: 12px;
  border-top: 2px solid var(--cyan);
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.why-pillars span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.checklist {
  padding: 34px 34px 26px;
  background: var(--navy-deep);
  color: var(--white);
}

.checklist-title {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.checklist span {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 500;
}

.checklist span:last-child { border-bottom: 0; }

.checklist span::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  transform: translateY(-1px);
}

/* ---------- nosotros ---------- */

.about {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
}

.about-media {
  margin: 0;
  border-left: 6px solid var(--cyan);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.about-copy p { color: var(--muted); }
.about-copy p + p { margin-top: 14px; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy strong { color: var(--navy); }

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.values span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.values svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--cyan-dark);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.mission-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.mission-card h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cyan);
  display: inline-block;
}

.mission-card p { color: var(--muted); font-size: 15px; }

.staff-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.staff-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
}

/* ---------- FAQ ---------- */

.faq { background: var(--white); }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.faq-intro { position: sticky; top: 140px; }
.faq-intro .btn-navy { margin-top: 28px; }

.faq-list { display: grid; gap: 10px; }

.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .3s ease;
}

.faq-item.is-open { border-color: var(--navy); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 62px;
  padding: 16px 20px;
  border: 0;
  background: none;
  color: var(--navy);
  font: inherit;
  font-size: 15.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-q:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}

.faq-icon {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
  background: var(--cyan-dark);
  transition: transform .35s ease;
}

.faq-icon::after { transform: rotate(90deg); }

.faq-item.is-open .faq-icon::after { transform: rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.4, 0, .2, 1);
}

.faq-a > div { overflow: hidden; }

.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

.faq-a p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 46vw, 700px);
  padding: 104px var(--gutter);
  background:
    linear-gradient(90deg, rgba(16, 42, 67, .97) 0%, rgba(16, 42, 67, .92) 55%, rgba(16, 42, 67, .45) 100%),
    url("imagenes-sbs/cta-banner-sbs.jpg") right top / cover;
  color: var(--white);
}

.cta h2 { color: var(--white); }

.cta-content { max-width: 700px; }

.cta-content > p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 17.5px;
}

/* ---------- contacto ---------- */

.contact { background: var(--navy-deep); }

.contact h2 { color: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 72px;
  align-items: start;
}

.contact-lead {
  margin-top: 16px;
  max-width: 480px;
  color: rgba(255, 255, 255, .75);
  font-size: 17.5px;
}

.btn-wa {
  gap: 10px;
  margin-top: 28px;
  background: #25d366;
  color: #073b1c;
}

.btn-wa:hover { background: #3ddf78; }

.btn-wa svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.contact-microcopy {
  margin-top: 12px;
  color: rgba(255, 255, 255, .55);
  font-size: 13.5px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 38px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-list li > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--cyan);
}

.contact-list li > div { display: grid; gap: 2px; }

.contact-list strong {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a { color: rgba(255, 255, 255, .85); font-size: 15.5px; }
.contact-list a:hover { color: var(--cyan); }

.contact-form {
  display: grid;
  gap: 15px;
  padding: 34px;
  border-top: 4px solid var(--cyan);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  padding: 6px 12px;
  border-radius: 2px;
  background: var(--paper);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .25);
}

.contact-form h3 {
  margin: 2px 0 0;
  font-size: 24px;
  font-weight: 900;
}

.form-sub {
  margin: -8px 0 4px;
  color: var(--muted);
  font-size: 14.5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 0;
  border-color: var(--cyan);
  background: var(--white);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.form-note svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: var(--cyan-dark);
}

/* ---------- footer ---------- */

.footer {
  padding: 64px var(--gutter) 30px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .75);
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr .7fr .8fr;
  gap: 40px;
}

.footer img {
  width: 72px;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer p + p { margin-top: 10px; }

.footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .75);
}

.footer a:has(svg) {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer a svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.footer a:hover { color: var(--cyan); }

.copyright {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.copyright a { display: inline; color: rgba(255, 255, 255, .75); }

/* ---------- WhatsApp flotante ---------- */

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(16, 42, 67, .3);
}

.whatsapp img { width: 30px; height: 30px; }

/* ---------- reveal ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .faq-a,
  .faq-icon::before,
  .faq-icon::after,
  .faq-item { transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }

  .hero-panel { padding: 72px var(--gutter) 0; }

  .hero-media { min-height: 420px; }

  .mosaic {
    left: 0;
    right: 0;
    top: -28px;
    bottom: auto;
    width: 100%;
    height: 56px;
    transform: rotate(90deg);
    transform-origin: top left;
    display: none;
  }

  .directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-layout { grid-template-columns: 1fr; gap: 44px; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .mission-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-intro { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .staff-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .topbar span { display: none; }

  .topbar {
    justify-content: center;
    gap: 14px;
    font-size: 12px;
  }

  .topbar a { gap: 5px; }
  .topbar svg { width: 13px; height: 13px; }

  .menu-toggle { display: block; }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px var(--gutter) 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(16, 42, 67, .12);
  }

  .menu.is-open { display: flex; }
  .menu a:not(.btn) { padding: 10px 0; }
  .menu a:not(.btn)::after { display: none; }
  .menu .btn { margin-top: 10px; }

  .hero-panel { padding-top: 56px; }
  .hero-facts { grid-template-columns: 1fr; gap: 18px; padding-bottom: 34px; }
  .hero-actions .btn { flex: 1 1 100%; }

  .section { padding: 68px var(--gutter); }

  .cta {
    padding: 76px var(--gutter);
    background:
      linear-gradient(rgba(16, 42, 67, .95), rgba(16, 42, 67, .95)),
      url("imagenes-sbs/cta-banner-sbs.jpg") right center / cover;
  }

  .directory { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .checklist { padding: 26px 22px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .btn-wa { width: 100%; }
  .staff-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Formulario: honeypot antispam y mensajes de estado */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 10px 0 0;
  font-size: 0.92rem;
  min-height: 1.3em;
}

.form-status.is-ok { color: #1a7f4e; font-weight: 700; }
.form-status.is-error { color: #c0392b; font-weight: 700; }

/* Páginas legales (privacy.html / terms.html) */
.menu.is-static { display: flex; }

.legal {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}

.legal h1 {
  color: var(--navy-deep);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 6px 0 4px;
}

.legal-updated {
  color: var(--cyan-dark);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.legal h2 {
  color: var(--navy);
  font-size: 1.15rem;
  margin: 30px 0 8px;
}

.legal p {
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal a {
  color: var(--cyan-dark);
  font-weight: 700;
}

@media (max-width: 780px) {
  .menu.is-static {
    position: static;
    flex-direction: row;
    padding: 0;
    background: none;
    border-bottom: 0;
    box-shadow: none;
  }
}
