@font-face {
  font-family: "Mona Sans";
  src: url("/assets/fonts/mona_sans/MonaSans_VariableFont.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Questrial";
  src: url("/assets/fonts/questrial/Questrial-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #f7f7f2;
  --paper: #000;
  --muted: #bdbdb5;
  --accent: #efff00;
  --nav: #efff00;
  --hero: #000;
  --line: rgba(239, 255, 0, 0.32);
  --panel: #151515;
  --black: #000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
[role="button"] {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 36px;
  padding: 5px 58px 4px;
  background: var(--nav);
  color: var(--black);
  border-top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

.nav,
.social {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: "Questrial", "Mona Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.social {
  display: none;
}

.nav a,
.social a,
.back-top {
  position: relative;
}

.nav a::after,
.social a::after,
.back-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--black);
  transition: transform 180ms ease;
}

.nav a:hover::after,
.social a:hover::after,
.back-top:hover::after {
  transform: scaleX(1);
}

.logo {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 0;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.masthead {
  position: relative;
  margin-top: 36px;
  height: 68vh;
  min-height: 68vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 76px 56px 58px;
  text-align: left;
  background: var(--hero);
  border-bottom: 6px solid var(--accent);
  overflow: hidden;
}

.hero-lockup {
  width: min(1220px, 100%);
}

.hero-hello,
.hero-name,
.masthead h1,
.hero-callout {
  margin: 0;
  overflow-wrap: anywhere;
}

.hero-hello {
  font-size: clamp(76px, 6.2vw, 83px);
  line-height: 0.95;
  font-weight: 650;
  color: var(--ink);
  font-family: "Questrial", "Mona Sans", Arial, sans-serif;
}

.hero-name {
  margin-top: 6px;
  color: var(--accent);
  font-size: clamp(67px, 5.65vw, 74px);
  line-height: 0.98;
  font-weight: 430;
  font-family: "Questrial", "Mona Sans", Arial, sans-serif;
}

.hero-carousel {
  position: relative;
  width: min(1180px, 100%);
  height: calc(68vh - 245px);
  min-height: 280px;
  margin-top: 8px;
  overflow: hidden;
}

.hero-callout {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  max-width: 1120px;
  font-family: "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(67px, 5.75vw, 74px);
  line-height: 0.98;
  font-weight: 820;
  color: var(--ink);
  opacity: 0;
  transform: translateY(202px) scaleX(0.92);
  transform-origin: left top;
  transition:
    transform 620ms cubic-bezier(0.2, 0.75, 0.16, 1),
    opacity 360ms ease,
    font-size 620ms cubic-bezier(0.2, 0.75, 0.16, 1),
    font-weight 620ms cubic-bezier(0.2, 0.75, 0.16, 1);
  will-change: transform, opacity;
}

.hero-callout.is-primary {
  z-index: 3;
  opacity: 1;
  transform: translateY(0) scaleX(0.92);
}

.hero-callout.is-secondary-1,
.hero-callout.is-secondary-2,
.hero-callout.is-secondary-3,
.hero-callout.is-secondary-4,
.hero-callout.is-secondary-5,
.hero-callout.is-secondary-6,
.hero-callout.is-secondary-7,
.hero-callout.is-secondary-8 {
  font-family: "Questrial", "Mona Sans", Arial, sans-serif;
  font-size: clamp(48px, 4.25vw, 55px);
  line-height: 1.02;
  font-weight: 400;
  opacity: 1;
}

.hero-callout.is-secondary-1 {
  transform: translateY(82px) scaleX(1);
}

.hero-callout.is-secondary-2 {
  transform: translateY(137px) scaleX(1);
  opacity: 0.95;
}

.hero-callout.is-secondary-3 {
  transform: translateY(192px) scaleX(1);
  opacity: 0.9;
}

.hero-callout.is-secondary-4 {
  transform: translateY(247px) scaleX(1);
  opacity: 0.84;
}

.hero-callout.is-secondary-5 {
  transform: translateY(302px) scaleX(1);
  opacity: 0.78;
}

.hero-callout.is-secondary-6 {
  transform: translateY(357px) scaleX(1);
  opacity: 0.72;
}

.hero-callout.is-secondary-7 {
  transform: translateY(412px) scaleX(1);
  opacity: 0.66;
}

.hero-callout.is-secondary-8 {
  transform: translateY(467px) scaleX(1);
  opacity: 0.6;
}

.hero-callout.is-above {
  opacity: 0;
  transform: translateY(-82px) scaleX(0.92);
}

.down-arrow {
  display: none;
}

.site-wrap {
  max-width: none;
  margin: 0 auto;
  padding: 26px 22px 64px;
  background: #fff;
  color: #000;
}

.work-heading {
  max-width: 1240px;
  margin: 0 auto 34px;
  padding: 16px 0 8px;
  text-align: center;
}

.work-heading h2 {
  margin: 0 0 20px;
  color: #050505;
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 0.98;
  font-weight: 820;
}

.work-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.work-filter {
  min-width: 64px;
  min-height: 30px;
  padding: 5px 16px 6px;
  border: 0;
  border-radius: 11px;
  background: #5a5a5a;
  color: #fff;
  font: 800 14px/1 "Mona Sans", Arial, sans-serif;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.work-filter.active {
  background: var(--accent);
  color: #000;
}

.work-filter:not(.active):hover,
.work-filter:not(.active):focus-visible {
  background: #2c2c2c;
}

.work-filter:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

.project-grid {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.project-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.project-cover:hover img {
  transform: scale(1.04);
  filter: saturate(0.95) contrast(0.95);
}

.project-cover .details {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: var(--black);
  text-align: center;
  background: rgba(239, 255, 0, 0.92);
  opacity: 0;
  transition: opacity 180ms ease;
}

.project-cover:hover .details,
.project-cover:focus-visible .details {
  opacity: 1;
}

.project-cover strong {
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 900;
}

.project-category {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-tags,
.case-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.project-tags {
  max-width: 92%;
  margin-top: 2px;
}

.project-tags span,
.case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font: 850 10px/1 "Mona Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.project-tags span {
  color: rgba(0, 0, 0, 0.76);
}

.page-main {
  min-height: calc(100vh - 110px);
  padding: 92px 48px 64px;
  background: var(--paper);
}

.content-panel {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 42px;
  background: #101010;
  border: 1px solid var(--line);
}

.content-panel h1 {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 0.95;
  font-weight: 900;
}

.content-panel p {
  margin: 0 auto 15px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.18;
  font-weight: 500;
}

.contact-line {
  margin-top: 28px;
  color: var(--accent);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-main {
  min-height: 100vh;
  padding: 28vh 24px 64px;
  background: #efefef;
  color: #000;
}

body[data-page="contact"],
body[data-page="contact"] [data-main] {
  background: #efefef;
}

.contact-panel {
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
}

.contact-panel h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 51px);
  line-height: 1;
  font-weight: 430;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 36px;
  font-size: clamp(17px, 1.9vw, 19px);
  line-height: 1.26;
  font-weight: 400;
}

.contact-lines a {
  width: fit-content;
  margin: 0 auto;
}

.contact-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 14px;
  color: #000;
}

.contact-linkedin svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.contact-linkedin:hover,
.contact-linkedin:focus-visible {
  color: #424242;
}

body[data-page="contact"] .footer {
  display: none;
}

.about-main {
  position: relative;
  min-height: 100vh;
  padding: 62px 48px 96px;
  background: #efefef;
  color: #000;
}

.about-layout {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.about-layout h1 {
  margin: 0 0 36px;
  color: #000;
  font-family: "Questrial", "Mona Sans", Arial, sans-serif;
  font-size: clamp(52px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 400;
  text-align: center;
}

.about-intro {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.about-copy {
  max-width: 548px;
  min-width: 0;
  text-align: left;
}

.about-copy p {
  margin: 0 0 13px;
  color: #000;
  font-size: clamp(20px, 1.72vw, 23px);
  line-height: 1.24;
  font-weight: 430;
  overflow-wrap: anywhere;
}

.about-image {
  margin: 0;
  width: 176px;
  aspect-ratio: 1 / 1.35;
  overflow: hidden;
  background: #d8d8d8;
  border: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.career-history {
  position: relative;
  max-width: 760px;
  margin: 34px auto 0;
}

.career-history h2 {
  margin: 0 0 38px;
  color: #000;
  font-family: "Questrial", "Mona Sans", Arial, sans-serif;
  font-size: clamp(45px, 4.8vw, 60px);
  line-height: 0.98;
  font-weight: 400;
  text-align: center;
}

.career-list {
  display: grid;
  gap: 34px;
}

.career-item {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.career-years {
  padding-top: 4px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 760;
  text-transform: uppercase;
}

.career-detail h3 {
  margin: 0;
  color: #000;
  font-family: "Questrial", "Mona Sans", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 0.96;
  font-weight: 400;
}

.career-place {
  margin-top: 6px;
  color: #000;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 850;
  text-transform: uppercase;
}

.career-detail p {
  margin: 12px 0 0;
  color: #000;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.28;
  font-weight: 350;
  overflow-wrap: anywhere;
}

.case-study {
  background: #efefef;
  color: #000;
}

.case-hero {
  padding: 88px 48px 52px;
  text-align: left;
  background: var(--black);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.case-kicker {
  max-width: 1120px;
  margin: 0 auto 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-hero h1 {
  max-width: 1120px;
  margin: 0 auto 12px;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 0.94;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.case-hero p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.12;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.case-tags {
  max-width: 1120px;
  margin: 24px auto 0;
  justify-content: flex-start;
}

.case-tags span {
  min-height: 27px;
  padding: 6px 10px;
  color: var(--accent);
  font-size: 11px;
}

.case-image {
  max-width: 1180px;
  margin: 52px auto 0;
  padding: 0 48px;
}

.case-video-link {
  position: relative;
  display: block;
  color: inherit;
}

.case-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.case-video-link img {
  transition: filter 180ms ease, transform 220ms ease;
}

.case-video-link:hover img,
.case-video-link:focus-visible img {
  filter: brightness(0.78) saturate(0.95);
}

.case-video-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(68px, 8vw, 104px);
  height: clamp(68px, 8vw, 104px);
  border-radius: 50%;
  background: rgba(239, 255, 0, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: clamp(13px, 1.55vw, 19px) solid transparent;
  border-bottom: clamp(13px, 1.55vw, 19px) solid transparent;
  border-left: clamp(21px, 2.35vw, 31px) solid #000;
  transform: translate(-38%, -50%);
}

.case-video-link:hover .play-button,
.case-video-link:focus-visible .play-button {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.06);
}

.case-content {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding: 40px 0 64px;
}

.case-section {
  margin-bottom: 42px;
  padding: 0;
  background: transparent;
  color: #000;
}

.case-section h2 {
  margin: 0 0 8px;
  color: #000;
  font-family: "Questrial", "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 36px);
  line-height: 0.96;
  font-weight: 400;
  text-transform: none;
}

.case-section p,
.case-section li {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.34;
  font-weight: 350;
  overflow-wrap: anywhere;
}

.case-section p {
  margin: 0;
}

.case-section ul {
  margin: 0;
  padding-left: 20px;
}

.case-section li + li {
  margin-top: 3px;
}

.case-button {
  display: inline-block;
  padding: 14px 18px;
  background: var(--accent);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 48px 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.case-nav a:last-child {
  text-align: right;
}

.case-nav strong {
  color: #000;
}

.mini-meta {
  margin-top: 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer {
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 48px 56px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.back-top {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    justify-items: center;
    gap: 0;
    min-height: 44px;
    padding: 5px 14px;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    font-size: 18px;
  }

  .social {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 18px 24px;
    background: var(--nav);
    border-top: 1px solid rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
    font-size: 18px;
    justify-content: center;
  }

  .nav a {
    display: block;
    width: min(320px, 100%);
    padding: 14px 0;
    text-align: center;
  }

  .hamburger {
    display: flex;
    grid-column: 3;
    grid-row: 1;
  }

  .menu-open .nav {
    display: flex;
  }

  .masthead {
    margin-top: 44px;
    min-height: 610px;
    padding: 96px 22px 58px;
  }

  .hero-carousel {
    height: 430px;
    min-height: 430px;
  }

  .hero-callout {
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 39px);
    line-height: 0.98;
    transform: translateY(220px) scaleX(0.92);
  }

  .hero-callout.is-primary {
    transform: translateY(0) scaleX(0.92);
  }

  .hero-callout.is-secondary-1,
  .hero-callout.is-secondary-2,
  .hero-callout.is-secondary-3,
  .hero-callout.is-secondary-4,
  .hero-callout.is-secondary-5,
  .hero-callout.is-secondary-6,
  .hero-callout.is-secondary-7 {
    font-size: clamp(32px, 9.2vw, 41px);
  }

  .hero-callout.is-secondary-1 {
    transform: translateY(112px) scaleX(1);
  }

  .hero-callout.is-secondary-2 {
    transform: translateY(155px) scaleX(1);
  }

  .hero-callout.is-secondary-3 {
    transform: translateY(198px) scaleX(1);
  }

  .hero-callout.is-secondary-4 {
    transform: translateY(241px) scaleX(1);
  }

  .hero-callout.is-secondary-5 {
    opacity: 0.78;
    transform: translateY(284px) scaleX(1);
  }

  .hero-callout.is-secondary-6 {
    opacity: 0.7;
    transform: translateY(327px) scaleX(1);
  }

  .hero-callout.is-secondary-7 {
    opacity: 0.62;
    transform: translateY(370px) scaleX(1);
  }

  .hero-callout.is-secondary-8 {
    opacity: 0;
    transform: translateY(420px) scaleX(1);
  }

  .hero-callout.is-above {
    transform: translateY(-80px) scaleX(0.92);
  }

  .hero-hello,
  .hero-name {
    font-size: clamp(48px, 13.8vw, 62px);
  }

  .about-layout {
    max-width: 620px;
    width: 100%;
  }

  .about-main {
    padding-top: 104px;
    padding-left: 22px;
    padding-right: 22px;
    overflow-x: hidden;
  }

  .about-intro,
  .career-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-intro {
    justify-items: center;
  }

  .about-copy {
    max-width: min(380px, calc(100vw - 44px));
    width: 100%;
    text-align: center;
  }

  .about-copy p {
    font-size: 20px;
    max-width: min(380px, calc(100vw - 44px));
  }

  .about-image {
    width: min(260px, 68vw);
  }

  .career-history {
    max-width: 620px;
    width: 100%;
  }

  .career-history h2 {
    max-width: min(310px, calc(100vw - 44px));
    font-size: clamp(38px, 11vw, 44px);
    text-align: left;
    overflow-wrap: anywhere;
  }

  .career-years {
    padding-top: 0;
  }

  .case-hero {
    padding: 78px 22px 42px;
    text-align: left;
  }

  .case-hero h1 {
    max-width: 100%;
    font-size: 38px;
    word-break: break-word;
  }

  .case-hero p {
    max-width: 100%;
    font-size: 17px;
  }

  .case-image,
  .case-content,
  .case-nav {
    padding-left: 22px;
    padding-right: 22px;
  }

  .case-image {
    margin-top: 30px;
  }

  .case-content {
    padding-top: 34px;
    max-width: none;
    overflow: visible;
  }

  .case-section h2 {
    font-size: 32px;
  }

  .case-section p,
  .case-section li {
    font-size: 16px;
  }

  .case-nav {
    grid-template-columns: 1fr;
  }

  .case-nav a,
  .case-nav a:last-child {
    text-align: center;
  }

  .site-wrap,
  .page-main,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .project-cover {
    aspect-ratio: 16 / 8.8;
  }
}

@media (max-width: 560px) {
  .contact-main {
    padding-top: 30vh;
  }

  .contact-panel h1 {
    font-size: clamp(34px, 11vw, 43px);
  }

  .contact-lines {
    margin-top: 32px;
  }

  .site-header {
    align-items: center;
  }

  .nav {
    gap: 0;
    font-size: 18px;
  }

  .logo {
    font-size: 17px;
  }

  .masthead {
    min-height: 610px;
  }

  .hero-name {
    margin-top: 14px;
  }

  .hero-callout.is-secondary-1,
  .hero-callout.is-secondary-2,
  .hero-callout.is-secondary-3,
  .hero-callout.is-secondary-4,
  .hero-callout.is-secondary-5,
  .hero-callout.is-secondary-6,
  .hero-callout.is-secondary-7 {
    font-size: clamp(33px, 9.2vw, 41px);
  }

  .site-wrap {
    padding-top: 18px;
  }

  .work-filter {
    min-width: 44px;
    min-height: 28px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .work-filters {
    gap: 4px;
  }

  .project-cover {
    aspect-ratio: 4 / 3;
  }

  .footer {
    display: block;
  }

  .back-top {
    display: inline-block;
    margin-top: 16px;
  }
}
