@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&display=swap");

:root {
  --green: #2afb00;
  --black: #121212;
  --cream: #ecf1ea;
  --white: #ffffff;
  --muted: rgba(18, 18, 18, 0.62);
  --line: rgba(18, 18, 18, 0.16);
  --grid-margin: 20px;
  --grid-gap: 20px;
  --grid-columns: 12;
  --grid-column: calc((var(--container) - (var(--grid-gap) * (var(--grid-columns) - 1))) / var(--grid-columns));
  --container: min(1000px, calc(100% - (var(--grid-margin) * 2)));
  --narrow: var(--container);
  --hero-strip-height: 60px;
  --marquee-gap: 18px;
  --marquee-duration: 24s;
  --tools-gap: 8px;
  --transition: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.smooth-scroll-active {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

body.contact-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.page-shell {
  overflow-x: clip;
  overflow-y: visible;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(42, 251, 0, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 25;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  width: var(--narrow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid #eeeeee;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-inner {
  height: 74px;
  padding-top: 30px;
  padding-bottom: 20px;
}

.footer-inner {
  min-height: 42px;
  padding: 8px 0;
}

.brand,
.site-nav a,
.nav-contact,
.footer-links a {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: color var(--transition);
}

.brand-logo {
  width: 132px;
  height: 24px;
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a,
.nav-contact {
  position: relative;
  min-width: max-content;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  color: var(--black);
}

.site-nav a,
.nav-contact,
.footer-links a {
  display: inline-block;
  overflow: visible;
  padding-bottom: 5px;
  margin-bottom: -5px;
}

.flip-text {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  vertical-align: bottom;
}

.flip-letter {
  position: relative;
  display: inline-block;
  line-height: 1;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--flip-index) * 16ms);
}

.flip-letter::after {
  content: attr(data-char);
  position: absolute;
  left: 0;
  top: 100%;
}

@media (hover: hover) and (pointer: fine) and (min-width: 721px) {
  .site-nav a:hover .flip-letter,
  .site-nav a:focus-visible .flip-letter,
  .nav-contact:hover .flip-letter,
  .nav-contact:focus-visible .flip-letter,
  .footer-links a:hover .flip-letter,
  .footer-links a:focus-visible .flip-letter {
    transform: translateY(-100%);
  }
}

.site-nav a::before,
.nav-contact::before {
  content: attr(data-text);
  display: block;
  height: 0;
  overflow: hidden;
  font-weight: 700;
  visibility: hidden;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-contact:hover,
.nav-contact:focus-visible {
  font-weight: 700;
}

.nav-cta {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-nav a::after,
.nav-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-contact:hover::after,
.nav-contact:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-1px);
}

.nav-mobile-contact {
  display: none;
}

.nav-menu-links {
  display: contents;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 260ms ease;
}

.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: min(872px, calc(100% - 40px));
  min-height: 561px;
  background: var(--green);
  color: var(--black);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.contact-modal.is-open .contact-modal-backdrop {
  opacity: 1;
}

.contact-modal.is-open .contact-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 34px;
  right: 37px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}

.contact-close-label {
  position: relative;
  text-decoration: none;
}

.contact-close-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.contact-modal-close:hover .contact-close-label::after,
.contact-modal-close:focus-visible .contact-close-label::after {
  transform: scaleX(1);
}

.contact-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 561px;
  padding: 112px 99px 97px;
}

.contact-modal-link {
  width: fit-content;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 4.4vw, 4.1rem);
  font-weight: 500;
  line-height: 1.1;
}

.contact-modal-link + .contact-modal-link {
  margin-top: 34px;
}

.contact-modal-caption {
  margin: auto 0 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background: #121212;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span + span {
  margin-top: 5px;
}

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

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

.hero {
  height: calc(100svh - 74px);
  min-height: calc(100svh - 74px);
  padding-top: 80px;
  display: flex;
  position: relative;
  overflow: visible;
}

.hero .container {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  position: relative;
  padding-bottom: var(--hero-strip-height);
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 1 auto;
  position: relative;
}

.hero-title-wrap {
  overflow: visible;
  position: relative;
  width: max-content;
  min-width: 0;
  max-width: none;
  left: 50%;
  margin-left: 0;
  --title-parallax-y: 0px;
}

.hero-title-wrap.reveal {
  transform: translateX(-50%) translateY(calc(20px + var(--title-parallax-y)));
}

.hero-title-wrap.reveal.is-visible {
  transform: translateX(-50%) translateY(var(--title-parallax-y));
}

.hero-title {
  margin: 0 0 6px;
  width: max-content;
  min-width: 0;
  font-family: "PT Serif", Georgia, serif;
  font-size: 145px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
  text-align: center;
  white-space: nowrap;
}

.hero-ai-note {
  width: fit-content;
  margin: 22px auto 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--black);
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
  text-align: center;
}

.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 310px;
  margin-top: auto;
  padding-top: 0;
}

.hero-side {
  position: absolute;
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  --side-parallax-y: -10px;
  transform: translateY(var(--side-parallax-y));
  z-index: 7;
}

.hero-side-left {
  left: 22px;
}

.hero-side-right {
  right: 22px;
}

.hero-side-copy {
  font-family: "PT Sans", "Lato", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  order: 1;
}

.hero-open-icon {
  width: 32px;
  height: 32px;
  animation: pulse-open 1.8s ease-in-out infinite;
  order: 2;
}

.hero-linkedin {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: "PT Sans", "Lato", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.hero-linkedin span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  order: 1;
}

.hero-linkedin-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  order: 2;
  transition: opacity 220ms ease;
}

.hero-linkedin-icon-default {
  position: relative;
  z-index: 1;
}

.hero-linkedin-icon-hover {
  position: absolute;
  bottom: 0;
  opacity: 0;
  z-index: 2;
}

.hero-linkedin:hover .hero-linkedin-icon-default,
.hero-linkedin:focus-visible .hero-linkedin-icon-default {
  opacity: 0;
}

.hero-linkedin:hover .hero-linkedin-icon-hover,
.hero-linkedin:focus-visible .hero-linkedin-icon-hover {
  opacity: 1;
}

.hero-head {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 304px;
  margin: 0 auto;
  z-index: 1;
}

.hero-hands-layer {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 1000px;
  height: 304px;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.portrait-face-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 414px;
  height: auto;
  --face-parallax-y: 56px;
  transform: translateX(-50%) translateY(var(--face-parallax-y));
  z-index: 1;
}

.portrait-hand-image {
  position: absolute;
  bottom: calc(var(--hero-strip-height) * -0.78 - 20px);
  width: 200px;
  height: auto;
  z-index: 1;
}

.portrait-hand-left {
  left: 0;
}

.portrait-hand-right {
  right: 0;
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: var(--hero-strip-height);
  transform: translateX(-50%);
  overflow: hidden;
  background: var(--green);
  z-index: 5;
}

.hero-strip-track {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  min-width: max-content;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: marquee var(--marquee-duration) linear infinite;
}

.hero-strip-group {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  padding-right: var(--marquee-gap);
}

.hero-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--black);
  flex: 0 0 auto;
}

.intro {
  position: relative;
  z-index: 6;
  padding: 200px 0 150px;
  background: var(--black);
  color: var(--white);
}

.intro-inner {
  width: var(--container);
}

.intro p {
  margin: 0;
  max-width: none;
  font-family: "PT Serif", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.34;
  text-align: center;
}

.tools,
.metrics {
  padding: 150px 0;
  background: var(--white);
}

.project-tech-stack {
  background: #ecf1ea;
}

.portfolio,
.bio {
  padding: 150px 0;
  background: var(--cream);
}

.section-label {
  margin-bottom: 50px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #121212;
}

.tools-slider {
  position: relative;
  width: 100%;
  padding-bottom: 44px;
  transform: translateY(-10px);
}

.tools-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: var(--tools-gap);
  align-items: center;
  justify-items: center;
  width: 100%;
  position: relative;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  height: 200px;
  min-height: 200px;
  overflow: visible;
}

.tool-card img {
  width: 100%;
  height: auto;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 9.12px 37.99px rgba(113, 116, 96, 0.15));
  --tool-base-scale: 0.9;
  --tool-active-scale: 1;
  --tool-icon-y: 0px;
  transform: translateY(var(--tool-icon-y)) scale(calc(var(--tool-base-scale) * var(--tool-active-scale)));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tool-card.is-active img {
  --tool-active-scale: 1.12;
}

.tool-label {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  text-align: center;
}

.tools-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 24px solid var(--green);
  transform: translateX(-50%);
  transition: left 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-list,
.metric-list {
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.project-row,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}

.project-row {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 50px;
  font-weight: 500;
  transition: padding-left var(--transition);
}

.project-row:hover,
.project-row:focus-visible {
  padding-left: 10px;
}

.project-arrow {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.more-button,
.project-outline-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 0;
  height: 60px;
  padding: 0 22px;
  border: 1px solid rgba(18, 18, 18, 0.24);
  border-radius: 999px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 0 0 0 rgba(18, 18, 18, 0.24);
  transition: box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
  color: var(--black);
}

.more-button {
  margin: 28px auto 0;
  min-width: 180px;
}

.project-outline-link {
  margin-top: 28px;
  margin-bottom: 60px;
  margin-left: 0;
  margin-right: 0;
}


.more-button:hover,
.more-button:focus-visible,
.project-outline-link:hover,
.project-outline-link:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(18, 18, 18, 0.24);
}


.project-hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: min(32vw, 460px);
  aspect-ratio: 920 / 500;
  overflow: hidden;
  border-radius: 20px;
  background: #f1f1f1;
  box-shadow: 0 28px 60px rgba(18, 18, 18, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.96);
  transform-origin: center;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-hover-preview.is-visible {
  opacity: 1;
  visibility: visible;
}

.project-hover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-row strong {
  min-width: 0;
  margin-right: 20px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
}

.metric-row span {
  flex: 1;
  text-align: left;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted);
}

.bio-inner {
  width: min(var(--container), calc(100% - 40px));
  text-align: center;
}

.bio-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  border-radius: 999px;
  object-fit: cover;
}

.bio-text {
  margin: 0 auto 18px;
  max-width: none;
  font-family: "PT Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}

.bio-signature {
  margin-top: 60px;
  font-family: "PT Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.bio-role {
  margin-top: 16px;
  font-family: "PT Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
}

.cv-banner {
  background: var(--green);
  padding-top: 50px;
  padding-bottom: 32px;
}

.cv-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 170px;
  font-family: "PT Sans", "Lato", Arial, sans-serif;
  font-size: 90px;
  font-weight: 400;
}

.cv-link-text {
  position: relative;
}

.cv-link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.cv-link:hover .cv-link-text::after,
.cv-link:focus-visible .cv-link-text::after {
  transform: scaleX(1);
}

.cv-arrow {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.footer-divider {
  display: none;
}

.site-footer {
  padding: 0 0 36px;
  background: var(--green);
}

.footer-inner {
  padding-top: 40px;
  align-items: flex-start;
  border-top: 1px solid #ababab;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-location {
  margin: 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.footer-links a,
.footer-contact a {
  position: relative;
}

.footer-links a {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
}

.footer-contact a {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.overview-main {
  height: calc(100svh - 74px);
  padding: 18px 0 24px;
  overflow: hidden;
}

.page-overview {
  overflow: hidden;
}

.page-overview .page-shell {
  min-height: 100svh;
}

.overview-projects {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.overview-links {
  margin: 0 0 18px;
  max-width: none;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 3.9vw, 48px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.overview-grid-bleed {
  flex: 1;
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.overview-link,
.overview-separator {
  display: inline;
}

.overview-link {
  color: rgba(18, 18, 18, 0.28);
  transition: color var(--transition);
}

.overview-link.is-active,
.overview-link:hover,
.overview-link:focus-visible {
  color: var(--black);
}

.overview-separator {
  color: rgba(18, 18, 18, 0.28);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.overview-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 1.84;
  overflow: hidden;
  background: #f3f3f3;
}

.overview-card-title {
  display: none;
}

.overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  transition: opacity var(--transition);
}

.overview-card.is-active::after,
.overview-card:hover::after,
.overview-card:focus-visible::after {
  opacity: 0;
}

.overview-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.overview-card-campeasy,
.overview-card-daily,
.overview-card-parkalot,
.overview-card-itmonks,
.overview-card-marryatville,
.overview-card-adrian {
  grid-column: auto;
  grid-row: auto;
}

.project-single {
  padding: 88px 0 80px;
}

.project-single-inner {
  display: grid;
  gap: 28px;
}

.project-single-kicker {
  margin: 0;
  font-family: "PT Sans", "Lato", Arial, sans-serif;
  font-size: 14px;
  color: rgba(18, 18, 18, 0.56);
}

.project-single h1 {
  margin: 0;
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.98;
}

.project-single img {
  width: 100%;
}

.project-template-hero {
  min-height: calc(100svh - 74px);
  padding: 0;
}

.project-template-hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  padding-top: 196px;
}

.project-template-title {
  position: absolute;
  top: 66px;
  left: 0;
  z-index: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: "PT Serif", Georgia, serif;
  font-size: 220px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  transform: translateY(var(--project-title-parallax-y, 0px));
}

.project-template-title-daily-nourish {
  font-size: clamp(128px, 13.4vw, 164px);
}

.project-page-campeasy .project-template-title {
  top: 56px;
}

.project-template-hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin-top: 0;
  overflow: hidden;
  background: transparent;
  transform: translateY(var(--project-media-parallax-y, 0px));
}

.project-template-hero-media img {
  display: block;
  width: calc(100% + 2px);
  max-width: none;
  height: auto;
  margin: -1px;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.project-template-hero-media picture,
.project-role-image-bleed picture,
.project-process-image-bleed picture,
.project-results-dashboard picture {
  display: block;
  width: 100%;
}

.project-page-itmonks .project-template-hero-media img {
  width: 100%;
  margin: 0;
}

.project-template-intro {
  padding: 0 0 56px;
}

.project-template-intro-inner {
  width: var(--container);
}

.project-template-intro p {
  margin: 0;
  text-align: center;
  font-family: "PT Serif", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.34;
  color: var(--cream);
}

.project-page .project-template-intro {
  background: var(--black);
  margin-top: -70px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.project-template-facts {
  padding: 150px 0;
  background: var(--cream);
}

.project-facts-table {
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.project-facts-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}

.project-facts-label,
.project-facts-value {
  line-height: 1.4;
}

.project-facts-label {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--black);
}

.project-facts-value {
  flex: 1;
  text-align: left;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}

.project-template-section {
  padding: 56px 0;
}

.project-template-section-role {
  padding-top: 0;
}

.project-template-section-process {
  padding-bottom: 0;
}

.project-template-section-role + .project-template-section-process {
  margin-top: -112px;
}

.project-role-layout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.project-role-image-bleed {
  grid-column: 1 / 6;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.project-role-image-bleed img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: left top;
}

.project-role-copy-wrap {
  grid-column: 6 / 13;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding-left: 0;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  transform: translateX(calc(100vw / 12));
}

.project-role-copy-wrap .project-role-card {
  width: 130%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 150px 0 0;
  text-align: left;
}

.project-page .project-role-layout {
  align-items: center;
}

.project-page .project-role-copy-wrap .project-role-card {
  padding-top: 0;
}

.project-process-layout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.project-process-copy-wrap {
  grid-column: 2 / 7;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.project-process-copy-wrap .project-split-copy {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 150px 0 0;
  text-align: left;
}

.project-template-section-legacy .project-process-image-bleed {
  margin-top: -56px;
}

.project-process-copy-wrap .project-split-copy h2 {
  margin: 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
}

.project-process-copy-wrap .project-split-copy p {
  margin: 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(18, 18, 18, 0.82);
}

.project-process-copy-wrap .project-split-copy p strong {
  font-weight: 800;
  color: var(--black);
}

.project-issue-list {
  display: grid;
  gap: 16px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.project-issue-list li {
  position: relative;
  padding-left: 52px;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(18, 18, 18, 0.82);
}

.project-issue-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 32px;
  height: 32px;
  background: url("../images/arrow-green-bg.svg") center / contain no-repeat;
}

.project-issue-list strong {
  font-weight: 800;
  color: var(--black);
}

.project-outline-link {
  white-space: nowrap;
}

.project-process-image-bleed {
  grid-column: 8 / 13;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.project-process-image-bleed img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: right top;
}

.project-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: start;
}

.project-split-copy {
  display: grid;
  gap: 18px;
}

.project-split-copy h2,
.project-results-title {
  margin: 0;
  font-family: "PT Serif", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}

.project-split-copy h3 {
  margin: 10px 0 0;
  font-family: "PT Sans", "Lato", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.project-split-copy p {
  margin: 0;
  font-family: "PT Serif", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(18, 18, 18, 0.82);
}

.project-role-card h2 {
  margin: 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
}

.project-role-card h3 {
  margin: 10px 0 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
}

.project-role-card p {
  margin: 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(18, 18, 18, 0.82);
}

.project-role-card .project-checklist li {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.project-gallery-stack,
.project-showcase-grid {
  display: grid;
  gap: 12px;
}

.project-gallery-main {
  width: 100%;
}

.project-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.project-gallery-thumbs img,
.project-showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-showcase-grid img:first-child {
  grid-column: 1 / -1;
}

.project-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-checklist li {
  position: relative;
  padding-left: 52px;
  font-family: "PT Sans", "Lato", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(18, 18, 18, 0.82);
}

.project-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 32px;
  height: 32px;
  background: url("../images/arrow-green-bg.svg") center / contain no-repeat;
}


.project-results {
  padding: 150px 0 48px;
  background: var(--black);
}

.project-results > .container,
.project-results > .container.reveal,
.project-results > .container.reveal.is-visible {
  position: relative;
  z-index: 2;
}

.project-results-title {
  margin-bottom: 28px;
  text-align: center;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: var(--cream);
}

.project-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 70px;
  margin-bottom: 70px;
}

.project-result-card {
  display: grid;
  gap: 24px;
  align-content: start;
}

.project-result-card h3 {
  margin: 0;
  font-family: "PT Sans", "Lato", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.project-result-card p {
  margin: 0;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
}

.project-result-card p strong {
  font-weight: 800;
}

.project-result-icon {
  width: 56px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2afb00, #a5ff55);
}

.project-result-icon-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.project-result-icon-emoji {
  display: block;
  width: 72px;
  height: 72px;
  font-size: 72px;
  line-height: 1;
}

.project-result-icon-up {
  clip-path: polygon(0 100%, 0 64%, 34% 64%, 34% 42%, 58% 42%, 58% 20%, 82% 20%, 82% 0, 100% 0, 100% 100%);
}

.project-result-icon-flow {
  background: linear-gradient(135deg, #6eff4f, #2afb00);
  clip-path: polygon(0 18%, 58% 18%, 58% 0, 100% 50%, 58% 100%, 58% 82%, 0 82%);
}

.project-result-icon-trust {
  background: linear-gradient(135deg, #2afb00, #d6ff7a);
  clip-path: polygon(50% 0, 100% 18%, 100% 60%, 50% 100%, 0 60%, 0 18%);
}

.project-results-dashboard {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(-300px, -30vw, -180px);
}

.project-results-dashboard img {
  width: 100%;
  height: auto;
  border: 0;
}

.project-page .cv-banner {
  position: relative;
  z-index: 0;
  margin-top: 0;
  padding-top: clamp(180px, calc(34vw - 50px), 300px);
}

.project-page-no-results-image .cv-banner {
  padding-top: 100px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

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

.masked-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.masked-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%) rotate(2deg);
  transform-origin: left bottom;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--word-index) * 28ms);
  will-change: opacity, transform;
}

.is-visible .masked-word {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-33.3333%));
  }
}

@keyframes pulse-open {
  0% {
    transform: scale(1);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.78;
  }
}

@media (max-width: 900px) {
  .hero-title {
    white-space: normal;
  }

  .hero-side-left {
    left: 8%;
  }

  .hero-side-right {
    right: 8%;
  }

  .hero-head {
    width: min(560px, 90vw);
  }

  .hero-hands-layer {
    width: min(560px, 90vw);
  }

  .tools {
    --tool-mobile-card-width: clamp(220px, 68vw, 280px);
    --tool-mobile-side-size: 100px;
    --tool-mobile-size: clamp(150px, 42vw, 160px);
    --tool-mobile-card-height: 218px;
  }

  .tools-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 34px;
    padding-bottom: 40px;
    transform: none;
  }

  .tools-slider .tool-card {
    flex: 0 0 auto !important;
    width: var(--tool-mobile-card-width) !important;
    height: var(--tool-mobile-card-height) !important;
    min-height: var(--tool-mobile-card-height) !important;
  }

  .tools-slider .tool-card img {
    width: var(--tool-mobile-side-size) !important;
    height: auto !important;
    max-width: var(--tool-mobile-side-size) !important;
    transform: none !important;
  }

  .tools-row {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    padding-inline: 0;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .tool-card {
    flex: 0 0 auto;
    width: var(--tool-mobile-card-width);
    height: var(--tool-mobile-card-height);
    min-height: var(--tool-mobile-card-height);
    gap: 10px;
    opacity: 1;
    transition: none;
  }

  .tool-card img {
    width: var(--tool-mobile-side-size);
    height: auto;
    max-width: var(--tool-mobile-side-size);
    --tool-base-scale: 1;
    --tool-active-scale: 1;
    transform: none;
  }

  .tool-card.is-active img {
    width: var(--tool-mobile-size);
    max-width: var(--tool-mobile-size);
    --tool-active-scale: 1;
    transform: none;
  }

  .tool-label {
    font-size: 13px;
    white-space: nowrap;
  }

  .tools-arrow {
    left: 50%;
    top: calc(100% - 24px);
    bottom: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .project-hover-preview {
    display: none;
  }

  .hero {
    height: calc(100svh - 80px);
    min-height: calc(100svh - 80px);
    padding-top: 52px;
  }

  .hero .container {
    padding-bottom: var(--hero-strip-height);
  }
  :root {
    --grid-margin: 16px;
    --grid-gap: 16px;
    --grid-columns: 4;
    --container: calc(100% - (var(--grid-margin) * 2));
    --grid-column: calc((var(--container) - (var(--grid-gap) * (var(--grid-columns) - 1))) / var(--grid-columns));
    --narrow: var(--container);
    --hero-strip-height: 48px;
    --marquee-gap: 14px;
    --tools-gap: 6px;
  }

  .header-inner,
  .footer-inner {
    min-height: 52px;
  }

  .header-inner {
    height: auto;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 31;
    display: block;
    padding: 36px 16px 36px;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity var(--transition),
      visibility var(--transition);
  }

  .footer-links {
    gap: 12px;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a,
  .site-nav .nav-contact {
    font-size: 36px;
    line-height: 1;
  }

  .site-nav .nav-contact {
    display: none;
  }

  .nav-menu-links {
    position: absolute;
    top: 36px;
    right: 16px;
    display: grid;
    justify-items: end;
    gap: 24px;
    width: auto;
    margin-top: 0;
    text-align: right;
  }

  .nav-mobile-contact {
    display: none;
  }

  body.nav-open .nav-mobile-contact {
    position: fixed !important;
    top: auto !important;
    right: 16px !important;
    bottom: 36px !important;
    left: auto !important;
    z-index: 999 !important;
    display: grid !important;
    justify-items: end;
    gap: 8px;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right;
    transform: none !important;
  }

  body.nav-open .nav-mobile-contact a {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
  }


  .hero-title {
    margin-bottom: 12px;
    width: 100%;
    min-width: 0;
    font-size: 64px;
    line-height: 0.94;
    white-space: normal;
    text-align: center;
  }

  .hero-ai-note {
    margin-top: 32px;
    padding: 8px 14px;
    font-size: 14px;
    white-space: normal;
    max-width: calc(100vw - 48px);
  }

  .hero-title-break {
    display: block;
  }

  .hero-title-wrap {
    width: 132vw;
    min-width: 132vw;
    max-width: none;
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%);
  }

  .hero-title-wrap.reveal,
  .hero-title-wrap.reveal.is-visible {
    transform: translateX(-50%) translateY(var(--title-parallax-y));
  }

  .hero-portrait {
    min-height: 348px;
  }

  .hero-strip-track {
    gap: 14px;
    padding: 10px 0;
    font-size: 13px;
  }

  .hero-strip-dot {
    width: 6px;
    height: 6px;
  }

  .hero-side {
    bottom: 66px;
    gap: 10px;
  }

  .hero-side-left {
    left: 16px;
  }

  .hero-side-right {
    right: 16px;
  }

  .hero-side-copy,
  .hero-linkedin {
    font-size: 14px;
  }

  .hero-open-icon,
  .hero-linkedin-icon {
    width: 28px;
    height: 28px;
  }


  .contact-modal-panel {
    width: calc(100% - 24px);
    min-height: auto;
  }

  .contact-modal-content {
    min-height: auto;
    padding: 88px 28px 34px;
  }

  .contact-modal-link {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .contact-modal-close {
    top: 18px;
    right: 20px;
  }

  .hero-head {
    width: min(100%, 360px);
    height: 330px;
  }

  .hero-hands-layer {
    width: min(100%, 360px);
    height: 196px;
  }

  .portrait-face-image {
    bottom: 50px;
    width: 268px;
  }

  .portrait-hand-image {
    width: 122px;
    bottom: calc(var(--hero-strip-height) * -0.78 + 10px);
  }

  .portrait-hand-left {
    left: 0;
  }

  .portrait-hand-right {
    right: 0;
  }

  .intro {
    padding: 48px 0 52px;
  }

  .intro p {
    font-size: 1.1rem;
  }

  .tools,
  .portfolio,
  .metrics,
  .bio {
    padding: 44px 0 54px;
  }

  .tools .section-label,
  .portfolio .section-label,
  .metrics .section-label {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .tools-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 34px;
    padding-bottom: 40px;
    transform: none;
  }

  .tools-slider .tool-card {
    flex: 0 0 auto !important;
    width: var(--tool-mobile-card-width) !important;
    height: var(--tool-mobile-card-height) !important;
    min-height: var(--tool-mobile-card-height) !important;
  }

  .tools-slider .tool-card img {
    width: var(--tool-mobile-side-size) !important;
    height: auto !important;
    max-width: var(--tool-mobile-side-size) !important;
    transform: none !important;
  }

  .tools-row {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    padding-inline: 0;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .tool-card {
    flex: 0 0 auto;
    width: var(--tool-mobile-card-width);
    height: var(--tool-mobile-card-height);
    min-height: var(--tool-mobile-card-height);
    gap: 10px;
    opacity: 1;
    transition: none;
  }

  .tool-card img {
    width: var(--tool-mobile-side-size);
    height: auto;
    max-width: var(--tool-mobile-side-size);
    --tool-base-scale: 1;
    --tool-active-scale: 1;
    transform: none;
  }

  .tool-card.is-active img {
    width: var(--tool-mobile-size);
    max-width: var(--tool-mobile-size);
    --tool-active-scale: 1;
    transform: none;
  }

  .tool-label {
    font-size: 13px;
    white-space: nowrap;
  }

  .tools-arrow {
    left: 50%;
    top: calc(100% - 24px);
    bottom: auto;
    transform: translateX(-50%);
  }

  .project-row {
    padding: 18px 0;
    font-size: 30.4px;
  }

  .project-arrow {
    width: 30px;
    height: 30px;
  }

  .metric-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .metric-row strong {
    min-width: 0;
  }

  .bio-text {
    font-size: 16px;
  }

  .cv-link {
    min-height: 118px;
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .footer-meta,
  .footer-contact {
    align-items: flex-start;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }

  .overview-main {
    height: auto;
    padding: 48px 0 36px;
  }

  .page-overview {
    overflow: auto;
  }

  .overview-links {
    display: none;
  }

  .overview-grid-bleed {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .overview-grid {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 50px;
  }

  .overview-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    overflow: visible;
  }

  .overview-card::after {
    display: none;
  }

  .overview-card-title {
    display: block;
    width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 30.4px;
    font-weight: 500;
    line-height: 1.04;
    color: var(--black);
    text-align: left;
  }

  .overview-card img {
    display: block;
    width: 100vw;
    max-width: none;
    height: 300px;
    margin-left: calc(50% - 50vw);
    object-fit: cover;
  }

  .overview-card-campeasy img,
  .overview-card-daily img,
  .overview-card-parkalot img,
  .overview-card-itmonks img {
    height: auto;
    object-fit: contain;
  }

  .overview-card-campeasy,
  .overview-card-daily,
  .overview-card-parkalot,
  .overview-card-itmonks,
  .overview-card-marryatville,
  .overview-card-adrian {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .project-single {
    padding: 48px 0 44px;
  }

  .project-template-hero {
    min-height: auto;
    padding: 0;
  }

  .project-template-hero-inner {
    position: relative;
    gap: 0;
    padding-top: 56px;
  }

  .project-template-title {
    position: absolute;
    top: 74px;
    left: 0;
    z-index: 0;
    width: 100%;
    margin: 0;
    font-size: clamp(72px, 20vw, 108px);
    line-height: 0.92;
    text-align: center;
    transform: none;
  }

  .project-template-title-daily-nourish {
    font-size: clamp(54px, 15vw, 76px);
  }

  .project-template-hero-media {
    position: relative;
    z-index: 2;
    margin-top: 62px;
  }

  .project-page-parkalot .project-template-title {
    top: 104px;
    font-size: clamp(84px, 23vw, 118px);
  }

  .project-page-campeasy .project-template-title {
    top: 64px;
  }

  .project-page-parkalot .project-template-hero-media {
    margin-top: 112px;
  }


  .project-page .project-template-intro {
    padding-top: 112px;
    padding-bottom: 68px;
  }

  .project-template-intro p {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
  }

  .project-template-facts,
  .project-template-section,
  .project-results {
    padding: 44px 0 54px;
  }

  .project-template-section-role {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .project-template-section-process {
    padding-top: 0;
    padding-bottom: 0;
  }

  .project-template-section-role + .project-template-section-process {
    margin-top: 0;
  }

  .project-facts-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    align-items: start;
    gap: 8px;
    padding: 18px 0;
  }

  .project-template-facts .section-label {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 400;
  }

  .more-button,
  .project-outline-link {
    font-size: 18px;
  }

  .project-facts-label {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 30.4px;
    font-weight: 500;
    line-height: 1.04;
  }

  .project-facts-value {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
  }

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

  .project-role-layout {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .project-page .project-role-layout {
    align-items: start;
  }

  .project-role-image-bleed {
    grid-column: 1 / -1;
    width: 100%;
  }

  .project-role-image-bleed img {
    display: block;
    width: 100vw;
    max-width: none;
    height: auto;
    margin-left: calc(50% - 50vw);
  }

  .project-role-copy-wrap {
    grid-column: 1 / -1;
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    transform: none;
  }

  .project-role-copy-wrap .project-role-card {
    width: 100%;
    padding: 0;
  }

  .project-role-card h2,
  .project-process-copy-wrap .project-split-copy h2,
  .project-results-title {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 30.4px;
    font-weight: 600;
    line-height: 1.04;
  }

  .project-results-title {
    text-align: left;
  }

  .project-role-card h3 {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
  }

  .project-role-card p,
  .project-role-card .project-checklist li,
  .project-split-copy p,
  .project-issue-list li,
  .project-result-card p {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
  }

  .project-process-copy-wrap .project-split-copy p {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
  }

  .project-checklist li {
    padding-left: 44px;
  }

  .project-checklist li::before {
    width: 24px;
    height: 24px;
    top: 0.1em;
  }

  .project-issue-list li {
    padding-left: 44px;
  }

  .project-issue-list li::before {
    width: 24px;
    height: 24px;
    top: 0.1em;
  }

  .project-process-layout {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .project-process-copy-wrap,
  .project-process-image-bleed {
    grid-column: 1 / -1;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .project-process-copy-wrap {
    order: 2;
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .project-process-image-bleed {
    order: 1;
  }

  .project-template-section-legacy .project-process-image-bleed {
    margin-top: 0;
  }

  .project-process-image-bleed img {
    display: block;
    width: 100vw;
    max-width: none;
    height: auto;
    margin-left: calc(50% - 50vw);
  }

  .project-process-copy-wrap .project-split-copy {
    width: 100%;
    padding: 0;
  }

  .project-process-copy-wrap .project-split-copy p:last-of-type {
    margin-bottom: 0;
  }

  .project-template-section-legacy .project-process-copy-wrap .project-split-copy p:last-of-type {
    margin-bottom: 44px;
  }

  .project-results-grid {
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .project-result-card {
    gap: 16px;
  }

  .project-result-icon-image {
    width: 56px;
    height: 56px;
  }

  .project-result-icon-emoji {
    width: 56px;
    height: 56px;
    font-size: 56px;
  }

  .project-results-dashboard {
    margin-bottom: -118px;
  }

  .project-page .cv-banner {
    margin-top: 0;
    padding-top: 100px;
  }

  .project-page-no-results-image .cv-banner {
    padding-top: 60px;
  }

  .project-showcase-grid,
  .project-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tools {
    --tool-mobile-active-size: 160px;
    --tool-mobile-side-size: 100px;
    --tool-mobile-side-offset: min(174px, calc(50vw - 14px));
    --tool-mobile-card-height: 242px;
  }

  .tools-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-top: 42px;
    padding-bottom: 64px;
    overflow: hidden;
    transform: none;
  }

  .tools-row {
    position: relative;
    display: block;
    width: 100%;
    height: var(--tool-mobile-card-height);
    padding-inline: 0;
    transform: none !important;
  }

  .tools-slider .tool-card {
    position: absolute;
    top: 0;
    left: 50%;
    flex: none !important;
    width: var(--tool-mobile-active-size) !important;
    height: var(--tool-mobile-card-height) !important;
    min-height: var(--tool-mobile-card-height) !important;
    gap: 12px;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
    transition:
      opacity 520ms ease,
      transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .tools-slider .tool-card img {
    width: var(--tool-mobile-side-size) !important;
    max-width: var(--tool-mobile-side-size) !important;
    height: auto !important;
    transform: none !important;
    margin-top: calc((var(--tool-mobile-active-size) - var(--tool-mobile-side-size)) / 2);
    transition:
      width 620ms cubic-bezier(0.16, 1, 0.3, 1),
      max-width 620ms cubic-bezier(0.16, 1, 0.3, 1),
      margin-top 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .tools-slider .tool-card.is-active img {
    width: var(--tool-mobile-active-size) !important;
    max-width: var(--tool-mobile-active-size) !important;
    margin-top: 0;
  }

  .tools-slider .tool-card.is-active {
    z-index: 3;
    opacity: 1;
    transform: translateX(-50%);
  }

  .tools-slider .tool-card.is-prev {
    z-index: 2;
    opacity: 0.5;
    transform: translateX(calc(-50% - var(--tool-mobile-side-offset)));
  }

  .tools-slider .tool-card.is-next {
    z-index: 2;
    opacity: 0.5;
    transform: translateX(calc(-50% + var(--tool-mobile-side-offset)));
  }

  .tools-slider .tool-card.is-hidden {
    opacity: 0;
  }

  .tools-slider .tool-card:not(.is-active) .tool-label {
    opacity: 0;
  }

  .tools-slider .tool-label {
    font-size: 13px;
    white-space: nowrap;
  }

  .tools-arrow {
    left: 50%;
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .masked-word {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
