:root {
  --color-ink: #111111;
  --color-muted: #6f6a63;
  --color-line: #dedbd5;
  --color-paper: #f7f4ee;
  --color-white: #ffffff;
  --color-accent: #d36a38;
  --font-display: "Geist", sans-serif;
  --font-mono: "Geist Mono", monospace;
  --page-pad: clamp(18px, 4vw, 72px);
  --section-gap: clamp(72px, 10vw, 160px);
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  font-variation-settings: "wght" 430;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-ink);
  color: var(--color-white);
  padding: 10px 14px;
}

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

.site-nav {
  position: fixed;
  z-index: 140;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px var(--page-pad);
  background: color-mix(in srgb, var(--color-paper) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-line) 70%, transparent);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-phone,
.eyebrow,
.project-card__meta,
.contact-details span,
.contact-form span,
.site-footer {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .78rem;
  font-weight: 600;
}

.brand img {
  width: 28px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
  font-size: .72rem;
  font-weight: 500;
}

.nav-links a,
.nav-phone,
.site-footer a {
  position: relative;
}

.nav-links a::after,
.nav-phone::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

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

.nav-phone {
  justify-self: end;
  font-size: .72rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--color-ink);
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .35s var(--ease);
}

.menu-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 96px var(--page-pad) 32px;
  color: var(--color-white);
  background: var(--color-ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__inner {
  display: grid;
  gap: 20px;
  width: min(100%, 520px);
}

.mobile-menu a {
  font-size: clamp(2rem, 12vw, 4.8rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.06em;
}

.mobile-phone {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--color-white) 42%, transparent);
  border-radius: 999px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .85rem !important;
  letter-spacing: .08em !important;
}

.hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: clamp(24px, 5vw, 80px);
  min-height: 82svh;
  padding: clamp(116px, 15vh, 168px) var(--page-pad) clamp(36px, 8vh, 96px);
  align-items: end;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 clamp(16px, 2.4vw, 32px);
  color: var(--color-muted);
  font-size: .76rem;
  font-weight: 600;
}

.hero h1,
.section-title {
  margin: 0;
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: .88;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 12.4vw, 12.5rem);
  text-transform: uppercase;
}

.hero h1 span,
.section-title span {
  color: var(--color-accent);
}

.hero-meta {
  align-self: end;
  max-width: 420px;
}

.hero-meta p {
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.65vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
  font-weight: 650;
  transition: color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}

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

.button-dark {
  color: var(--color-white);
  background: var(--color-ink);
}

.button-dark:hover {
  color: var(--color-ink);
  background: transparent;
}

.button-light:hover {
  color: var(--color-white);
  background: var(--color-ink);
}

.hero-image-section {
  padding: 0 var(--page-pad);
}

.hero-image-section img {
  height: clamp(420px, 72vh, 860px);
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}

.section {
  padding: var(--section-gap) var(--page-pad);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(18px, 3vw, 44px);
}

.section-header .eyebrow {
  margin: 0;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr minmax(260px, .75fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.intro-grid > *,
.project-grid > * {
  min-width: 0;
}

.section-title {
  max-width: 13ch;
  font-size: clamp(2.4rem, 7.6vw, 7.8rem);
  text-wrap: balance;
}

.section-title.compact {
  max-width: 10ch;
  font-size: clamp(2.6rem, 6.2vw, 6.8rem);
}

.section-copy,
.large-text,
.about-text {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}

.section-copy {
  max-width: 620px;
}

.intro-sketch {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 720px;
  margin: 0 0 0 auto;
  padding: clamp(8px, 1.4vw, 18px) 0 0;
}

.intro-sketch-art {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  opacity: .98;
  transform-origin: center;
}

.sketch-line {
  fill: none;
  stroke: var(--color-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  opacity: 0;
  vector-effect: non-scaling-stroke;
}

.sketch-grid {
  opacity: 0;
  stroke: color-mix(in srgb, var(--color-line) 70%, transparent);
  stroke-width: 1;
  stroke-dasharray: 4 12;
  stroke-dashoffset: 0;
}

.sketch-wall {
  stroke-width: 2;
}

.sketch-accent {
  stroke: var(--color-accent);
  stroke-width: 2.4;
}

.sketch-dim {
  stroke: color-mix(in srgb, var(--color-muted) 62%, transparent);
  stroke-width: 1.2;
}


.intro-sketch.is-visible .intro-sketch-art {
  animation: sketch-settle 1s var(--ease) both;
}

.intro-sketch.is-visible .sketch-grid {
  animation: sketch-grid-in 1.3s var(--ease) .1s forwards;
}

.intro-sketch.is-visible .sketch-wall {
  animation: sketch-draw 2.5s var(--ease) .3s forwards;
}

.intro-sketch.is-visible .sketch-accent {
  animation:
    sketch-draw 2.2s var(--ease) 1.2s forwards,
    sketch-accent-pulse 4s ease-in-out 4.4s infinite;
}

.intro-sketch.is-visible .sketch-dim {
  animation: sketch-draw 1.75s var(--ease) 2.25s forwards;
}



.intro-sketch.is-visible path.sketch-wall:nth-of-type(4) { animation-delay: .43s; }
.intro-sketch.is-visible path.sketch-wall:nth-of-type(5) { animation-delay: .56s; }
.intro-sketch.is-visible path.sketch-wall:nth-of-type(6) { animation-delay: .7s; }
.intro-sketch.is-visible path.sketch-wall:nth-of-type(7) { animation-delay: .83s; }
.intro-sketch.is-visible path.sketch-wall:nth-of-type(8) { animation-delay: .96s; }
.intro-sketch.is-visible path.sketch-wall:nth-of-type(9) { animation-delay: 1.1s; }

.intro-sketch.is-visible path.sketch-accent:nth-of-type(10) { animation-delay: 1.3s, 4.4s; }
.intro-sketch.is-visible path.sketch-accent:nth-of-type(11) { animation-delay: 1.46s, 4.4s; }
.intro-sketch.is-visible path.sketch-accent:nth-of-type(12) { animation-delay: 1.62s, 4.4s; }
.intro-sketch.is-visible path.sketch-accent:nth-of-type(13) { animation-delay: 1.78s, 4.4s; }
.intro-sketch.is-visible path.sketch-accent:nth-of-type(14) { animation-delay: 1.94s, 4.4s; }
.intro-sketch.is-visible path.sketch-accent:nth-of-type(15) { animation-delay: 2.1s, 4.4s; }
.intro-sketch.is-visible path.sketch-accent:nth-of-type(16) { animation-delay: 2.26s, 4.4s; }
.intro-sketch.is-visible path.sketch-accent:nth-of-type(17) { animation-delay: 2.42s, 4.4s; }
.intro-sketch.is-visible path.sketch-accent:nth-of-type(18) { animation-delay: 2.58s, 4.4s; }

.intro-sketch.is-visible path.sketch-dim:nth-of-type(19) { animation-delay: 2.66s; }
.intro-sketch.is-visible path.sketch-dim:nth-of-type(20) { animation-delay: 2.82s; }
.intro-sketch.is-visible path.sketch-dim:nth-of-type(21) { animation-delay: 3s; }


@keyframes sketch-settle {
  from {
    opacity: .78;
    transform: translateY(10px) scale(.975);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sketch-grid-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes sketch-draw {
  from {
    opacity: 0;
    stroke-dashoffset: 1200;
  }

  12% {
    opacity: 1;
  }

  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes sketch-accent-pulse {
  0%, 100% {
    stroke-opacity: 1;
  }

  50% {
    stroke-opacity: .58;
  }
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(42px, 7vw, 96px);
  overflow: hidden;
  background: color-mix(in srgb, var(--color-white) 44%, transparent);
  border: 1px solid var(--color-line);
  border-radius: clamp(18px, 2.4vw, 34px);
}

.stats-grid article {
  display: flex;
  min-height: clamp(112px, 10vw, 158px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(22px, 2.8vw, 36px);
  border-right: 1px solid var(--color-line);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  margin: 0 0 clamp(14px, 1.4vw, 22px);
  font-size: clamp(2.55rem, 5.2vw, 5.7rem);
  letter-spacing: -.055em;
  line-height: .76;
}

.stats-grid span {
  max-width: 14ch;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.services-section {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: start;
  background: var(--color-white);
}

.service-image {
  position: sticky;
  top: 104px;
  margin: 0;
}

.service-image img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.large-text {
  max-width: 680px;
  margin: clamp(22px, 3vw, 42px) 0 clamp(34px, 5vw, 68px);
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-line);
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--color-line);
}

.service-row h3 {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  letter-spacing: -.025em;
}

.service-row p {
  max-width: 620px;
  margin: 0;
  color: var(--color-muted);
}

.projects-section {
  background: var(--color-paper);
}

.project-grid {
  display: grid;
  grid-template-columns: .8fr 1fr 1.15fr;
  grid-auto-rows: minmax(300px, auto);
  gap: clamp(14px, 1.6vw, 24px);
}

.project-intro {
  grid-column: span 2;
  padding: 0 clamp(14px, 2vw, 24px) clamp(18px, 3vw, 42px) 0;
  align-self: end;
}

.project-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(18px, 2.3vw, 34px);
  color: var(--color-white);
  isolation: isolate;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgb(0 0 0 / 72%) 100%);
}

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

.project-card:hover img {
  transform: scale(1.055);
  filter: saturate(.85) contrast(1.08);
}

.project-card--tall {
  min-height: 620px;
  grid-row: span 2;
}

.project-card--wide {
  min-height: 380px;
  grid-column: span 2;
}

.project-card__meta {
  margin-bottom: 12px;
  color: rgb(255 255 255 / 78%);
  font-size: .72rem;
}

.project-card strong {
  max-width: 12ch;
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: .86;
  text-wrap: balance;
}

.project-card small {
  max-width: 420px;
  margin-top: 18px;
  color: rgb(255 255 255 / 82%);
  font-size: .95rem;
}

.about-section {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(32px, 8vw, 128px);
  background: var(--color-ink);
  color: var(--color-white);
}

.about-section .eyebrow,
.about-section .about-text {
  color: rgb(255 255 255 / 70%);
}

.about-text {
  max-width: 780px;
}

.about-text p {
  margin: 0 0 1.2em;
}

.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: var(--section-gap) var(--page-pad) clamp(64px, 8vw, 112px);
  background: var(--color-white);
}

.cta-title {
  max-width: 16ch;
}

.round-link {
  display: grid;
  width: clamp(86px, 12vw, 168px);
  height: clamp(86px, 12vw, 168px);
  place-items: center;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
  font-size: clamp(2rem, 4vw, 5rem);
  transition: color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}

.round-link:hover {
  color: var(--color-white);
  background: var(--color-ink);
  transform: rotate(10deg);
}

.contact-section {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(34px, 8vw, 124px);
  padding: 0 var(--page-pad) var(--section-gap);
  background: var(--color-white);
}

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

.contact-details span,
.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: .72rem;
  font-weight: 600;
}

.contact-details a,
.contact-details p {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 3.3rem);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;
  padding: 12px 0 16px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--color-ink);
}

.privacy-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px !important;
}

.privacy-row input {
  width: auto;
  margin-top: 3px;
}

.privacy-row span {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.45;
}

.form-submit {
  justify-self: start;
  min-width: 220px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--page-pad);
  color: rgb(255 255 255 / 72%);
  background: var(--color-ink);
  font-size: .7rem;
}

.site-footer div {
  display: flex;
  gap: 24px;
}

.cursor-preview {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 140;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgb(17 17 17 / 18%);
  border-radius: 999px;
  box-shadow: 0 26px 80px rgb(0 0 0 / 18%);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate3d(-50%, -50%, 0) scale(.74);
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}

.cursor-preview.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-delay {
  transition-delay: .12s;
}

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

@media (min-width: 1081px) {
  .intro-grid {
    grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
    gap: clamp(32px, 4vw, 72px);
    align-items: center;
  }

  .intro-sketch {
    max-width: 820px;
    width: min(50vw, 820px);
    transform: translateY(10px);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-meta {
    max-width: 680px;
  }

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

  .service-image {
    position: relative;
    top: auto;
  }

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

  .project-intro {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 14px;
    --section-gap: 68px;
  }

  .site-nav {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand span {
    font-size: .72rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 104px var(--page-pad) 34px;
  }

  .hero-copy,
  .hero-meta {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 16vw, 4.1rem);
    line-height: .9;
  }

  .hero-meta p {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-image-section {
    padding: 0;
  }

  .hero-image-section img {
    height: 58svh;
  }

  .intro-grid,
  .services-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-title,
  .section-title.compact {
    max-width: 100%;
    width: 100%;
    font-size: clamp(2.1rem, 11vw, 3.6rem);
    line-height: .92;
  }

  .intro-sketch {
    max-width: none;
    width: 100%;
    margin-left: 0;
    padding-top: 8px;
  }

  .section-copy,
  .large-text,
  .about-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
  }

  .stats-grid article {
    min-height: clamp(132px, 38vw, 176px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: clamp(18px, 5vw, 24px);
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }

  .stats-grid article:nth-child(2n) {
    border-right: 0;
  }

  .stats-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stats-grid strong {
    margin-bottom: 0;
    font-size: clamp(2.15rem, 11.5vw, 3.55rem);
    line-height: .82;
    font-variant-numeric: tabular-nums;
    min-width: 0;
  }

  .stats-grid span {
    max-width: 12ch;
    text-align: left;
  }

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

  .project-intro,
  .project-card--wide {
    grid-column: auto;
  }

  .project-card,
  .project-card--tall,
  .project-card--wide {
    min-height: 72svh;
  }

  .project-card strong {
    max-width: 10ch;
    font-size: clamp(2.6rem, 13vw, 5rem);
  }

  .project-card small {
    line-height: 1.45;
  }

  .contact-cta {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 72px;
  }

  .round-link {
    justify-self: start;
    width: 96px;
    height: 96px;
  }

  .contact-details a,
  .contact-details p {
    line-height: 1.1;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand span {
    font-size: .68rem;
  }

  .mobile-menu a {
    font-size: clamp(2.2rem, 14vw, 3.8rem);
  }

  .contact-details a,
  .contact-details p {
    font-size: clamp(1.3rem, 7.2vw, 2.2rem);
  }
}

@media (hover: none) {
  .cursor-preview {
    display: none;
  }
}

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

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