:root {
  --ink: #171715;
  --paper: #f3f0e9;
  --orange: #ff5c35;
  --acid: #d9ff43;
  --muted: #77746d;
  --line: rgba(23, 23, 21, 0.18);
  --white: #fffdf8;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main,
section,
header,
footer,
article,
nav,
div {
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  min-height: 94px;
  margin: 0 auto;
  padding: 10px 36px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
}

.brand-logo-frame {
  display: block;
  width: 150px;
  height: 74px;
  background: var(--paper);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 13px 15px;
  color: var(--white);
  background: var(--ink);
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--acid);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  width: 100%;
  max-width: var(--max-width);
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 105px) 36px 44px;
}

.hero::before {
  position: absolute;
  top: 16%;
  left: 47%;
  width: 330px;
  height: 330px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-right: clamp(30px, 5vw, 84px);
  min-width: 0;
}

.eyebrow,
.section-index,
.process-label,
.project-meta > div > p,
.contact-details span {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: clamp(64px, 9vh, 110px) 0 54px;
  font-size: clamp(56px, 7.3vw, 116px);
  font-weight: 700;
  line-height: 0.87;
  letter-spacing: -0.075em;
}

.hero h1 em,
.contact h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(220px, 390px) auto;
  align-items: end;
  gap: 36px;
  max-width: 630px;
}

.hero-intro p {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 150px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  align-self: end;
  aspect-ratio: 15 / 16;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: #d4c0af;
  min-width: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  animation: hero-enter 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  bottom: 44px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50b96d;
  box-shadow: 0 0 0 5px rgba(80, 185, 109, 0.12);
}

.section-pad {
  width: min(100%, var(--max-width));
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(92px, 12vw, 180px) 36px;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  border-top: 1px solid var(--line);
}

.statement-copy {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: clamp(40px, 7vw, 110px);
}

.statement-copy p {
  margin: 0;
}

.statement-lead {
  max-width: 760px;
  font-size: clamp(36px, 4.1vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.statement-copy p:last-child {
  align-self: end;
  max-width: 370px;
  color: #45433f;
  font-size: 17px;
}

.approach,
.work {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  margin-bottom: clamp(62px, 9vw, 120px);
}

.section-heading h2,
.feature-copy > h2,
.engagement-intro h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 6.1vw, 91px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.process-card {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 25px 34px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.process-card:last-child {
  border-right: 0;
}

.process-number {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  color: #96938d;
}

.process-label {
  margin-bottom: 16px;
  color: var(--orange);
}

.process-card h3 {
  max-width: 330px;
  margin: 0 0 18px;
  font-size: clamp(29px, 2.8vw, 43px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.process-card p:last-child {
  max-width: 320px;
  margin: 0;
  color: #aaa8a1;
}

.process-symbol {
  position: absolute;
  top: 24px;
  right: 27px;
  font-size: 24px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.feature-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
}

.feature-image::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 75%;
  height: 75%;
  background: var(--acid);
  content: "";
}

.feature-copy > h2 {
  margin: 32px 0 65px;
  font-size: clamp(40px, 5vw, 74px);
}

.need-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.need-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.need-list li > span {
  padding-top: 4px;
  color: var(--orange);
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  font-weight: 700;
}

.need-list h3 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.need-list p {
  margin: 0;
  color: var(--muted);
}

.work {
  width: 100%;
  max-width: none;
  padding-right: max(36px, calc((100vw - var(--max-width)) / 2 + 36px));
  padding-left: max(36px, calc((100vw - var(--max-width)) / 2 + 36px));
}

.work-heading {
  width: min(100%, calc(var(--max-width) - 72px));
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px 26px;
}

.project-large {
  grid-column: 1 / -1;
}

.project-media {
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: #292927;
}

.project-large .project-media {
  aspect-ratio: 16 / 9;
  height: auto;
}

.project-media.portrait {
  aspect-ratio: 4 / 3;
  height: auto;
}

.project-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-large .project-media img {
  object-position: center;
}

.project:nth-child(2) .project-media img {
  object-position: center 44%;
}

.project-light img {
  object-fit: contain;
  background: #efede7;
}

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

.project-meta {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 0.55fr);
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 15px;
}

.project-meta > div > p {
  margin-bottom: 12px;
  color: #929089;
}

.project-meta h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.project-detail {
  max-width: 330px;
  margin: 0;
  color: #aaa8a1;
  font-size: 14px;
}

.engagement {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
}

.engagement-intro h2 {
  margin: 36px 0 30px;
  font-size: clamp(45px, 5vw, 74px);
}

.engagement-intro > p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.engagement-options {
  border-top: 1px solid var(--line);
}

.engagement-card {
  display: grid;
  grid-template-columns: 48px 1fr 0.9fr;
  gap: 22px;
  align-items: baseline;
  padding: 32px 0 45px;
  border-bottom: 1px solid var(--line);
}

.engagement-card > span {
  color: var(--orange);
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  font-weight: 700;
}

.engagement-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.04em;
}

.engagement-card p {
  margin: 0;
  color: var(--muted);
}

.contact {
  padding: clamp(90px, 11vw, 165px) max(36px, calc((100vw - var(--max-width)) / 2 + 36px)) 52px;
  color: var(--white);
  background: var(--orange);
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  margin-bottom: clamp(95px, 13vw, 180px);
}

.contact h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(58px, 9.2vw, 138px);
  font-weight: 700;
  line-height: 0.87;
  letter-spacing: -0.075em;
}

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

.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 350px);
  padding: 20px 22px;
  color: var(--white);
  background: var(--ink);
  font-size: 17px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.contact-button:hover {
  color: var(--ink);
  background: var(--acid);
}

.contact-details {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.6fr;
  gap: 28px;
}

.contact-details div {
  display: grid;
  gap: 9px;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.67);
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid transparent;
  font-size: 14px;
}

.contact-details a:hover {
  border-bottom-color: currentColor;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 42px 36px;
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-legal {
  display: grid;
  gap: 10px;
}

.footer-legal nav {
  display: flex;
  gap: 20px;
}

.footer-legal a,
.legal-back {
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

.footer-legal a:hover,
.legal-back:hover {
  color: var(--orange);
}

.legal-back {
  font-size: 12px;
  font-weight: 700;
}

.legal-page {
  width: min(100%, var(--max-width));
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(75px, 10vw, 145px) 36px clamp(100px, 12vw, 170px);
}

.legal-hero {
  padding-bottom: clamp(70px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 1000px;
  margin: 42px 0 28px;
  font-size: clamp(62px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(500px, 2fr);
  gap: clamp(70px, 11vw, 170px);
  padding-top: clamp(60px, 8vw, 105px);
}

.legal-summary {
  align-self: start;
  position: sticky;
  top: 35px;
}

.legal-summary p {
  max-width: 340px;
  margin: 0 0 30px;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.legal-summary a {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.legal-content section {
  padding: 0 0 46px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 46px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: clamp(26px, 2.8vw, 39px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legal-content p,
.legal-content li,
.legal-content address {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content address {
  margin: 20px 0;
  font-style: normal;
}

.legal-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-placeholder {
  color: #7a351f;
  background: #ffd5c8;
}

.legal-footer {
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1.01);
  }
}

@media (max-width: 1100px) and (min-width: 981px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  }

  .hero h1 {
    font-size: clamp(58px, 6.6vw, 76px);
  }

  .hero-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-media {
    aspect-ratio: 8 / 9;
    height: auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
    padding: 8px 24px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 0;
    color: inherit;
    background: none;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    flex: 0 0 auto;
  }

  .menu-icon {
    display: grid;
    gap: 5px;
    width: 26px;
  }

  .menu-icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    padding: 110px 34px 45px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: clamp(31px, 7vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .site-nav .nav-cta {
    margin-top: 28px;
    padding: 16px 18px;
    color: var(--ink);
    background: var(--acid);
    font-size: 18px;
  }

  .menu-open .brand {
    position: relative;
    z-index: 22;
    color: var(--white);
  }

  .menu-open .menu-toggle {
    color: var(--white);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 62px 24px 38px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    margin: 58px 0 40px;
  }

  .hero-intro {
    margin-bottom: 55px;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .hero-note {
    position: static;
    margin-top: 27px;
  }

  .section-pad {
    padding-right: 24px;
    padding-left: 24px;
  }

  .statement,
  .section-heading,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .statement-copy {
    grid-template-columns: 1fr;
  }

  .statement-copy p:last-child {
    font-size: 18px;
  }

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

  .process-card {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .feature-image {
    width: min(78%, 620px);
  }

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

  .contact {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .legal-page {
    padding-right: 24px;
    padding-left: 24px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

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

  .site-footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .project-large {
    grid-column: auto;
  }

  .project-media,
  .project-large .project-media,
  .project-media.portrait {
    aspect-ratio: 4 / 3;
    height: auto;
  }

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

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

  .contact-details div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-logo-frame {
    width: 128px;
    height: 63px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(50px, 14.5vw, 68px);
    overflow-wrap: anywhere;
  }

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

  .hero-media {
    aspect-ratio: 5 / 6;
    height: auto;
    min-height: 0;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-media figcaption {
    flex-direction: column;
    gap: 4px;
  }

  .section-pad {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .process-card {
    min-height: 320px;
    padding-right: 18px;
    padding-left: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .feature-image {
    width: calc(100% - 16px);
  }

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

  .project-large {
    grid-column: auto;
  }

  .project-media,
  .project-large .project-media,
  .project-media.portrait {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .project-large .project-media img {
    object-position: 68% center;
  }

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

  .engagement-card {
    grid-template-columns: 42px 1fr;
  }

  .engagement-card p {
    grid-column: 2;
  }

  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 18px;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .legal-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .legal-back {
    font-size: 11px;
  }

  .legal-hero h1 {
    overflow-wrap: anywhere;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
