:root {
  --ink: #03040a;
  --charcoal: #0a1022;
  --paper: #fffaf0;
  --soft: #f8edcf;
  --mist: #eef6ff;
  --gold: #ffc845;
  --gold-light: #ffe48a;
  --gold-deep: #bd7b12;
  --blue: #006cff;
  --blue-bright: #1b8cff;
  --blue-deep: #021d73;
  --blue-soft: #d9ebff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 20, 80, 0.24);
  --radius: 8px;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-loader {
  align-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 108, 255, 0.28), transparent 30%),
    radial-gradient(circle at 58% 54%, rgba(255, 200, 69, 0.2), transparent 28%),
    var(--ink);
  color: var(--gold-light);
  display: grid;
  inset: 0;
  justify-items: center;
  min-height: 100svh;
  opacity: 1;
  pointer-events: all;
  position: fixed;
  transition: opacity 520ms ease, visibility 520ms ease;
  visibility: visible;
  z-index: 999;
}

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

.loader-mark {
  align-items: center;
  display: grid;
  height: clamp(138px, 23vw, 196px);
  justify-items: center;
  position: relative;
  width: clamp(138px, 23vw, 196px);
}

.page-loader img {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 200, 69, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0, 108, 255, 0.14), 0 0 54px rgba(255, 200, 69, 0.26);
  height: 76%;
  object-fit: cover;
  position: relative;
  width: 76%;
  z-index: 1;
}

.loader-orbit {
  border: 2px solid rgba(255, 200, 69, 0.2);
  border-left-color: var(--gold);
  border-right-color: var(--blue-bright);
  border-radius: 50%;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  animation: loader-spin 1.15s linear infinite, loader-pulse 1.7s ease-in-out infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 108, 255, 0.18);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(255, 200, 69, 0.07);
  }
}

.site-header {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 108, 255, 0.16), rgba(255, 200, 69, 0.08)),
    rgba(3, 4, 10, 0.84);
  border-bottom: 1px solid rgba(255, 200, 69, 0.28);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 12px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 190px;
}

.brand img {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 200, 69, 0.78);
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(0, 108, 255, 0.12), 0 0 32px rgba(255, 200, 69, 0.2);
  width: 48px;
}

.brand span {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(0, 108, 255, 0.28);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--gold-light);
  opacity: 1;
}

.nav-cta,
.button,
.enquiry-form button {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.button.primary,
.enquiry-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-light) 48%, #fff6bf);
  color: var(--ink);
}

.nav-cta {
  box-shadow: 0 10px 26px rgba(217, 166, 59, 0.18);
}

.button.primary {
  box-shadow: 0 18px 46px rgba(255, 200, 69, 0.32);
}

.enquiry-form button {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
}

.button.secondary {
  background: rgba(0, 108, 255, 0.14);
  border: 1px solid rgba(255, 200, 69, 0.56);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 108, 255, 0.18);
}

.nav-cta:hover,
.button:hover,
.enquiry-form button:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.hero {
  color: var(--white);
  min-height: 92vh;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 70px) 58px;
  position: relative;
}

.hero-media,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 108, 255, 0.52), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(255, 200, 69, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(3, 4, 10, 0.92), rgba(2, 29, 115, 0.62) 50%, rgba(3, 4, 10, 0.24)),
    linear-gradient(0deg, rgba(3, 4, 10, 0.78), rgba(3, 4, 10, 0.08) 48%);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.services .eyebrow,
.gallery .eyebrow,
.process .eyebrow {
  color: var(--blue-deep);
}

.intro .eyebrow,
.contact .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-light);
  font-size: clamp(4rem, 13vw, 10.2rem);
  line-height: 0.82;
  margin-bottom: 26px;
  max-width: 820px;
  text-shadow: 0 0 34px rgba(0, 108, 255, 0.32), 0 4px 28px rgba(0, 0, 0, 0.45);
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  margin-bottom: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.58;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 200, 69, 0.38);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 9px 13px;
  backdrop-filter: blur(14px);
}

.launch-panel {
  background:
    linear-gradient(135deg, rgba(0, 108, 255, 0.22), rgba(255, 200, 69, 0.08)),
    rgba(3, 4, 10, 0.86);
  border: 1px solid rgba(255, 200, 69, 0.38);
  border-left: 5px solid var(--gold);
  bottom: 0;
  color: var(--white);
  max-width: 430px;
  padding: 24px;
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  z-index: 2;
}

.launch-panel p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 8px 0 0;
}

.status-dot {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 200, 69, 0.18), 0 0 22px rgba(0, 108, 255, 0.42);
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin-right: 9px;
  width: 10px;
}

.section-band,
.services,
.gallery,
.contact {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 70px);
}

.intro {
  align-items: stretch;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 200, 69, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(0, 71, 190, 0.34), rgba(3, 4, 10, 0) 54%),
    linear-gradient(180deg, rgba(3, 4, 10, 0.96), rgba(10, 16, 34, 0.98)),
    var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
}

.intro p:last-child,
.contact-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
  line-height: 1.75;
}

.intro > div,
.intro > p {
  background: rgba(3, 4, 10, 0.72);
  border: 1px solid rgba(255, 200, 69, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  padding: clamp(22px, 4vw, 36px);
  backdrop-filter: blur(14px);
}

.intro .eyebrow {
  color: var(--gold-light);
}

.intro .section-heading h2,
.intro h2 {
  color: var(--white);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

.intro > p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 850px;
}

.section-heading h2 {
  color: var(--ink);
}

.intro .section-heading h2,
.contact .section-heading h2 {
  color: var(--white);
}

.services .section-heading {
  margin-bottom: 20px;
}

.services {
  background:
    radial-gradient(circle at 10% 8%, rgba(0, 108, 255, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper), #f5f8ff);
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: transparent;
  border: 0;
}

.service-grid article {
  align-content: end;
  background: var(--ink);
  border: 1px solid rgba(255, 200, 69, 0.2);
  box-shadow: 0 24px 70px rgba(2, 29, 115, 0.2);
  display: grid;
  min-height: clamp(300px, 28vw, 390px);
  padding: 24px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.service-grid article > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
  width: 100%;
  z-index: 0;
}

.service-grid article::before {
  background:
    linear-gradient(180deg, rgba(3, 4, 10, 0.08), rgba(3, 4, 10, 0.52) 38%, rgba(3, 4, 10, 0.95)),
    linear-gradient(135deg, rgba(0, 108, 255, 0.24), rgba(255, 200, 69, 0.08));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.service-grid article::after,
.process-list li::after {
  background: linear-gradient(135deg, rgba(0, 108, 255, 0.13), rgba(255, 200, 69, 0.18));
  border-radius: 50%;
  content: "";
  height: 118px;
  position: absolute;
  right: -54px;
  top: -54px;
  width: 118px;
}

.service-grid article:hover {
  border-color: rgba(255, 200, 69, 0.56);
  box-shadow: 0 30px 90px rgba(2, 29, 115, 0.34);
  transform: translateY(-6px);
}

.service-grid article:hover > img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.service-grid span {
  align-self: start;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 200, 69, 0.4);
  border-radius: 999px;
  color: var(--gold-light);
  justify-self: start;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
  padding: 7px 11px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(12px);
}

.service-grid h3,
.process-list strong,
figcaption strong {
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.process-list span,
figcaption span {
  color: rgba(3, 4, 10, 0.72);
  line-height: 1.65;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.service-grid h3 {
  color: var(--white);
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
  z-index: 2;
}

.service-grid p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 36rem;
  position: relative;
  z-index: 2;
}

.service-grid p::after {
  color: var(--gold-light);
  content: "Explore";
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-top: 18px;
  text-transform: uppercase;
}

.gallery {
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 108, 255, 0.16), transparent 28%),
    linear-gradient(180deg, var(--mist), var(--paper));
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

figure {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 108, 255, 0.1);
  box-shadow: 0 24px 70px rgba(2, 29, 115, 0.12);
  margin: 0;
  overflow: hidden;
}

figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.feature-card img {
  aspect-ratio: 5 / 3;
}

figcaption {
  background: var(--white);
  border-top: 4px solid var(--gold);
  display: grid;
  gap: 8px;
  padding: 20px;
}

.process {
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 200, 69, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 200, 69, 0.12), rgba(0, 108, 255, 0.08)),
    var(--paper);
}

.process h2 {
  color: var(--ink);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.72)),
    var(--white);
  border: 1px solid rgba(0, 108, 255, 0.12);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  min-height: 188px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.process-list li::before {
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  color: var(--ink);
  content: "0" counter(process);
  counter-increment: process;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 44px;
  position: relative;
  z-index: 1;
}

.contact {
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 200, 69, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(0, 108, 255, 0.35), rgba(3, 4, 10, 0) 46%),
    var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
}

.contact-copy h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-details a {
  color: var(--gold-light);
  font-weight: 900;
}

.contact-call {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 200, 69, 0.28);
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  width: max-content;
}

.contact-call:hover,
.contact-call:focus {
  background: rgba(255, 200, 69, 0.16);
}

.contact-details address {
  border-left: 3px solid var(--gold);
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  font-style: normal;
  gap: 4px;
  padding-left: 14px;
}

.contact-details address strong {
  color: var(--white);
}

.enquiry-form {
  background: var(--paper);
  border: 1px solid rgba(255, 200, 69, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(20px, 4vw, 34px);
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

.form-trap {
  display: none;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid rgba(7, 28, 101, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 108, 255, 0.12);
  outline: 0;
}

textarea {
  resize: vertical;
}

.full,
.enquiry-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.5;
  margin: -4px 0 0;
  min-height: 1.5em;
}

.form-status.is-error {
  color: #a11d1d;
}

.enquiry-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  align-items: center;
  background: #030409;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 70px);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--gold-light);
}

.legal-page {
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  padding-top: 74px;
}

.legal-hero {
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 108, 255, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(3, 4, 10, 0.98), rgba(10, 16, 34, 0.94));
  color: var(--white);
  padding: clamp(72px, 10vw, 124px) clamp(20px, 5vw, 70px);
}

.legal-hero h1 {
  color: var(--gold-light);
  font-size: clamp(3.8rem, 10vw, 7rem);
  margin-bottom: 18px;
}

.legal-hero p:last-child {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 900px;
  padding: clamp(44px, 7vw, 84px) clamp(20px, 5vw, 70px);
}

.legal-content h2 {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.12;
  margin: 22px 0 0;
}

.legal-content p {
  color: rgba(3, 4, 10, 0.74);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.legal-content a {
  color: var(--blue-deep);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(0, 108, 255, 0.25);
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 10px clamp(16px, 4vw, 34px);
  }

  .nav-links {
    display: none;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img,
  figure img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .page-loader {
    min-height: 100dvh;
    place-items: center;
  }

  .loader-mark {
    height: clamp(128px, 44vw, 174px);
    width: clamp(128px, 44vw, 174px);
  }

  .site-header {
    gap: 10px;
    padding: 9px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: 0.86rem;
    max-width: 112px;
  }

  .brand img {
    height: 40px;
    width: 40px;
  }

  .nav-cta {
    font-size: 0.82rem;
    min-height: 40px;
    padding: 10px 11px;
    white-space: nowrap;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 18px 156px;
  }

  .hero-media {
    object-position: center;
  }

  h1 {
    font-size: clamp(3.75rem, 20vw, 5.65rem);
    line-height: 0.88;
  }

  h2 {
    font-size: clamp(1.85rem, 11vw, 3rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .launch-panel {
    bottom: 16px;
    left: 18px;
    max-width: none;
    padding: 18px;
    right: 18px;
  }

  .section-band,
  .services,
  .gallery,
  .contact {
    padding: 54px 18px;
  }

  .services .section-heading {
    margin-bottom: 16px;
  }

  .service-grid,
  .process-list,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .process-list li {
    min-height: auto;
    padding: 22px;
  }

  .process-list li {
    padding-top: 22px;
  }

  .service-grid article {
    min-height: 330px;
  }

  .service-grid h3 {
    font-size: 1.42rem;
  }

  figure img {
    aspect-ratio: 1 / 1;
  }

  figcaption {
    padding: 16px;
  }

  .contact-details {
    overflow-wrap: anywhere;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .site-footer {
    align-items: flex-start;
    display: grid;
    padding: 22px 18px;
  }

  .footer-links {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .brand span {
    display: none;
  }

  .nav-cta {
    font-size: 0.78rem;
    padding-inline: 10px;
  }

  .hero {
    padding-top: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
