/* ════════════════════════════════════════════════════════════
   VABEL STUDIO · Editorial design system
   ──────────────────────────────────────────────────────────
   Vanilla CSS · matches stack of current site (no framework)
   Designed for HTML/CSS/JS handoff to production
   ════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --paper:        #faf7f1;          /* main bg — warm cream */
  --surface:      #f4ede0;          /* alt bg — deeper cream */
  --paper-soft:   #fdfbf6;          /* hairline lighter */
  --line:         #e6dfd1;          /* dividers */
  --line-soft:    #ece6d7;

  /* Ink */
  --ink:          #1a1612;          /* warm black */
  --ink-soft:     #4a4337;
  --ink-mute:     #8a8276;

  /* Accent gold (from cotización PDF) */
  --gold:         #b48a3e;
  --gold-deep:    #8c651f;
  --gold-soft:    #d4b478;
  --gold-glow:    rgba(180, 138, 62, 0.12);

  /* Dark surface (for cotización + black hero moments) */
  --noir:         #18130e;
  --noir-elev:    #1f1a13;
  --cream-on-noir:#f3ead4;

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --font-sans:    "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-script:  "Italianno", "Pinyon Script", cursive;

  /* Layout */
  --maxw:         1320px;
  --pad:          clamp(22px, 5vw, 80px);
  --ease:         cubic-bezier(0.2, 0.7, 0.15, 1);
  --ease-soft:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);   /* entra rápido, asienta largo = editorial */
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "ss01";
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul { list-style: none; }
em { font-style: italic; }

::selection { background: var(--gold-glow); color: var(--ink); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--line); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.h-section em { font-style: italic; font-weight: 300; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.no-line { gap: 0; }
.eyebrow.no-line::before { display: none; }
.eyebrow.gold { color: var(--gold-deep); }
.eyebrow.light { color: rgba(243, 234, 212, 0.85); }
.eyebrow.light::before { background: var(--gold); }

.lead {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 58ch;
  text-wrap: pretty;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), gap .35s var(--ease);
  white-space: nowrap;
}
.btn .arrow { font-style: normal; font-size: 14px; line-height: 1; transition: transform .35s var(--ease); }
.btn:hover { gap: 18px; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-ink   { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ink:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn-ghost { color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-light { color: var(--cream-on-noir); border-color: rgba(243, 234, 212, 0.4); }
.btn-light:hover { background: var(--cream-on-noir); color: var(--noir); border-color: var(--cream-on-noir); }

.btn-gold  { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.link-arrow .arrow { font-style: normal; }
.link-arrow:hover { gap: 16px; color: var(--gold-deep); border-color: var(--gold-deep); }

/* ─── REVEAL ANIMATION ──────────────────────────────────── */
/* Estados de revelado GATEADOS por `.js-reveal` (lo agrega main.js en <html>).
   Sin JS → el contenido queda visible: un fallo de script nunca deja blancos. */
.reveal {
  transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
/* Variante imagen: revelado fotográfico (escala que asienta, sin desplazamiento) */
.reveal--img {
  transition: opacity 1.2s var(--ease-expo), transform 1.2s var(--ease-expo);
}
.js-reveal .reveal--img {
  transform: scale(1.05);
}
.reveal--img.is-in {
  transform: scale(1);
}
/* Variante cortina: la foto se descubre de abajo hacia arriba (firma editorial).
   Usa clip-path (no transform), así compone con el zoom de la imagen interior. */
.reveal--wipe {
  transition: clip-path 1.7s var(--ease-expo);
}
.js-reveal .reveal--wipe {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
}
.reveal--wipe.is-in {
  clip-path: inset(0 0 0 0);
}
.reveal--wipe img {
  transition: transform 2s var(--ease-expo), filter .6s var(--ease);
}
.js-reveal .reveal--wipe img {
  transform: scale(1.06);
}
.reveal--wipe.is-in img {
  transform: scale(1);
}
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* ═════════════════════════════════════════════════════════
   HEADER · sticky top bar with logo center + menu hamburger
   ═════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 22px var(--pad);
  background: transparent;
  transition: background .4s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  padding: 14px var(--pad);
  border-bottom-color: var(--line);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.menu-trigger {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.menu-trigger__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.menu-trigger__bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.menu-trigger__bars span:nth-child(1) { width: 22px; }
.menu-trigger__bars span:nth-child(2) { width: 16px; }
.menu-trigger:hover .menu-trigger__bars span:nth-child(2) { width: 22px; }
.menu-trigger__label { opacity: 0.85; }

.site-header__brand {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__brand img {
  height: 46px;
  width: auto;
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .site-header__brand img { height: 36px; }

.site-header__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-toggle {
  display: none; /* Oculto hasta poblar diccionario ES/EN. JS i18n sigue activo en localStorage. */
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
}
.lang-toggle button {
  padding: 4px 8px;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.lang-toggle button[data-active="true"] { color: var(--ink); border-color: var(--gold); }
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle .sep { color: var(--ink-mute); }

.header-cta-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all .3s var(--ease);
}
.header-cta-btn:hover { background: var(--ink); color: var(--paper); }

/* Dark header mode (over dark hero) */
.site-header[data-mode="dark"]:not(.is-scrolled) .menu-trigger,
.site-header[data-mode="dark"]:not(.is-scrolled) .lang-toggle,
.site-header[data-mode="dark"]:not(.is-scrolled) .lang-toggle button { color: var(--cream-on-noir); }
.site-header[data-mode="dark"]:not(.is-scrolled) .lang-toggle button[data-active="true"] { color: #fff; }
.site-header[data-mode="dark"]:not(.is-scrolled) .header-cta-btn {
  color: var(--cream-on-noir);
  border-color: rgba(243, 234, 212, 0.4);
}
.site-header[data-mode="dark"]:not(.is-scrolled) .header-cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--noir);
}
.site-header[data-mode="dark"]:not(.is-scrolled) .site-header__brand img.logo-black { display: none; }
.site-header[data-mode="dark"]:not(.is-scrolled) .site-header__brand img.logo-white { display: block; }
.site-header__brand img.logo-white { display: none; }
.site-header.is-scrolled .site-header__brand img.logo-black { display: block; }
.site-header.is-scrolled .site-header__brand img.logo-white { display: none; }

/* ═════════════════════════════════════════════════════════
   FULL-SCREEN MENU
   ═════════════════════════════════════════════════════════ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.menu-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}
.menu-overlay__left {
  padding: 90px var(--pad) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.menu-overlay__close {
  position: absolute;
  top: 28px;
  left: var(--pad);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0;
}
.menu-overlay__close::before,
.menu-overlay__close::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}
.menu-overlay__close::before { transform: rotate(45deg); }
.menu-overlay__close::after  { transform: rotate(-45deg); }
.menu-overlay__close-label { padding-left: 30px; }

.menu-nav {
  margin-top: auto;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 20px;
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.menu-nav a:hover { gap: 28px; color: var(--gold-deep); }
.menu-nav a em { font-style: italic; font-weight: 300; }
.menu-nav a .num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  align-self: center;
}

.menu-overlay__foot {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.menu-overlay__contact p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.menu-overlay__contact strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.menu-overlay__social {
  display: flex;
  gap: 12px;
}
.menu-overlay__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.menu-overlay__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-overlay__right {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.menu-overlay__art {
  position: absolute;
  inset: 0;
}
.menu-overlay__art img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.menu-overlay__art img.is-on { opacity: 1; }
.menu-overlay__art-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: var(--cream-on-noir);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

@media (max-width: 880px) {
  .menu-overlay { grid-template-columns: 1fr; }
  .menu-overlay__right { display: none; }
}

/* ═════════════════════════════════════════════════════════
   PAGE HERO (used on inner pages, NOT home)
   ═════════════════════════════════════════════════════════ */
.page-hero {
  padding: 180px var(--pad) 70px;
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1.6fr;
  gap: 60px;
  align-items: end;
}
.page-hero__breadcrumb {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.page-hero__breadcrumb a { color: var(--ink); transition: color .25s var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--gold-deep); }
.page-hero__breadcrumb .sep { color: var(--ink-mute); margin: 0 8px; }
.page-hero__rule {
  background: var(--line);
  align-self: stretch;
}
.page-hero__lead { margin-top: 24px; }

@media (max-width: 880px) {
  .page-hero { padding: 130px var(--pad) 48px; }
  .page-hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .page-hero__rule { display: none; }
}

/* ═════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--noir);
  color: var(--cream-on-noir);
  padding: 100px var(--pad) 40px;
}
.site-footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(243, 234, 212, 0.12);
}
.site-footer__brand img {
  height: 64px;
  margin-bottom: 24px;
}
.site-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.site-footer__signature {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6a6253;
}
.site-footer__col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col ul a, .site-footer__col ul li {
  font-size: 14px;
  color: var(--cream-on-noir);
  opacity: 0.75;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.site-footer__col ul a:hover { opacity: 1; color: var(--gold); }
.site-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(243, 234, 212, 0.2);
  color: var(--cream-on-noir);
  transition: all .3s var(--ease);
}
.site-footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.site-footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6a6253;
}
.site-footer__bottom .signature {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}

@media (max-width: 880px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═════════════════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 16px;
  background: #25d366;
  color: #052e16;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.float-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45); }
.float-wa svg { display: block; }

@media (max-width: 600px) {
  .float-wa span { display: none; }
  .float-wa { padding: 14px; bottom: 18px; right: 18px; }
}

/* ═════════════════════════════════════════════════════════
   LIGHTBOX (shared, gallery pages)
   ═════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 12, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90%;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__btn {
  position: absolute;
  background: none;
  color: var(--cream-on-noir);
  font-size: 22px;
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 234, 212, 0.25);
  transition: all .3s var(--ease);
}
.lightbox__btn:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__btn--close { top: 24px; right: 24px; }
.lightbox__btn--prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--cream-on-noir);
}

/* ===================================================================
   TEMP · Paquetes ocultos (precios sin actualizar)
   Para reactivar: borrar este bloque completo y quitar el redirect
   en paquetes.html. No requiere otros cambios.
   =================================================================== */
/* Menú principal: ocultar item Paquetes y renumerar 01..04 sin hueco */
.menu-nav { counter-reset: navnum; }
.menu-nav > li:has(a[href^="paquetes"]) { display: none !important; }
.menu-nav > li:not(:has(a[href^="paquetes"])) { counter-increment: navnum; }
.menu-nav > li:not(:has(a[href^="paquetes"])) .num { visibility: hidden; position: relative; }
.menu-nav > li:not(:has(a[href^="paquetes"])) .num::after {
  content: counter(navnum, decimal-leading-zero);
  visibility: visible;
  position: absolute;
  left: 0;
  top: 0;
}
/* Footer: ocultar enlace Paquetes */
.site-footer li:has(a[href^="paquetes"]) { display: none !important; }
/* CTAs y botones que apuntan a paquetes (hero, galerías, about) */
a[href^="paquetes"].btn { display: none !important; }
/* Sección de paquetes en el home (incluye precios) */
.pack-teaser { display: none !important; }
/* ============================ FIN TEMP ============================ */

/* ─── Accesibilidad: respeta "reduce motion" ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal--img { opacity: 1 !important; transform: none !important; }
  .reveal--wipe { clip-path: none !important; }
  .reveal--wipe img { transform: none !important; }
  .line-in { transform: none !important; }
  [data-parallax], .home-hero__media-img { translate: none !important; }
}
