/* ================================================================
   AL² — styles.css  |  Mobile-first premium design
   ================================================================ */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #ffffff;
  --off:     #f2f5f5;
  --cream:   #d8e8e5;
  --ink:     #111111;
  --ink-2:   #3a3530;
  --ink-3:   #5a7070;
  --gold:    #2a7a6e;
  --gold-lt: #5aabA0;
  --dark:    #141210;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Inter", -apple-system, system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: min(1160px, calc(100% - 48px));
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

/* ================================================================
   LOADER
   ================================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease-in), visibility 0.6s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo svg {
  width: 100px;
  animation: loader-pulse 1.4s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.loader__bar {
  width: 120px;
  height: 1px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.loader__fill {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loader-fill 1.6s var(--ease-out) forwards;
}

@keyframes loader-fill {
  to { left: 0; }
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 56px);
  gap: 32px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav__logo { display: flex; align-items: center; }
.nav__logo-svg {
  width: 72px;
  height: auto;
  color: var(--white);
  transition: color 0.4s ease;
}
.nav.is-scrolled .nav__logo-svg { color: var(--ink); }

.nav__links {
  display: none;
  gap: 36px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
}
.nav.is-scrolled .nav__links a { color: var(--ink-2); }
.nav__links a:hover { color: var(--white); }
.nav.is-scrolled .nav__links a:hover { color: var(--ink); }

.nav__cta {
  display: none;
  margin-left: auto;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
@media (min-width: 768px) { .nav__cta { display: block; } }

.nav.is-scrolled .nav__cta {
  border-color: var(--ink);
  color: var(--ink);
}
.nav__cta:hover {
  background: var(--white);
  color: var(--ink) !important;
  border-color: var(--white) !important;
}
.nav.is-scrolled .nav__cta:hover {
  background: var(--ink);
  color: var(--white) !important;
  border-color: var(--ink) !important;
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
}
@media (min-width: 768px) { .nav__burger { display: none; } }

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 99;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav__mobile .btn-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 2px;
  margin-top: 8px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: #2a7a6e;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: #1f5f55; transform: translateY(-1px); }

.btn-primary--dark {
  background: var(--dark);
  color: var(--white);
}
.btn-primary--dark:hover { background: #2a2420; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: hero-zoom 12s ease-out forwards;
}
@keyframes hero-zoom {
  to { transform: scale(1); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 6, 0.85) 0%,
    rgba(10, 8, 6, 0.4) 50%,
    rgba(10, 8, 6, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.hero__tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
}
.hero__tag.is-visible {
  animation: fade-up 0.7s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  overflow: hidden;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
}
.hero__line.is-visible {
  animation: line-up 0.9s var(--ease-out) forwards;
}
.hero__line:nth-child(2).is-visible {
  animation-delay: 0.12s;
}
.hero__line em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero__sub {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}
.hero__sub.is-visible {
  animation: fade-up 0.8s var(--ease-out) 0.35s forwards;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
}
.hero__btns.is-visible {
  animation: fade-up 0.8s var(--ease-out) 0.5s forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================================
   NUMBERS
   ================================================================ */
.numbers {
  background: var(--dark);
  padding: clamp(40px, 6vw, 70px) 0;
}

.numbers__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .numbers__inner { grid-template-columns: repeat(7, 1fr); }
}

.numbers__item {
  padding: 28px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.numbers__item.is-visible { opacity: 1; transform: none; }

.numbers__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.numbers__item p {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  text-transform: uppercase;
}

.numbers__divider {
  display: none;
}
@media (min-width: 768px) {
  .numbers__divider {
    display: block;
    width: 1px;
    background: rgba(255,255,255,0.08);
    margin: 20px 0;
  }
}

/* ================================================================
   SERVICES
   ================================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.services__header {
  width: var(--container);
  margin: 0 auto 60px;
}

.services__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.services__header h2 em {
  font-style: italic;
  color: var(--ink-3);
}

/* Service block */
.svc {
  width: var(--container);
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
}
@media (min-width: 900px) {
  .svc { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.svc[data-n]::before {
  content: attr(data-n);
  position: absolute;
  top: 40px;
  right: 0;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 900px) {
  .svc[data-n]::before { font-size: 120px; }
}

.svc__top h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.svc__top p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-3);
  font-weight: 300;
  max-width: 380px;
}

.svc__subs { display: flex; flex-direction: column; }

.svc__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  text-align: left;
  transition: color 0.25s;
  width: 100%;
}
.svc__btn:first-child { border-top: 1px solid var(--cream); }
.svc__btn:hover { color: var(--gold); }
.svc__btn[aria-expanded="true"] { color: var(--gold); }

.svc__ico {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
  width: 20px;
  text-align: center;
}
.svc__btn[aria-expanded="true"] .svc__ico { transform: rotate(45deg); }

.svc__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
.svc__panel p {
  padding: 16px 0 24px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-3);
  font-weight: 300;
  max-width: 420px;
}

.svc__divider {
  width: var(--container);
  margin: 0 auto;
  height: 1px;
  background: var(--cream);
}

/* ================================================================
   OFFICE SECTION
   ================================================================ */
.office {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 60vh;
}
@media (min-width: 768px) {
  .office { grid-template-columns: 1fr 1fr; min-height: 70vh; }
}

.office__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  background: #f2f5f5;
}
@media (min-width: 768px) { .office__img-wrap { min-height: auto; } }

.office__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
  object-position: center center;
  transform: none;
  will-change: transform;
}

.office__veil {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0.2);
}

.office__text {
  background: var(--dark);
  padding: clamp(48px, 7vw, 100px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.office__text .label { color: var(--gold-lt); }

.office__text blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: -0.01em;
}

.office__text cite {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

/* ================================================================
   WHY
   ================================================================ */
.why {
  background: var(--off);
  padding: var(--section-pad) 0;
}

.why__header {
  width: var(--container);
  margin: 0 auto 60px;
}

.why__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.why__header h2 em { font-style: italic; color: var(--ink-3); }

.why__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(4, 1fr); } }

.why__item {
  padding: 36px 32px 36px 0;
  border-top: 1px solid var(--cream);
}
@media (min-width: 640px) {
  .why__item:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--cream); }
}

.why__n {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 20px;
}

.why__item h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.why__item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-3);
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.contact__info h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.contact__info h2 em { font-style: italic; color: var(--ink-3); }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact__details a,
.contact__details span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 400;
  transition: color 0.2s;
}
.contact__details a:hover { color: var(--gold); }
.contact__details svg { flex-shrink: 0; color: var(--gold); }

.contact__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  color: var(--ink-3);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.contact__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(42,122,110,0.05);
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; gap: 16px; } }

.f-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.f-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cream);
  border-radius: 2px;
  background: var(--off);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.f-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7068' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.f-field textarea { resize: none; }

.btn-submit {
  position: relative;
  width: 100%;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  overflow: hidden;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--gold); }
.btn-submit__sending { display: none; }
.contact__form.is-sending .btn-submit__text { display: none; }
.contact__form.is-sending .btn-submit__sending { display: block; }
.btn-submit__arrow { transition: transform 0.25s; }
.btn-submit:hover .btn-submit__arrow { transform: translateX(4px); }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(42,122,110,0.08);
  border: 1px solid rgba(42,122,110,0.2);
  border-radius: 2px;
  font-size: 14px;
  color: var(--gold);
}
.form-success.is-visible { display: flex; }
.form-success svg { flex-shrink: 0; }

.form-legal {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: 16px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark);
  padding: 60px 0 32px;
}

.footer__top {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .footer__top { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer__brand { display: flex; align-items: center; gap: 20px; }
.footer__logo-svg { width: 64px; color: rgba(255,255,255,0.4); }
.footer__brand p {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.footer__nav a {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer__nav a:hover { color: rgba(255,255,255,0.7); }

.footer__bottom {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer__disc { font-size: 10px !important; }

/* ================================================================
   JS-FADE REVEAL
   ================================================================ */
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js-fade.is-visible { opacity: 1; transform: none; }

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes fade-up {
  to { opacity: 1; transform: none; }
}
@keyframes line-up {
  to { opacity: 1; transform: none; }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__img { animation: none; }
  .loader__logo svg { animation: none; opacity: 1; }
  .hero__scroll span { animation: none; }
  .loader__fill { animation: none; left: 0; }
}
