/* ==========================================================================
   IMPERNAVA — Landing page (pt-PT)
   Editorial serif + sans, mobile-first, WCAG AA, reduced-motion aware.
   ========================================================================== */

/* ------------------------------ Tokens ---------------------------------- */
:root {
  /* Paleta da marca */
  --ink: #111111;
  --paper: #ffffff;
  --grey: #6b6b6b;
  --brand: #c77b2e;        /* ocre / laranja tostado */
  --brand-deep: #b5651d;
  --brand-ink: #8a4d10;    /* AA para texto pequeno sobre fundo claro */
  --brand-hover: #d28a3f;  /* hover de botões sólidos (mantém AA com tinta) */
  --paper-warm: #faf6ef;
  --line: #e7dfd2;
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted-on-dark: rgba(255, 255, 255, 0.78);

  /* Tipografia */
  --font-serif: "Fraunces", "Georgia", serif;
  --font-sans: "Space Grotesk", "Segoe UI", sans-serif;

  --size-hero: clamp(2.55rem, 1.4rem + 8vw, 6.5rem);
  --size-h2: clamp(1.9rem, 1.2rem + 3.6vw, 3.4rem);
  --size-lead: clamp(1.02rem, 0.98rem + 0.5vw, 1.22rem);
  --size-stat: clamp(3rem, 2rem + 5vw, 5rem);

  /* Ritmo */
  --space-section: clamp(4.5rem, 3rem + 7vw, 8.5rem);
  --radius: 18px;
  --container: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

html,
body { overflow-x: clip; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5rem;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
}

img,
svg { display: block; max-width: 100%; }

h1, h2, h3, p, dl, dd, dt, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: var(--brand-ink); text-underline-offset: 0.2em; }
a:hover { color: var(--brand-deep); }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}
.contact :focus-visible,
.site-footer :focus-visible { outline-color: var(--brand-hover); }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

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

.icon { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-wa { stroke-width: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7em 1.1em;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-250%);
  transition: transform 0.25s ease;
}
.skip-link:focus-visible { transform: translateY(0); }

/* ------------------------- Textura de grão SVG -------------------------- */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------- Tipografia base ---------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-ink);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--brand);
}
.eyebrow-light { color: var(--brand-hover); }

.section-title,
.contact-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--size-h2);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-title em,
.contact-title em,
.hero-title .line-accent {
  font-style: italic;
  color: var(--brand-ink);
}

.lead {
  font-size: var(--size-lead);
  color: var(--grey);
  max-width: 38em;
}

.section-head {
  display: grid;
  gap: 1rem;
  justify-items: start;
  margin-bottom: clamp(2.5rem, 1.5rem + 4vw, 4rem);
}

.section { padding-block: var(--space-section); }

/* ------------------------------ Botões ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-solid { background: var(--brand); color: var(--ink); }
.btn-solid:hover { background: var(--brand-hover); color: var(--ink); }

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

.btn-ghost { border-color: var(--line-dark); color: var(--paper); }
.btn-ghost:hover { border-color: var(--paper); color: var(--paper); }

.btn-lg { font-size: 1.05rem; padding: 1em 1.7em; }
.btn-sm { font-size: 0.88rem; padding: 0.62em 1.15em; }

@media (min-width: 48em) {
  .btn-block { width: auto; min-width: 24rem; }
}

/* ------------------------------ Cabeçalho ------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand-dot {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.18em;
  border-radius: 50%;
  background: var(--brand);
}

.header-actions { display: inline-flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.35rem;
}
.nav-toggle-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-toggle-bars { display: grid; gap: 4px; width: 20px; }
.nav-toggle-bars span {
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(17, 17, 17, 0.08);
  display: none;
}
.site-nav.is-open { display: block; }
.site-nav ul {
  display: grid;
  gap: 0.25rem;
  padding: 1rem var(--gutter) 1.5rem;
}
.site-nav a {
  display: block;
  padding: 0.7rem 0.25rem;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.site-nav li:last-child a { border-bottom: 0; }
.site-nav a:hover { color: var(--brand-ink); }

@media (max-width: 47.9375em) {
  .header-cta { display: none; }
}

@media (min-width: 48em) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: block !important;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .site-nav ul {
    display: flex;
    gap: clamp(1.1rem, 2.4vw, 2.1rem);
    padding: 0;
  }
  .site-nav a {
    padding: 0.35rem 0;
    font-size: 0.95rem;
    border: 0;
    color: var(--grey);
    position: relative;
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .site-nav a:hover { color: var(--ink); }
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after { transform: scaleX(1); }
}

/* -------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 2.5rem + 6vw, 7.5rem) clamp(3rem, 2rem + 5vw, 6rem);
  background:
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  isolation: isolate;
}

.hero-grid { display: grid; gap: clamp(3rem, 2rem + 5vw, 5rem); align-items: center; }

.hero-copy { display: grid; gap: 1.5rem; justify-items: start; }

.hero-title {
  font-family: var(--font-serif);
  font-size: var(--size-hero);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero-title .line { display: block; overflow: hidden; padding-block: 0.04em; }
.hero-title .line-inner { display: block; will-change: transform; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.microcopy {
  font-size: 0.85rem;
  color: var(--grey);
  letter-spacing: 0.01em;
}

.hero-figure {
  position: relative;
  max-width: 34rem;
  width: 100%;
  justify-self: center;
}
.roof-cut { width: 100%; height: auto; }

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.05rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero-chip small {
  display: block;
  font-weight: 400;
  font-size: 0.74rem;
  color: var(--grey);
}
.hero-chip .icon { color: var(--brand-ink); }
.hero-chip-a { top: 6%; left: -2%; }
.hero-chip-b { bottom: 10%; right: -2%; }

@media (min-width: 64em) {
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; }
  .hero-chip-a { left: 2%; }
  .hero-chip-b { right: 0; }
}

/* ------------------------------ Marquee --------------------------------- */
.marquee-band {
  background: var(--ink);
  color: var(--paper);
  padding-block: 1.1rem;
  overflow: hidden;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-list {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding-inline-end: clamp(1.4rem, 3vw, 2.6rem);
}
.marquee-list li {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 1rem + 2vw, 2.1rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee-list .sep { color: var(--brand); display: inline-flex; }

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; width: auto; }
  .marquee-list[aria-hidden="true"] { display: none; }
  .marquee-list { flex-wrap: wrap; row-gap: 0.35rem; }
}

/* ----------------------------- Serviços --------------------------------- */
.services-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.1rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.07);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: #f6e9d8;
  color: var(--brand-ink);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.card-text { color: var(--grey); font-size: 0.97rem; }

.card-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-ink);
  background: #f6e9d8;
  padding: 0.28em 0.8em;
  border-radius: 999px;
}

.card-featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.25rem, 1rem + 2vw, 2.5rem);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.card-featured:hover { border-color: var(--brand); transform: translateY(-4px); }
.card-featured .card-icon {
  background: rgba(199, 123, 46, 0.18);
  color: var(--brand-hover);
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
}
.card-featured .card-title { color: var(--paper); font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); }
.card-featured .card-text { color: var(--muted-on-dark); max-width: 44em; }
.card-featured .card-tag { color: var(--brand-hover); background: rgba(199, 123, 46, 0.16); }
.card-featured .card-body { display: grid; gap: 0.7rem; justify-items: start; }

@media (max-width: 39.9375em) {
  .card-featured { flex-direction: column; }
}

/* -------------------------- Porquê / Stats ------------------------------ */
.why { background: var(--paper-warm); }

.why-grid {
  display: grid;
  gap: clamp(3rem, 2rem + 4vw, 4.5rem);
  align-items: start;
}

.why-copy { display: grid; gap: 2.25rem; }

.reasons { display: grid; gap: 0.9rem; }
.reasons li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-weight: 500;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.reasons li:last-child { border-bottom: 0; }
.reasons .icon {
  color: var(--brand-ink);
  transform: translateY(0.2em);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.stat dd {
  order: -1;
  font-family: var(--font-serif);
  font-size: var(--size-stat);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.18em;
}
.stat dt {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}
.stat-suffix { color: var(--brand-ink); font-size: 0.55em; font-style: italic; }
.stat-prefix { margin-inline-end: 0.25em; }

@media (min-width: 64em) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------ Processo -------------------------------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  counter-increment: step;
}
.step { position: relative; padding-top: 1.4rem; }
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(to right, var(--brand), var(--brand) 33%, var(--line) 33%);
}
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brand-ink);
  margin-bottom: 0.5rem;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.step-text { color: var(--grey); font-size: 0.96rem; }

@media (min-width: 48em) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.4rem;
    right: calc(-1 * clamp(1rem, 2vw, 2rem));
    width: clamp(1rem, 2vw, 2rem);
    height: 1px;
    background: var(--line);
  }
}

/* ------------------------------ Contactos ------------------------------- */
.contact {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.grain-light { opacity: 0.08; z-index: -1; }

.contact-grid {
  position: relative;
  display: grid;
  gap: clamp(2.75rem, 2rem + 4vw, 4.5rem);
  align-items: center;
}
.contact-copy { display: grid; gap: 1.5rem; justify-items: start; }

.contact-title em { color: var(--brand-hover); }
.contact-lead { color: var(--muted-on-dark); }

.contact-actions { display: grid; gap: 0.85rem; width: 100%; }
.contact-actions .icon { color: inherit; }
.btn-solid .icon-wa { color: var(--ink); }

.qr-box {
  justify-self: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: clamp(1.5rem, 1.2rem + 2vw, 2.25rem);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  max-width: 20rem;
  width: 100%;
}
.qr-frame {
  width: 11rem;
  height: 11rem;
  display: grid;
  place-items: center;
  background: var(--paper);
}
.qr-frame img,
.qr-frame canvas { width: 11rem; height: 11rem; image-rendering: pixelated; }
.qr-caption {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.qr-caption .icon-wa { color: var(--brand-ink); }
.qr-box noscript a { font-size: 0.9rem; }

@media (min-width: 56em) {
  .contact-grid { grid-template-columns: 1.25fr 0.75fr; }
  .qr-box { justify-self: end; }
}

/* ------------------------------- Rodapé --------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--muted-on-dark);
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(3rem, 2rem + 4vw, 4.5rem);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.75rem;
}
.footer-brand { display: grid; gap: 1rem; justify-items: start; }
.brand-footer { color: var(--paper); font-size: 1.2rem; }
.brand-footer:hover { color: var(--paper); }
.footer-tagline { max-width: 24em; font-size: 0.95rem; }
.footer-zones {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.footer-zones .icon { color: var(--brand-hover); }

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
}
.footer-nav ul,
.footer-contact ul { display: grid; gap: 0.65rem; }
.footer-nav a,
.footer-contact a {
  color: var(--muted-on-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--brand-hover); }
.footer-specialist { font-size: 0.9rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.84rem;
}
.credit { color: rgba(255, 255, 255, 0.55); }
.credit a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: color 0.2s ease;
}
.credit a:hover { color: var(--brand-hover); }

@media (min-width: 48em) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* --------------------- Estados de animação (JS/GSAP) -------------------- */
/* Elementos só ficam ocultos quando: JS ativo + GSAP disponível + sem
   prefers-reduced-motion. A classe .anim-ok é gerida por JS.               */

.anim-ok [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}
.anim-ok [data-hero-fade] {
  opacity: 0;
  transform: translateY(18px);
}
.anim-ok .hero-title .line-inner { transform: translateY(112%); }
.anim-ok [data-hero-figure] {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
}
.anim-ok [data-hero-chip] {
  opacity: 0;
  transform: translateY(14px) scale(0.94);
}

/* Redução de movimento: tudo visível, sem transições nem marquee.        */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim-ok [data-reveal],
  .anim-ok [data-hero-fade],
  .anim-ok [data-hero-figure],
  .anim-ok [data-hero-chip] {
    opacity: 1;
    transform: none;
  }
  .anim-ok .hero-title .line-inner { transform: none; }
}

/* Fallback: se o GSAP não carregar, o main.js remove .anim-ok e tudo
   fica visível de imediato — nada fica escondido.                        */
.anim-off [data-reveal],
.anim-off [data-hero-fade],
.anim-off [data-hero-figure],
.anim-off [data-hero-chip] {
  opacity: 1 !important;
  transform: none !important;
}
.anim-off .hero-title .line-inner { transform: none !important; }
