:root {
  --black: #090a08;
  --black-soft: #10110f;
  --ivory: #f0eee8;
  --ivory-2: #e7e3da;
  --white: #f8f6f0;
  --ink: #171815;
  --muted-dark: #9b9b93;
  --muted-light: #66675f;
  --gold: #cda16e;
  --gold-bright: #e0b783;
  --line-dark: rgba(255, 255, 255, .12);
  --line-light: rgba(19, 20, 17, .17);
  --shell: min(1440px, 88vw);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: none;
}

.grain {
  position: fixed;
  z-index: 200;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 202;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.site-header {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 4.5vw;
  display: grid;
  grid-template-columns: 230px 1fr 180px;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height .45s var(--ease), background .45s, border-color .45s;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(9, 10, 8, .88);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  width: 190px;
  display: block;
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  padding: 10px 0;
  color: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(205, 161, 110, .7);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s, background .3s;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 1px;
  margin: 7px auto;
  background: var(--white);
  transition: transform .35s var(--ease);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 140;
  inset: 0;
  padding: 120px 8vw 60px;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(9, 10, 8, .98);
  transition: opacity .4s, visibility .4s;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  width: min(560px, 100%);
  display: grid;
}

.mobile-menu a {
  padding: 20px 0;
  display: flex;
  gap: 30px;
  align-items: baseline;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 300;
  letter-spacing: -.03em;
  text-decoration: none;
}

.mobile-menu a span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .15em;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: #0c0d0b;
}

.hero-media {
  position: absolute;
  inset: -5%;
  background: #0c0d0b url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.06);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, .96) 0%, rgba(5, 6, 5, .82) 31%, rgba(5, 6, 5, .24) 62%, rgba(5, 6, 5, .08) 100%),
    linear-gradient(0deg, rgba(5, 6, 5, .66), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(800px, 82vw);
  padding: clamp(150px, 20vh, 220px) 0 0 8vw;
}

.eyebrow {
  margin: 0;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 28px 0 38px;
  font-size: clamp(66px, 8vw, 132px);
  font-weight: 200;
  letter-spacing: -.06em;
  line-height: .86;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: hero-in 1s var(--ease) forwards;
}

.hero h1 span:nth-child(2) {
  animation-delay: .1s;
}

.hero-intro,
.hero-lead,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-in .9s var(--ease) forwards;
}

.hero-intro {
  animation-delay: .05s;
}

.hero-lead {
  width: min(590px, 100%);
  margin: 0;
  color: #d0cec7;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
  animation-delay: .25s;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 32px;
  animation-delay: .38s;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .3s, color .3s, transform .3s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: #11120f;
}

.button-gold:hover {
  background: var(--gold-bright);
}

.text-link {
  padding: 16px 0;
  color: var(--white);
  font-size: 11px;
  text-decoration: none;
}

.text-link span {
  margin-left: 12px;
  color: var(--gold);
}

.hero-foot {
  position: absolute;
  z-index: 2;
  left: 8vw;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #aaa9a2;
  font-size: 9px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-foot i {
  width: 20px;
  height: 1px;
  background: rgba(205, 161, 110, .65);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 4.5vw;
  bottom: 28px;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 22px;
  background: var(--gold);
  animation: scroll-cue 2s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% { transform: translateY(-24px); }
  55%, 100% { transform: translateY(56px); }
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--ivory);
  color: var(--ink);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 140px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 28px;
}

.section-label span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .16em;
}

.section-label p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 58px;
  height: 1px;
  background: rgba(205, 161, 110, .55);
}

.dark-label p {
  color: #6b6c65;
}

.display {
  margin: 24px 0 0;
  font-size: clamp(50px, 6.2vw, 98px);
  font-weight: 250;
  letter-spacing: -.06em;
  line-height: .98;
}

.dark-display {
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: .32fr 1fr;
  gap: 8vw;
}

.intro-grid > .section-label {
  align-self: start;
  display: grid;
  gap: 16px;
}

.intro-grid > .section-label::after {
  width: 90px;
}

.intro-copy {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 8vw;
  align-items: end;
}

.intro-copy .display {
  margin: 0;
}

.intro-detail p {
  margin: 0 0 18px;
  color: #aaa9a2;
  font-size: 15px;
  line-height: 1.8;
}

.intro-detail span {
  display: block;
  margin-top: 34px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.editorial {
  position: relative;
  padding: 0 4.5vw 110px;
}

.editorial-media {
  height: min(76vh, 820px);
  min-height: 590px;
  overflow: hidden;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.editorial-media:hover img {
  transform: scale(1.018);
}

.editorial-note {
  position: absolute;
  left: 9vw;
  bottom: 8vw;
  width: min(520px, 78vw);
  padding: 32px 34px;
  background: rgba(9, 10, 8, .86);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.editorial-note p {
  margin: 0 0 14px;
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.editorial-note strong {
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 350;
  line-height: 1.25;
}

.section-heading {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 7vw;
  align-items: end;
}

.section-heading .display {
  margin: 0;
}

.service-grid {
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  height: 590px;
  overflow: hidden;
  background: #171815;
  isolation: isolate;
}

.service-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 1s;
}

.service-card:hover img {
  transform: scale(1.045);
  filter: brightness(1.05);
}

.card-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 25%, rgba(5, 6, 5, .9) 100%);
}

.service-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.service-content > span {
  color: #bdbbb4;
  font-size: 9px;
  letter-spacing: .15em;
}

.service-content h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  font-weight: 350;
  letter-spacing: -.025em;
}

.service-content p {
  min-height: 58px;
  margin: 0 0 20px;
  color: #c0bfb8;
  font-size: 12px;
  line-height: 1.6;
}

.service-content a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-content b {
  font-size: 15px;
  font-weight: 400;
}

.project-list {
  margin-top: 95px;
}

.project-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr);
  gap: 7vw;
  align-items: center;
}

.project-media {
  overflow: hidden;
  background: #d8d4cb;
}

.project-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.project:hover .project-media img {
  transform: scale(1.025);
}

.project-wide .project-media {
  height: min(66vw, 720px);
}

.project-copy > span {
  color: #77786f;
  font-size: 9px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 24px 0 18px;
  font-size: clamp(28px, 3.2vw, 47px);
  font-weight: 350;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.project-copy p {
  max-width: 460px;
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.75;
}

.project-duo {
  margin-top: 145px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.project-tile .project-media {
  aspect-ratio: 1 / 1.06;
}

.project-tile.offset {
  margin-top: 120px;
}

.project-tile .project-copy {
  padding: 28px 0 0;
}

.project-tile .project-copy h3 {
  max-width: 530px;
}

.process-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-grid article {
  padding-top: 20px;
  border-top: 1px solid #484a44;
}

.process-grid article > span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .15em;
}

.process-grid h3 {
  margin: 35px 0 14px;
  font-size: 18px;
  font-weight: 400;
}

.process-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.7;
}

.standards-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 10vw;
}

.standard-list {
  border-top: 1px solid var(--line-light);
}

.standard-list article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.standard-list article > span {
  padding-top: 4px;
  color: #8b8c83;
  font-size: 9px;
  letter-spacing: .14em;
}

.standard-list h3 {
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 400;
}

.standard-list p {
  max-width: 620px;
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.7;
}

.contact {
  border-top: 1px solid var(--line-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8vw;
  align-items: start;
}

.contact-copy > p {
  max-width: 600px;
  margin: 36px 0 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.8;
}

.contact-details {
  margin-top: 52px;
  display: grid;
  gap: 11px;
}

.contact-details a {
  width: fit-content;
  color: var(--white);
  font-size: clamp(18px, 2vw, 25px);
  text-decoration-color: rgba(205, 161, 110, .55);
  text-underline-offset: 7px;
}

.contact-details span {
  color: var(--muted-dark);
  font-size: 12px;
  letter-spacing: .05em;
}

.form-card {
  padding: clamp(28px, 4vw, 56px);
  background: var(--black-soft);
  border: 1px solid var(--line-dark);
}

.form-head {
  margin-bottom: 42px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  border-bottom: 1px solid var(--line-dark);
}

.form-head span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.form-head p {
  max-width: 300px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
}

.field {
  min-width: 0;
}

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

.field label {
  margin-bottom: 10px;
  display: block;
  color: #c6c5be;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field label em {
  color: var(--gold);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #4d4e49;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  transition: border-color .25s;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.6;
}

.field select {
  color-scheme: dark;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #65665f;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-bottom {
  grid-column: 1 / -1;
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.form-bottom p {
  max-width: 330px;
  margin: 0;
  color: #777871;
  font-size: 11px;
  line-height: 1.55;
}

.site-footer {
  min-height: 120px;
  padding: 32px 4.5vw;
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  gap: 30px;
  align-items: center;
  background: #060705;
  border-top: 1px solid var(--line-dark);
}

.footer-brand {
  width: 185px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.site-footer p {
  margin: 0;
  color: #85867e;
  font-size: 9px;
  letter-spacing: .12em;
  text-align: right;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].reveal-pending {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

[data-reveal].reveal-pending.reveal-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 210px 1fr 56px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

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

  .intro-grid > .section-label {
    display: flex;
  }

  .intro-copy {
    grid-template-columns: 1.2fr .8fr;
  }

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

  .service-card {
    height: 560px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }

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

  .contact-copy {
    max-width: 850px;
  }

  .site-footer {
    grid-template-columns: 210px 1fr;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 44px, 680px);
  }

  .site-header {
    height: 76px;
    padding: 0 22px;
    grid-template-columns: 180px 1fr 52px;
  }

  .brand {
    width: 165px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background-position: 59% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 6, 5, .9), rgba(5, 6, 5, .34)),
      linear-gradient(0deg, rgba(5, 6, 5, .8), transparent 55%);
  }

  .hero-content {
    width: 100%;
    padding: 22vh 22px 0;
  }

  .hero h1 {
    font-size: clamp(52px, 13.5vw, 78px);
  }

  .hero-lead {
    max-width: 540px;
  }

  .hero-foot {
    left: 22px;
  }

  .section-shell {
    padding: 96px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .intro-detail {
    max-width: 620px;
  }

  .editorial {
    padding: 0 0 90px;
  }

  .editorial-media {
    min-height: 520px;
    height: 68vh;
  }

  .editorial-note {
    left: 22px;
    right: 22px;
    bottom: 112px;
    width: auto;
  }

  .project-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-wide .project-media {
    height: 68vw;
    min-height: 430px;
  }

  .project-duo {
    margin-top: 95px;
    gap: 30px;
  }

  .project-tile.offset {
    margin-top: 80px;
  }

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

  .standard-list {
    margin-top: 55px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .brand {
    width: 150px;
  }

  .hero-content {
    padding-top: 20vh;
  }

  .hero h1 {
    font-size: clamp(46px, 14.8vw, 66px);
    line-height: .91;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .hero-foot {
    max-width: 75vw;
    flex-wrap: wrap;
  }

  .scroll-cue {
    right: 22px;
  }

  .display {
    font-size: clamp(40px, 12vw, 58px);
  }

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

  .service-card {
    height: 500px;
  }

  .project-duo {
    grid-template-columns: 1fr;
  }

  .project-tile.offset {
    margin-top: 40px;
  }

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

  .form-card {
    padding: 28px 20px;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-head p {
    text-align: left;
  }

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

  .field-full,
  .form-bottom {
    grid-column: 1;
  }

  .form-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .form-bottom .button {
    width: 100%;
  }

  .site-footer nav {
    gap: 12px 20px;
  }
}

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

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

  [data-reveal],
  [data-reveal].reveal-pending {
    opacity: 1;
    transform: none;
  }

  .hero-media {
    transform: none !important;
  }
}
