/* ===================================================================
   ELOAH  ·  Velas aromáticas artesanales
   Colores, tipografías y medidas tomadas del diseño aprobado.
   =================================================================== */

/* ---------- Tipografías (archivos propios, sin llamadas externas) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-600-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jost-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/jost-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Variables ---------- */
:root {
  /* Colores de marca */
  --cream:        #FBF5EE;
  --card:         #FFFDFB;
  --blush:        #F6E4E9;
  --ink:          #2A211E;
  --body:         #5E504A;
  --muted:        #756259;
  --rose:         #B8446B;
  --rose-dark:    #9C3459;
  /* Rosa un punto más oscuro para texto sobre el rosado claro (contraste AA) */
  --rose-on-blush:#AF3E64;
  --rose-soft:    #E8C4D2;
  --photo-a:      #F4DEE5;
  --photo-b:      #EFD9CE;
  --photo-label:  #B08E93;

  /* Tipografías */
  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Avenir Next', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Medidas */
  --container: 1296px;
  --gutter: clamp(20px, 5vw, 72px);
  --r-card: 16px;
  --r-photo: 12px;
  --r-band: 24px;

  /* El diseño aprobado usa tarjetas planas sobre el crema, sin sombra. */
  --shadow-card: none;
  --shadow-btn:  0 10px 24px -12px rgba(184, 68, 107, .70);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: .002em;
}

/* Evita palabras sueltas al final de los títulos de sección.
   El h1 del hero se deja con el corte natural del diseño aprobado. */
h2, h3 { text-wrap: balance; }

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

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--rose);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 100;
  font-size: 15px;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.ico {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  display: block;
}

/* ---------- Elementos compartidos ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 15px;
}

.chip {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .115em;
  text-transform: uppercase;
  color: var(--rose);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  padding: 21px 34px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn--primary {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }
.btn--sm { font-size: 14px; padding: 15px 26px; letter-spacing: .09em; text-transform: uppercase; }
.btn--lg { font-size: 18px; padding: 23px 40px; }

.link-underline {
  color: var(--body);
  font-size: 17px;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rose-soft);
  transition: color .18s ease, border-color .18s ease;
}
.link-underline:hover { color: var(--rose); border-color: var(--rose); }

/* Marco de foto: muestra un degradado con etiqueta hasta que
   se añade una <img> dentro; entonces la etiqueta se oculta sola. */
.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(164deg, var(--photo-a) 0%, var(--photo-b) 100%);
  display: grid;
  place-items: center;
}
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo__label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--photo-label);
  text-align: left;
  line-height: 1.7;
  padding: 0 16px;
  max-width: 190px;
}
.photo:has(img) .photo__label { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: none;
}
.brand__mark { width: 55px; height: 55px; border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; gap: 3px; }
.brand__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: .95;
  color: var(--ink);
}
.brand__tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--body);
  line-height: 1.4;
  width: min-content;   /* parte "Velas / artesanales" en dos líneas */
}

.nav {
  display: flex;
  gap: 38px;
}
.nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--body);
  text-decoration: none;
  transition: color .18s ease;
}
.nav a:hover { color: var(--rose); }

.site-header__cta-short { display: none; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(24px, 3vw, 40px) clamp(56px, 8vw, 104px); }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.hero__copy { max-width: 640px; }

.hero__title {
  /* De 760px hacia arriba el titular crece con el ancho;
     abajo de 760px manda la regla del bloque móvil. */
  font-size: clamp(43px, 4.7vw, 68px);
  line-height: 1.08;
  margin-bottom: 30px;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--rose);
}

.hero__lead {
  font-size: 17.5px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 38px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero__social a {
  font-size: 15px;
  letter-spacing: .07em;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s ease;
}
.hero__social a:hover { color: var(--rose); }

.hero__media { position: relative; }
.photo--arch {
  aspect-ratio: 14 / 15;
  border-radius: 50% 50% var(--r-photo) var(--r-photo) /
                 46.7% 46.7% var(--r-photo) var(--r-photo);
}
.hero__badge {
  position: absolute;
  left: -2.5%;
  bottom: 7.4%;
  width: clamp(96px, 12vw, 158px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: drop-shadow(0 14px 28px rgba(90, 45, 60, .18));
}

/* ---------- Secciones ---------- */
.section { padding-block: clamp(56px, 8vw, 96px); }
/* Dos secciones seguidas no necesitan el doble de aire entre ellas. */
.section + .section { padding-top: 0; }

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 385px);
  gap: clamp(20px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 51px);
}
.section__title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.14;
}
.section__aside {
  font-size: 15.5px;
  line-height: 1.74;
  padding-top: 35px;
}

/* ---------- Tarjetas ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.card {
  background: var(--card);
  border-radius: var(--r-card);
  padding: 18px 16px 25px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.photo--card {
  aspect-ratio: 372 / 340;
  border-radius: var(--r-photo);
  margin-bottom: 18px;
}
.card .chip { margin: 0 8px 9px; }
.card__title { font-size: 31.5px; line-height: 1.2; margin: 0 8px 11px; }
.card__text {
  font-size: 14.5px;
  line-height: 1.72;
  margin: 0 8px 17px;
  flex: 1;
}
.card__cta {
  align-self: flex-start;
  margin-inline: 8px;
  font-size: 15.5px;
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease;
}
.card__cta:hover { border-color: var(--rose); }

/* ---------- Banda rosada ---------- */
.band {
  margin-top: clamp(40px, 5vw, 56px);
  background: var(--blush);
  border-radius: var(--r-band);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 33px);
  flex-wrap: wrap;
}
.band__mark { width: 96px; height: 96px; border-radius: 50%; flex: none; }
.band__copy { flex: 1 1 320px; }
.band__title { font-size: clamp(26px, 3.4vw, 33.5px); line-height: 1.2; margin-bottom: 8px; }
.band__text { font-size: 15.5px; }
.band .btn { flex: none; }

/* ---------- Aromas ---------- */
.aromas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.aroma-group {
  background: var(--card);
  border-radius: var(--r-card);
  padding: 32px 34px 34px;
  box-shadow: var(--shadow-card);
}
.aroma-group__title {
  font-size: 26px;
  line-height: 1.2;
  /* Reserva dos líneas para que la raya de las cuatro tarjetas quede pareja */
  min-height: 2.4em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--blush);
}
.aroma-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.aroma-list li {
  background: var(--blush);
  color: var(--rose-on-blush);
  font-size: 15px;
  line-height: 1;
  padding: 11px 18px;
  border-radius: 999px;
}
.aromas__note {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
  font-size: 17px;
}
.aromas__note .link-underline { padding-bottom: 2px; }

/* ---------- Galería ---------- */
.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filtro {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: var(--rose-on-blush);
  background: var(--blush);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.filtro:hover { border-color: color-mix(in srgb, var(--rose) 40%, transparent); }
.filtro.is-on {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

/* Mosaico con columnas CSS: respeta el alto natural de cada foto,
   así ninguna queda recortada. Sin JavaScript para el acomodo. */
.galeria__grid {
  columns: 4;
  column-gap: 20px;
}
/* `display: block` de .shot le gana a la regla [hidden] del navegador,
   así que el filtro necesita esta línea para esconder de verdad. */
.shot[hidden] { display: none; }

.shot {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: var(--photo-a);
  border-radius: var(--r-photo);
  overflow: hidden;
  line-height: 0;
  cursor: zoom-in;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.shot img {
  width: 100%;
  height: auto;
  border-radius: var(--r-photo);
  transition: transform .45s ease;
}
.shot:hover img,
.shot:focus-visible img { transform: scale(1.035); }

/* Visor de foto ampliada */
.lightbox {
  position: fixed;
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 880px);
  max-height: 92vh;
  overflow: visible;
}
.lightbox::backdrop {
  background: rgba(42, 33, 30, .84);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.lightbox img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
}
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(42, 33, 30, .55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease;
}
.lightbox__close:hover { background: var(--rose); }

/* ---------- Contacto ---------- */
.contacto {
  background: var(--blush);
  padding-block: clamp(56px, 8vw, 96px);
}
.contacto__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contacto__mark {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  margin-bottom: 26px;
  filter: drop-shadow(0 14px 28px rgba(90, 45, 60, .14));
}
.contacto__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.contacto__text {
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 34px;
}

.contacto__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  margin-top: 36px;
  font-size: 16px;
}
.contacto__list li { display: flex; }
.contacto__list a,
.contacto__list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rose-on-blush);
  text-decoration: none;
  transition: color .18s ease;
}
.contacto__list span { color: var(--body); }
.contacto__list a:hover { color: var(--rose-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blush);
  padding-bottom: 40px;
}
.site-footer__inner {
  border-top: 1px solid color-mix(in srgb, var(--rose) 16%, transparent);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 12px 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--rose); }

/* Firma de Sin Página */
.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border: 1px solid color-mix(in srgb, var(--rose) 22%, transparent);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, background-color .18s ease;
}
.sp-pill__lead  { color: var(--muted); }
.sp-pill__brand { color: var(--ink); font-weight: 500; }
.sp-pill__arrow {
  width: 12px;
  height: 12px;
  flex: none;
  color: var(--muted);
  transition: transform .18s ease;
}
.site-footer .sp-pill:hover {
  border-color: color-mix(in srgb, var(--rose) 45%, transparent);
  background: color-mix(in srgb, #fff 45%, transparent);
}
.sp-pill:hover .sp-pill__brand { color: var(--rose); }
.sp-pill:hover .sp-pill__arrow { transform: translate(1.5px, -1.5px); }

/* ---------- Botón flotante ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px -8px rgba(90, 45, 60, .5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.wa-float .ico { width: 28px; height: 28px; }
.wa-float.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .galeria__grid { columns: 3; }
  .nav { gap: 28px; }
}

/* El botón del encabezado pasa a su versión corta antes de que apriete la barra */
@media (max-width: 1000px) {
  .site-header__cta-long { display: none; }
  .site-header__cta-short { display: inline; }
}

/* Con cinco enlaces la barra aprieta en tablet: se compacta la marca
   y se acerca el menú para que todo siga en una sola línea. */
@media (max-width: 980px) {
  .site-header__inner { gap: 16px; padding-block: 18px; }
  .brand { gap: 11px; }
  .brand__mark { width: 44px; height: 44px; }
  .brand__name { font-size: 25px; }
  .brand__tag { display: none; }
  .nav { gap: 18px; }
  .nav a { font-size: 13px; letter-spacing: .1em; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { max-width: none; }
  .hero__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .section__head { grid-template-columns: 1fr; }
  .section__aside { padding-top: 0; }
  .band { flex-direction: column; text-align: center; }
  .band__copy { flex: none; }
  .band .btn { width: 100%; max-width: 420px; }
}

/* Móvil: se sigue el diseño aprobado (sin menú, foto antes del botón) */
@media (max-width: 760px) {
  body { font-size: 15.5px; }

  .nav { display: none; }
  .site-header__cta-long { display: none; }
  .site-header__cta-short { display: inline; }
  .site-header__inner { padding-block: 16px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 21.5px; }
  .brand__tag { display: none; }
  .btn--sm { font-size: 11px; padding: 11px 14px; gap: 8px; letter-spacing: .08em; }

  .hero { padding-block: 28px 44px; }
  .hero__inner { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .hero__copy { display: contents; }
  .eyebrow { font-size: 11.5px; letter-spacing: .118em; margin-bottom: 16px; }
  .hero__title { font-size: clamp(34px, 11vw, 43px); margin-bottom: 20px; }
  .hero__lead { margin-bottom: 30px; font-size: 15.5px; }
  .hero__media { order: 3; margin-bottom: 30px; max-width: none; }
  .hero__actions { order: 4; margin-bottom: 0; gap: 20px; }
  .hero__actions .btn { width: 100%; }
  .hero__secondary { display: none; }
  .hero__social { display: none; }
  .hero__badge { display: none; }
  .photo--arch { aspect-ratio: 14 / 15; }

  .section { padding-block: 46px; }
  .section__title { font-size: 30px; }
  /* En el diseño aprobado para celular el texto lateral no aparece:
     la sección pasa del título directo a las tarjetas. */
  .estilos .section__aside { display: none; }
  .cards { grid-template-columns: 1fr; gap: 22px; }
  .aromas__grid { gap: 18px; }
  .filtros { gap: 8px; margin-bottom: 22px; }
  .filtro { font-size: 13.5px; padding: 9px 15px; }
  .galeria__grid { columns: 2; column-gap: 14px; }
  .shot { margin-bottom: 14px; }
  .lightbox__close { top: 8px; right: 8px; width: 38px; height: 38px; }
  .photo--card { aspect-ratio: 7 / 5; }
  .card { padding: 14px 14px 26px; }
  .photo--card { margin-bottom: 20px; }
  .card__title { font-size: 27px; }

  .band { padding: 34px 24px; }
  .band__mark { width: 84px; height: 84px; }

  .aroma-group { padding: 26px 24px 28px; }
  .aroma-group__title { min-height: 0; }

  .contacto { padding-block: 52px 48px; }
  .contacto__list { flex-direction: column; align-items: center; gap: 12px; }
  .contacto__inner .btn { width: 100%; }

  .site-footer__inner { justify-content: center; text-align: center; gap: 18px; }
  .sp-pill { font-size: 13px; padding: 9px 17px; gap: 8px; }

  .wa-float { display: flex; }
}

@media (max-width: 380px) {
  .brand__name { font-size: 21px; }
  .btn--sm { padding: 11px 16px; }
}

/* ---------- Preferencias del sistema ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .wa-float { display: none; }
  body { background: #fff; }
}
