/* ==========================================================================
   MAZGRA Capital, S.L. — hoja de estilo única
   Sin dependencias externas. Fuentes autoalojadas en assets/fonts/.
   Todo recurso gráfico es SVG propio: inline en el HTML (motivo del hero)
   o data URI en esta hoja (eco del pie y grano). Cero peticiones de red.

   Paleta   fondo #FBFAF8 · banda #F3F1ED · tinta #1B1B1B
            tinta suave #55534F · acento #1F3D5C · plinto #131A21
   ========================================================================== */

/* --- 1. Tipografía autoalojada: Source Serif 4 (SIL OFL) ----------------- */

/* Cortes de texto: cuerpo, énfasis y titulares pequeños. */

@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Cortes Display: sólo para tamaños grandes (hero, títulos de página,
   cabeceras de sección y el párrafo destacado). No existe Display Semibold,
   de modo que nada con la familia Display pide peso 600: se evita el
   falso negrita sintético. */

@font-face {
  font-family: "Source Serif 4 Display";
  src: url("../fonts/SourceSerif4Display-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4 Display";
  src: url("../fonts/SourceSerif4Display-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* --- 2. Variables -------------------------------------------------------- */

:root {
  /* Superficies y tinta */
  --bg: #FBFAF8;
  --bg-tint: #F3F1ED;
  --ink: #1B1B1B;
  --ink-soft: #55534F;
  --accent: #1F3D5C;

  /* Plinto oscuro del pie: azul tinta muy oscuro derivado del acento */
  --plinth: #131A21;
  --plinth-fg: #F5F2EC;
  --plinth-link: #C7D2DC;
  --plinth-soft: #9FB0C2;
  --plinth-rule: rgba(245, 242, 236, 0.16);

  /* Filetes: acento rebajado hacia el fondo */
  --rule: rgba(31, 61, 92, 0.16);
  --rule-strong: rgba(31, 61, 92, 0.34);

  /* Familias */
  --serif: "Source Serif 4", Georgia, "Times New Roman", Times, serif;
  --display: "Source Serif 4 Display", "Source Serif 4", Georgia, serif;

  /* Retícula */
  --shell: 74rem;    /* contenedor exterior */
  --aside: 15rem;    /* columna de cabecera de sección en escritorio */
  --measure: 63ch;   /* medida de la columna de prosa */
  --pad: clamp(1.25rem, 4.5vw, 3rem);
  --gutter: clamp(1.5rem, 4vw, 4.5rem);

  /* Etiquetas: versalitas simuladas (no hay corte SmallCaps autoalojado) */
  --label-size: 0.75rem;
  --label-track: 0.18em;

  /* Movimiento */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-grain: 20;

  /* Grano: feTurbulence desaturado, embebido como data URI */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)'/%3E%3C/svg%3E");

  /* Eco del motivo para el plinto: misma geometría, trazo claro */
  --motif-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' fill='none' stroke='%23F5F2EC'%3E%3Cg opacity='0.14'%3E%3Cpath d='M0 40h320M0 120h320M0 200h320M0 280h320'/%3E%3Cpath d='M40 0v320M120 0v320M200 0v320M280 0v320'/%3E%3C/g%3E%3Cg opacity='0.34'%3E%3Cpath d='M320 40A280 280 0 0 0 40 320'/%3E%3Cpath d='M320 160A160 160 0 0 0 160 320'/%3E%3Cpath d='M320 260A60 60 0 0 0 260 320'/%3E%3C/g%3E%3C/svg%3E");
}

/* --- 3. Reinicio mínimo -------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.0625rem, 0.35vw + 1rem, 1.1875rem);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
p,
dl,
dd,
ul,
ol,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

svg {
  display: block;
}

/* Grano: capa fija, inerte, sobre el conjunto. Rebaja la esterilidad plana
   sin tocar el contraste de forma apreciable (opacidad 0.035). */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  background-image: var(--grain);
  opacity: 0.035;
}

/* --- 4. Enlaces y microestados ------------------------------------------ */

a {
  color: var(--accent);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 220ms var(--ease),
              text-decoration-thickness 220ms var(--ease),
              color 220ms var(--ease);
}

a:hover {
  text-decoration-thickness: 2px;
}

/* `transform` no se aplica a elementos en línea: la opacidad sí, y da
   respuesta a la pulsación en cualquier enlace. */

a:active {
  opacity: 0.72;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Enlaces con subrayado que crece (nav, pie, volver): sin text-decoration,
   el filete es un fondo animable. */

.underlay {
  display: inline-block;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  padding-bottom: 0.18em;
  transition: background-size 260ms var(--ease), color 220ms var(--ease);
}

.underlay:hover,
.underlay:focus-visible {
  background-size: 100% 1px;
  text-decoration: none;
}

.underlay:active {
  transform: translateY(1px);
}

/* --- 5. Contenedores y retícula editorial ------------------------------- */

.shell {
  /* `width: 100%` es redundante en flujo normal, pero necesario cuando el
     contenedor es una retícula: los márgenes automáticos anulan el estirado
     y el bloque se ceñiría a su contenido. */
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.prose {
  max-width: var(--measure);
}

/* Prosa: sin viudas raras, medida controlada. */

.prose p {
  text-wrap: pretty;
}

.prose > p + p {
  margin-top: 1.35rem;
}

/* --- 6. Cabecera -------------------------------------------------------- */

.site-header {
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 2.5rem;
  padding-block: clamp(1.4rem, 2.4vw, 1.9rem);
}

.wordmark {
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.wordmark:hover,
.wordmark:focus-visible {
  color: var(--accent);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 1.6rem;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.9375rem;
  letter-spacing: 0.015em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

/* Página actual: filete persistente en el acento. */

.site-nav a[aria-current="page"] {
  color: var(--accent);
  background-size: 100% 1px;
}

/* --- 7. Portada --------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  /* Columna explícita: un track `auto` se ceñiría al max-content del titular
     y descolocaría el contenedor centrado. */
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  min-height: min(86dvh, 44rem);
  padding-block: clamp(3.5rem, 11vh, 7.5rem);
  border-bottom: 1px solid var(--rule);
}

/* Radial neutro casi imperceptible tras el titular. */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(115% 78% at 76% 16%,
              rgba(31, 61, 92, 0.055), rgba(31, 61, 92, 0) 62%);
}

/* Motivo: retícula de coordenadas y arcos concéntricos con origen en la
   esquina inferior derecha. Sangra fuera del marco y se recorta. */

.hero__motif {
  position: absolute;
  right: -7%;
  bottom: -9%;
  z-index: -1;
  width: min(40rem, 78%);
  aspect-ratio: 1;
  color: var(--accent);
  pointer-events: none;
}

.hero__motif svg,
.notfound__motif svg {
  width: 100%;
  height: 100%;
}

/* Filetes de un píxel real, sea cual sea la escala del dibujo. */

.hero__motif path,
.notfound__motif path {
  vector-effect: non-scaling-stroke;
}

.hero__title {
  /* La medida deja libre la esquina donde se dibuja el motivo. */
  max-width: min(100%, 23ch);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.375rem, 5.6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.hero-sub {
  position: relative;
  max-width: 44ch;
  margin-top: clamp(1.75rem, 3.4vw, 2.75rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.125rem, 1vw + 0.8rem, 1.5rem);
  line-height: 1.5;
  letter-spacing: -0.006em;
  text-wrap: pretty;
}

/* Filete corto que separa titular y subtítulo. */

.hero-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5rem;
  height: 1px;
  background-color: var(--accent);
  opacity: 0.5;
}

/* --- 8. Secciones: cabecera numerada a la izquierda, prosa a la derecha -- */

main {
  counter-reset: section;
}

.section {
  counter-increment: section;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 1.5rem;
}

.hero + .section {
  border-top: 0;
}

/* Óptica asimétrica: el aire inferior es algo mayor que el superior. */

.section__inner {
  display: grid;
  gap: var(--gutter);
  padding-block: clamp(3rem, 7vw, 5rem) clamp(3.75rem, 8.5vw, 6.25rem);
}

@media (min-width: 62rem) {
  .section__inner {
    grid-template-columns: minmax(0, var(--aside)) minmax(0, 1fr);
  }

  .section__aside {
    position: sticky;
    top: clamp(2rem, 6vh, 4rem);
    align-self: start;
  }
}

/* Numeración editorial 01–05 sobre filete fino. Es ornamento tipográfico:
   procede del CSS, no del documento. */

.section__aside::before {
  content: counter(section, decimal-leading-zero);
  display: block;
  width: 2.75rem;
  margin-bottom: clamp(0.85rem, 1.6vw, 1.15rem);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--rule-strong);
  color: var(--accent);
  font-size: var(--label-size);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--label-track);
  font-variant-numeric: tabular-nums;
}

.section__aside h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.375rem, 1.1vw + 1rem, 1.75rem);
  line-height: 1.16;
  letter-spacing: -0.014em;
  text-wrap: balance;
}

/* Banda tintada: una sola en toda la página, para el enunciado del propósito. */

.section--tint {
  background-color: var(--bg-tint);
}

/* --- 9. Párrafo destacado y series de términos -------------------------- */

.lead {
  max-width: min(100%, 32ch);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.375rem, 1.5vw + 0.9rem, 1.9375rem);
  line-height: 1.28;
  letter-spacing: -0.014em;
  text-wrap: balance;
}

/* Con la familia Display no hay Semibold: el énfasis se hace en cursiva. */

.lead strong {
  font-weight: 400;
  font-style: italic;
}

/* Especificidad suficiente para vencer a `.prose > p + p`. */

.prose > .lead + p {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

strong {
  font-weight: 600;
}

/* Términos y principios: el arranque en negrita pasa a ser título de bloque. */

.terms {
  margin-top: clamp(1.75rem, 3.2vw, 2.5rem);
}

.terms > p {
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule);
  text-wrap: pretty;
}

.terms > p + p {
  margin-top: 1.5rem;
}

.terms > p > strong:first-child,
.principle > p > strong:first-child {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.0625rem;
  letter-spacing: 0.015em;
}

/* --- 10. Approach: tres principios en columnas con numeración romana ----- */

.principles {
  counter-reset: principle;
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

@media (min-width: 72rem) {
  .principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.75rem, 2.6vw, 2.5rem);
  }
}

.principle {
  counter-increment: principle;
  padding-top: 1.15rem;
  border-top: 1px solid var(--rule-strong);
}

.principle::before {
  content: counter(principle, upper-roman);
  display: block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: var(--label-size);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--label-track);
}

.principle p {
  text-wrap: pretty;
}

/* --- 11. Areas of activity: rejilla 2×2 con filetes internos ------------- */

.activity {
  display: grid;
  border-top: 1px solid var(--rule-strong);
}

.activity__item {
  padding-block: clamp(1.4rem, 2.4vw, 1.9rem);
  border-bottom: 1px solid var(--rule);
}

.activity__item h3 {
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.4;
  letter-spacing: 0.015em;
}

.activity__item p {
  text-wrap: pretty;
}

@media (min-width: 48rem) {
  .activity {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity__item {
    padding-inline: clamp(1.25rem, 2.2vw, 1.85rem);
  }

  .activity__item:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--rule);
  }

  .activity__item:nth-child(even) {
    padding-right: 0;
  }
}

/* --- 12. Contacto ------------------------------------------------------- */

address {
  font-style: normal;
}

.contact-name {
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-email {
  margin-top: 0.85rem;
  font-size: clamp(1.125rem, 0.8vw + 0.95rem, 1.375rem);
  letter-spacing: -0.005em;
}

.prose > p + .contact-note,
.contact-note {
  max-width: 46ch;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 1rem;
  text-wrap: pretty;
}

/* Evita un hueco si el correo aún no ha sido inyectado por email.js */
a[data-email]:empty {
  display: none;
}

/* --- 13. Páginas interiores: legales y 404 ------------------------------ */

.page-head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(100% 90% at 88% 10%,
              rgba(31, 61, 92, 0.05), rgba(31, 61, 92, 0) 62%);
}

.page-head__inner {
  padding-block: clamp(2.75rem, 7vw, 4.75rem) clamp(2.25rem, 5.5vw, 3.5rem);
}

.page-title {
  max-width: 24ch;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* Etiqueta sobre el título, en el acento y sobre filete. Ornamento CSS. */

.page-head__inner::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  margin-bottom: clamp(1.1rem, 2.4vw, 1.6rem);
  background-color: var(--accent);
  opacity: 0.5;
}

/* Cuerpo legal: una columna, más compacto, con secciones numeradas. */

.legal {
  counter-reset: clause;
  max-width: var(--measure);
  padding-block: clamp(2.25rem, 5vw, 3.25rem) clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1.7;
}

.legal p {
  text-wrap: pretty;
}

.legal > p + p {
  margin-top: 1.35rem;
}

.legal h2 {
  counter-increment: clause;
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
  margin-bottom: 0.8rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.35;
  letter-spacing: 0.008em;
}

.legal h2::before {
  content: counter(clause, decimal-leading-zero);
  display: block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: var(--label-size);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--label-track);
  font-variant-numeric: tabular-nums;
}

/* Bloque identificativo: hoja de especificación a dos columnas. */

.identity {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--rule-strong);
  font-variant-numeric: tabular-nums;
}

.identity dt {
  padding-top: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.identity dd {
  margin: 0;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule);
  line-height: 1.5;
}

@media (min-width: 40rem) {
  .identity {
    display: grid;
    grid-template-columns: minmax(0, 13rem) minmax(0, 1fr);
    align-items: baseline;
  }

  .identity dt {
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--rule);
  }

  .identity dd {
    padding-block: 0.9rem;
  }
}

/* 404 --------------------------------------------------------------------- */

.notfound {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  min-height: min(72dvh, 36rem);
  padding-block: clamp(3.5rem, 10vh, 6.5rem);
}

.notfound::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(110% 80% at 78% 14%,
              rgba(31, 61, 92, 0.055), rgba(31, 61, 92, 0) 62%);
}

.notfound__motif {
  position: absolute;
  right: -8%;
  bottom: -12%;
  z-index: -1;
  width: min(32rem, 70%);
  aspect-ratio: 1;
  color: var(--accent);
  pointer-events: none;
}

.notfound__code {
  margin-bottom: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--accent);
  font-size: var(--label-size);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--label-track);
  font-variant-numeric: tabular-nums;
}

.notfound__body {
  max-width: 42ch;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  text-wrap: pretty;
}

.notfound__back {
  margin-top: clamp(1.75rem, 3.4vw, 2.5rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule);
  max-width: 42ch;
  font-size: 1.0625rem;
}

/* --- 14. Pie: única superficie oscura, al cierre ------------------------ */

.site-footer {
  position: relative;
  background-color: var(--plinth);
  background-image: var(--motif-light);
  background-repeat: no-repeat;
  background-position: right -3.5rem bottom -5rem;
  background-size: 22rem 22rem;
  color: var(--plinth-fg);
}

.site-footer__inner {
  padding-block: clamp(3rem, 7vw, 4.75rem) clamp(3.5rem, 8vw, 5.5rem);
}

/* Filete claro por encima de la línea legal. */

.site-footer__inner::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  margin-bottom: clamp(1.25rem, 2.6vw, 1.75rem);
  background-color: var(--plinth-soft);
}

.site-footer__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-mark {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer .sep {
  margin-inline: 0.85em;
  color: var(--plinth-soft);
}

.site-footer a {
  color: var(--plinth-link);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--plinth-fg);
}

.site-footer a:focus-visible {
  outline-color: var(--plinth-link);
}

/* --- 15. Movimiento: sólo CSS, sólo entrada de portada ------------------ */

@media (prefers-reduced-motion: no-preference) {
  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes fade {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .hero__title,
  .hero-sub,
  .page-title,
  .notfound__code {
    animation: rise 720ms var(--ease) both;
  }

  .hero-sub {
    animation-delay: 130ms;
  }

  .hero__motif,
  .notfound__motif {
    animation: fade 1400ms ease-out both;
    animation-delay: 180ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* --- 16. Pantallas estrechas -------------------------------------------- */

@media (max-width: 40rem) {
  :root {
    --measure: 100%;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .site-nav ul {
    gap: 0 1.15rem;
  }

  .hero {
    min-height: 0;
  }

  /* En columna estrecha el dibujo pasa por detrás del texto: se reduce y se
     rebaja para que no compita con la lectura. */
  .hero__motif {
    right: -16%;
    bottom: -8%;
    width: 78%;
    opacity: 0.45;
  }

  .notfound__motif {
    right: -18%;
    bottom: -10%;
    width: 78%;
    opacity: 0.5;
  }

  .site-footer {
    background-size: 15rem 15rem;
    background-position: right -3rem bottom -4rem;
  }
}

/* --- 17. Impresión ------------------------------------------------------ */

@media print {
  body {
    background: #FFFFFF;
    font-size: 11pt;
  }

  body::after,
  .hero__motif,
  .notfound__motif,
  .hero::before,
  .page-head::before,
  .notfound::before,
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .section--tint {
    background: none;
  }

  .site-footer {
    background: none;
    color: var(--ink);
  }

  .site-footer a,
  .site-footer .sep {
    color: var(--ink);
  }

  a {
    color: var(--ink);
    text-decoration: none;
  }
}
