/* =======================================================
   CSS VARIABLES — retheme in under 30 minutes
   ======================================================= */
:root {
  /* Colour */
  --clr-bg:        #0e0c0b;
  --clr-bg-alt:    #1a1713;
  --clr-text:      #f0e6d3;
  --clr-gold:      #c9a84c;
  --clr-gold-20:   rgba(201, 168, 76, 0.20);
  --clr-gold-40:   rgba(201, 168, 76, 0.40);
  --clr-gold-08:   rgba(201, 168, 76, 0.08);
  --clr-overlay:   rgba(14, 12, 11, 0.70);
  --clr-nav-dark:  rgba(14, 12, 11, 0.95);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  /* Type scale */
  --fs-hero:       clamp(3.5rem, 8vw, 6rem);
  --fs-h2:         clamp(2rem, 4vw, 3rem);
  --fs-h3:         clamp(1.3rem, 2.2vw, 1.65rem);
  --fs-pullquote:  clamp(1.6rem, 3vw, 2.4rem);
  --fs-body:       1rem;
  --fs-small:      0.875rem;
  --fs-eyebrow:    0.6875rem;

  /* Spacing */
  --space-xs:      0.5rem;
  --space-s:       1rem;
  --space-m:       2rem;
  --space-l:       4rem;
  --space-xl:      7rem;
  --space-section: clamp(5rem, 10vw, 8rem);

  /* Layout */
  --max-w:         1200px;
  --pad-x:         clamp(1.25rem, 5vw, 4rem);

  /* Motion */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --dur-reveal:    700ms;
  --dur-fast:      250ms;
  --dur-med:       350ms;
}

/* =======================================================
   RESET & BASE
   ======================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Restore cursors where the default matters */
input, textarea, select { cursor: text; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Anchor offset for fixed nav */
section[id] { scroll-margin-top: 70px; }

/* =======================================================
   UTILITIES
   ======================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

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

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--clr-gold);
  margin-bottom: var(--space-l);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-s);
}

.section-eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 400;
  margin-bottom: var(--space-s);
}

/* =======================================================
   SCROLL REVEAL BASE STATES
   ======================================================= */
.reveal-section,
.reveal-child {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out);
}

.reveal-section.is-visible,
.reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =======================================================
   LOADER
   ======================================================= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0e0c0b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 600ms ease;
}

.loader__text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--clr-gold);
  text-shadow: 0 0 28px rgba(201, 168, 76, 0.16);
}

.loader__text::before,
.loader__text::after {
  content: '';
  display: block;
  width: clamp(2.5rem, 8vw, 5rem);
  height: 1px;
  background: rgba(201, 168, 76, 0.45);
}

/* =======================================================
   CUSTOM CURSOR
   ======================================================= */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid var(--clr-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition:
    width 200ms var(--ease-out),
    height 200ms var(--ease-out),
    background-color 200ms var(--ease-out);
}

#cursor.is-hovering {
  width: 40px;
  height: 40px;
  background-color: var(--clr-gold-20);
}

@media (hover: none) {
  #cursor { display: none; }
  body, button { cursor: auto; }
  input, textarea { cursor: text; }
}

/* =======================================================
   NAVIGATION
   ======================================================= */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}

#nav.nav--scrolled {
  background: var(--clr-nav-dark);
  border-bottom-color: var(--clr-gold);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  font-family: var(--font-display);
  font-variant: small-caps;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 300ms ease;
}

#nav.nav--scrolled .nav__logo { opacity: 1; }

.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-l);
  align-items: center;
}

.nav__links a {
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--dur-fast);
}

.nav__links a:hover { color: var(--clr-gold); }
.nav__links a:focus-visible { color: var(--clr-gold); }

.nav__hamburger {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 101;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-text);
  transition: transform 300ms var(--ease-out), opacity 300ms;
}

#nav.nav--open .nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#nav.nav--open .nav__hamburger span:nth-child(2) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile full-screen overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 400ms var(--ease-out);
}

#nav.nav--open .nav__overlay {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.nav__overlay ul {
  list-style: none;
  text-align: center;
}

.nav__overlay ul li { margin-bottom: var(--space-m); }

.nav__overlay ul a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 300;
  transition: color var(--dur-fast);
}

.nav__overlay ul a:hover { color: var(--clr-gold); }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}

/* =======================================================
   HERO
   ======================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax layer — oversized so translateY doesn't reveal edges */
.hero__bg {
  position: absolute;
  inset: -20%;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--clr-overlay);
  z-index: 1;
}

/* SVG feTurbulence grain — zero external requests */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 100px var(--pad-x) var(--space-xl);
  width: 100%;
  max-width: var(--max-w);
}

.hero__eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 400;
  margin-bottom: var(--space-m);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms var(--ease-out);
}

.hero__eyebrow.is-revealed { opacity: 1; transform: translateY(0); }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.25rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-m);
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

/* Word reveal containers added by JS */
.hero__word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.12em;
  vertical-align: bottom;
}

.hero__word-inner {
  display: inline-block;
  transform: translateY(22px);
  opacity: 0;
  transition:
    transform 650ms var(--ease-out),
    opacity 650ms ease;
}

.hero__word-inner.is-revealed {
  transform: translateY(0);
  opacity: 1;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: rgba(240, 230, 211, 0.75);
  margin-bottom: var(--space-m);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms var(--ease-out);
}

.hero__sub.is-revealed { opacity: 1; transform: translateY(0); }

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: var(--space-m);
}

.hero__quick-contact {
  font-size: var(--fs-small);
  color: rgba(240, 230, 211, 0.7);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms var(--ease-out);
}

.hero__quick-contact.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero__quick-contact a {
  color: var(--clr-gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* =======================================================
   BUTTONS
   ======================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.875rem 2.5rem;
  border: 1px solid var(--clr-gold);
  color: var(--clr-text);
  background: transparent;
  position: relative;
}

.btn:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
}

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--clr-gold);
  outline-offset: 4px;
}

.btn--cta {
  opacity: 0;
  transform: translateY(12px);
  transition:
    background var(--dur-fast),
    color var(--dur-fast),
    opacity 500ms ease,
    transform 500ms var(--ease-out);
}

.btn--cta.is-revealed { opacity: 1; transform: translateY(0); }

.btn--secondary {
  color: var(--clr-gold);
  border-color: rgba(201, 168, 76, 0.55);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: rgba(201, 168, 76, 0.12);
  color: var(--clr-text);
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Animated scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  overflow: hidden;
  z-index: 3;
}

.hero__scroll-indicator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-gold);
  opacity: 0.25;
}

.hero__scroll-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-gold);
  animation: scroll-pulse 1.9s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%   { transform: translateY(-100%); opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

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

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-l);
  }
}

.service {
  position: relative;
  padding-top: 3.5rem;
}

.service__numeral {
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 600;
  color: var(--clr-text);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  margin-bottom: var(--space-s);
  line-height: 1.2;
}

.service p {
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240, 230, 211, 0.72);
}

/* =======================================================
   HORIZONTAL SCROLL
   ======================================================= */

/* Mobile-first: natural flow with touch scroll */
#hscroll {
  padding: var(--space-section) 0;
}

.hscroll__label {
  padding: 0 var(--pad-x);
  margin-bottom: var(--space-l);
}

.hscroll__label h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.15;
}

.hscroll__track-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0 var(--pad-x) var(--space-s);
  scrollbar-width: none;
}

.hscroll__track-wrapper::-webkit-scrollbar { display: none; }

.hscroll__track {
  display: flex;
  gap: var(--space-m);
  width: max-content;
}

.hscroll__card {
  flex-shrink: 0;
  width: 270px;
  scroll-snap-align: start;
}

.hscroll__card-img {
  height: 360px;
  background-size: cover;
  background-position: center;
}

.hscroll__card-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--clr-text);
  margin-top: var(--space-s);
}

/* Desktop: scroll-linked sticky panel */
@media (min-width: 768px) {
  #hscroll {
    height: 300vh;
    padding: 0;
  }

  .hscroll__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--space-l);
  }

  .hscroll__label {
    flex-shrink: 0;
    width: clamp(200px, 22vw, 280px);
    padding: 0 0 0 var(--pad-x);
    margin-bottom: 0;
  }

  .hscroll__track-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    scrollbar-width: auto;
    scroll-snap-type: none;
  }

  .hscroll__track {
    will-change: transform;
    align-items: center;
    padding: 0 var(--pad-x) 0 var(--space-m);
    height: 100%;
    flex-wrap: nowrap;
    gap: var(--space-m);
    width: max-content;
  }

  .hscroll__card {
    width: 320px;
    scroll-snap-align: unset;
  }

  .hscroll__card-img {
    height: 420px;
  }
}

/* =======================================================
   ABOUT
   ======================================================= */
.about {
  padding: var(--space-section) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--space-l);
  }
}

.about__quote {
  font-family: var(--font-display);
  font-size: var(--fs-pullquote);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  border: none;
  padding: 0;
}

.about__body p {
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 230, 211, 0.78);
  margin-bottom: var(--space-m);
}

.about__body p:last-of-type { margin-bottom: 0; }

.about__byline {
  display: block;
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  color: var(--clr-gold);
  font-style: normal;
  margin-top: var(--space-m);
}

/* =======================================================
   TESTIMONIALS
   ======================================================= */
#testimonials {
  background: var(--clr-bg-alt);
  padding: var(--space-section) 0;
}

.testimonials__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .testimonials__inner { grid-template-columns: 1fr 1fr; }
}

.testimonial__counter { margin-bottom: var(--space-m); }

.counter {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--clr-gold);
  display: block;
  line-height: 1;
}

.counter__label {
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.45);
  display: block;
  margin-top: var(--space-xs);
}

.testimonial__mark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.75;
  color: var(--clr-gold);
  display: block;
  margin-bottom: var(--space-s);
  opacity: 0.75;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h3);
  font-weight: 300;
  line-height: 1.5;
  border: none;
  padding: 0;
  margin-bottom: var(--space-s);
}

.testimonial cite {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  color: rgba(240, 230, 211, 0.5);
  font-style: normal;
}

/* =======================================================
   GALLERY
   ======================================================= */
.gallery {
  padding: var(--space-section) 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 3px;
}

@media (min-width: 600px) {
  .gallery__grid {
    grid-auto-rows: 240px;
  }
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
  }
}

.gallery__item--tall { grid-row: span 2; }

.gallery__item {
  position: relative;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1);
  transition: filter var(--dur-med) ease;
}

.gallery__item:hover img { filter: saturate(0.18); }

.gallery__item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: var(--fs-small);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--dur-med) ease;
  pointer-events: none;
}

.gallery__item:hover figcaption { opacity: 1; }

/* =======================================================
   ENQUIRY FORM
   ======================================================= */
.enquiry {
  padding: var(--space-section) 0;
}

.enquiry__sub {
  font-weight: 300;
  color: rgba(240, 230, 211, 0.65);
  margin-top: calc(-1 * var(--space-s));
  margin-bottom: var(--space-xl);
}

.enquiry__form { max-width: 700px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  margin-bottom: var(--space-m);
}

@media (min-width: 600px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form__field--full { grid-column: 1 / -1; }

.form__field label {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.form__field input,
.form__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-gold-40);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  padding: 0.6rem 0;
  width: 100%;
  -webkit-appearance: none;
  transition: border-color var(--dur-fast), outline-color var(--dur-fast);
}

.form__field input:focus,
.form__field textarea:focus { border-bottom-color: var(--clr-gold); }

.form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(240, 230, 211, 0.28);
}

.form-error-msg {
  color: #d97070;
  font-size: var(--fs-small);
  min-height: 1.2em;
  margin-bottom: var(--space-s);
}

.btn--submit { margin-top: var(--space-l); }
.btn--submit {
  opacity: 1;
  transform: none;
}

.btn--submit:disabled {
  opacity: 0.65;
  cursor: progress;
}

@media (max-width: 599px) {
  .btn--submit { width: 100%; text-align: center; }
}

.enquiry__footnote {
  margin-top: var(--space-l);
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  color: rgba(240, 230, 211, 0.35);
}

/* =======================================================
   FOOTER
   ======================================================= */
.footer {
  padding: var(--space-l) 0 var(--space-m);
}

.footer__rule {
  height: 1px;
  background: var(--clr-gold);
  opacity: 0.4;
  margin-bottom: var(--space-l);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__inner p {
  font-size: var(--fs-small);
  color: rgba(240, 230, 211, 0.38);
  letter-spacing: 0.04em;
}

.footer__inner a {
  color: var(--clr-gold);
  transition: opacity var(--dur-fast);
}

.footer__inner a:hover { opacity: 0.65; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-section,
  .reveal-child,
  .hero__eyebrow,
  .hero__sub,
  .hero__quick-contact,
  .btn--cta,
  .hero__word-inner {
    opacity: 1 !important;
    transform: none !important;
  }

  #cursor,
  .hero__scroll-indicator,
  #loader {
    display: none !important;
  }
}
