/* Trend Solutions — light brand system */
:root {
  --ink: #0f1a24;
  --ink-soft: #1a2b3a;
  --muted: #5a6b7a;
  --muted-soft: #7a8b9a;
  --teal: #0d9488;
  --teal-bright: #14b8a6;
  --teal-dim: rgba(13, 148, 136, 0.1);
  --navy: #0b3d5c;
  --sand: #e8eef2;
  --surface: #f7f9fb;
  --surface-2: #eef3f7;
  --white: #ffffff;
  --border: rgba(15, 26, 36, 0.1);
  --border-strong: rgba(15, 26, 36, 0.16);
  --radius: 6px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
  --shadow-soft: 0 18px 50px rgba(15, 26, 36, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 50% at 100% -10%, rgba(13, 148, 136, 0.08), transparent 50%),
    radial-gradient(ellipse 70% 40% at -10% 40%, rgba(11, 61, 92, 0.05), transparent 45%),
    var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--navy);
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, 720px);
}

/* Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(15, 26, 36, 0.04);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--ink);
}

.logo__mark {
  width: 2rem;
  height: 2rem;
}

.logo__word {
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ink);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  background: var(--teal);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav__cta:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle span:nth-child(1) {
  top: 0.85rem;
}
.nav-toggle span:nth-child(2) {
  top: 1.2rem;
}
.nav-toggle span:nth-child(3) {
  top: 1.55rem;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.35rem) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.35rem) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--teal-bright);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--ink-soft);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 4.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video,
.hero__media object,
.hero__media canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media img {
  animation: kenburns 28s ease-in-out infinite alternate;
  transform-origin: center center;
}

.hero__video,
.hero__media object {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(247, 249, 251, 0.55) 40%,
      rgba(255, 255, 255, 0.92) 100%
    ),
    radial-gradient(
      ellipse 80% 60% at 70% 30%,
      rgba(13, 148, 136, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 15% 80%,
      rgba(11, 61, 92, 0.12),
      transparent 50%
    );
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 38rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero__brand span {
  background: linear-gradient(120deg, var(--navy), var(--teal) 55%, var(--teal-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.hero__support {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero.is-ready .hero__brand,
.hero.is-ready .hero__headline,
.hero.is-ready .hero__support,
.hero.is-ready .btn-group {
  animation: riseIn 0.9s var(--ease) both;
}

.hero.is-ready .hero__headline {
  animation-delay: 0.12s;
}
.hero.is-ready .hero__support {
  animation-delay: 0.22s;
}
.hero.is-ready .btn-group {
  animation-delay: 0.32s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page hero */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(13, 148, 136, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(11, 61, 92, 0.08), transparent 45%);
  pointer-events: none;
}

.page-hero--media {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  padding-bottom: 3rem;
}

.page-hero--media .page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--media .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--media .page-hero__bg object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.page-hero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 36, 0.25), rgba(15, 26, 36, 0.72));
}

.page-hero--media .container {
  position: relative;
  z-index: 1;
}

.page-hero--media .page-hero__title,
.page-hero--media .page-hero__lead {
  color: var(--white);
}

.page-hero--media .page-hero__lead {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.page-hero__lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 36rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.section--tint {
  background:
    linear-gradient(160deg, var(--surface-2) 0%, #e4eef2 100%);
}

.section--media {
  padding: 0;
  min-height: 52vh;
  display: grid;
  place-items: end stretch;
  position: relative;
  overflow: hidden;
}

.section--media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--media .section-ambient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

.section--media .media-caption {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
  background: linear-gradient(transparent, rgba(15, 26, 36, 0.82));
  color: var(--white);
}

.section--media .media-caption .section__eyebrow {
  color: var(--teal-bright);
}

.section--media .media-caption .section__title {
  color: var(--white);
  max-width: 24ch;
}

.section--media .media-caption .section__lead {
  color: rgba(255, 255, 255, 0.8);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 22ch;
}

.section__lead {
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.25s var(--ease);
}

.service-row:hover {
  background: var(--teal-dim);
}

.service-row__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
  padding-top: 0.15rem;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.service-row p {
  color: var(--muted);
  max-width: 40rem;
}

a.service-row {
  color: inherit;
  text-decoration: none;
}

a.service-row:hover h3 {
  color: var(--teal);
}

.service-detail {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .service-detail {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .service-detail--reverse {
    direction: rtl;
  }

  .service-detail--reverse > * {
    direction: ltr;
  }
}

.service-detail__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
  box-shadow: var(--shadow-soft);
}

.service-detail__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-detail__copy .section__lead {
  margin-bottom: 1rem;
}

.service-detail__list {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--muted);
}

.service-detail__list li {
  margin-bottom: 0.4rem;
}

.process {
  display: grid;
  gap: 2.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.75rem 0 0.5rem;
}

.process__step p {
  color: var(--muted);
  font-size: 0.98rem;
}

.process__index {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .split--reverse {
    direction: rtl;
  }

  .split--reverse > * {
    direction: ltr;
  }
}

.split__visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.split__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.split__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), transparent 50%);
  pointer-events: none;
}

.cta-band {
  padding: 5rem 0;
  background:
    linear-gradient(120deg, var(--navy), #0f5575),
    radial-gradient(ellipse at 80% 50%, rgba(13, 148, 136, 0.35), transparent 45%);
  background-blend-mode: normal;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
  max-width: 32rem;
  margin-inline: auto;
}

.cta-band .btn-group {
  justify-content: center;
}

.cta-band .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-band .btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Legal / prose */
.prose {
  padding: 3rem 0 5rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--ink);
  margin: 1.5rem 0 0.6rem;
}

.prose p,
.prose li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-meta {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-meta strong {
  color: var(--ink);
}

/* Contact (details only) */
.contact-panel {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-panel {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-details {
  display: grid;
  gap: 1.75rem;
}

.contact-details h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
  color: var(--muted);
}

.contact-details a {
  color: var(--teal);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--navy);
}

.contact-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.footer__note {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.footer__col a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__col a:hover {
  color: var(--teal);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted-soft);
  font-size: 0.88rem;
}

.footer__operator {
  color: var(--muted-soft);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 420px;
  margin-inline: auto;
  padding: 1.35rem 1.4rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(15, 26, 36, 0.16);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.cookie-banner.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 640px) {
  .cookie-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    margin-inline: 0;
  }
}

.cookie-banner h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.cookie-banner > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner__actions .btn {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.cookie-prefs {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-prefs.is-open {
  display: grid;
  gap: 0.85rem;
}

.cookie-pref {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-pref input {
  margin-top: 0.2rem;
  accent-color: var(--teal);
}

.cookie-pref strong {
  color: var(--ink);
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__cta {
    justify-content: center;
    margin-top: 0.75rem;
    border-bottom: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media img,
  .hero.is-ready .hero__brand,
  .hero.is-ready .hero__headline,
  .hero.is-ready .hero__support,
  .hero.is-ready .btn-group,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
