/* ------------------------------
   Base
------------------------------ */

:root {
  --page-padding: 64px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  color: #1c1e28;
  font-family: "Inter", Arial, sans-serif;
}


/* ------------------------------
   Shared Page Layout
------------------------------ */

.site-header,
.hero,
.work {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}


/* ------------------------------
   Header
------------------------------ */

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 39px;
}

.site-logo {
  color: #1c1e28;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -1.04px;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 16px;
  padding-top: 8px;
}

.nav-link {
  position: relative;
  color: #1c1e28;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Active navigation underline */

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 100%;
  height: 2px;
  background: #f04c4a;
}

/* Navigation hover */

.nav-link:hover {
  color: #f04c4a;
}

.nav-link:not(.active)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 100%;
  height: 2px;
  background: #f04c4a;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:not(.active):hover::after {
  transform: scaleX(1);
}

/* ==================================================
   HOME — DESKTOP
================================================== */

/* ------------------------------
   Hero
------------------------------ */

.hero h1 {
  max-width: 1312px;
  margin: 143px 0 0;
  color: #1c1e28;
  font-size: 58px;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: 0;
}

.section-label {
  margin: 76px 0 0;
  color: #f04c4a;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}


/* ------------------------------
   Selected Work
------------------------------ */

.work {
  padding: 0 64px;
}

.project {
  margin: 0;
}

.project-giving-green {
  width: 868px;
  margin-top: 106px;
}

.project-image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.project-image img {
  display: block;
  width: 100%;
  height: auto;
}

.project-info {
  margin-top: 8px;
}

.project-info h2 {
  margin: 0;
  color: #1c1e28;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.48px;
}

.project-info p {
  margin: 8px 0 0;
  color: #343743;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.project-sensenig {
  width: 360px;
  margin-left: auto;
  margin-top: -570px;
}

.project-flatiron {
  width: 360px;
  margin-top: 276px;
}

.project-mccormick {
  width: 360px;
  margin-left: 444px;
  margin-top: -417px;
}

.project-latitude {
  width: 360px;
  margin-top: 276px;
}

.project-dmns {
  width: 868px;
  margin-left: auto;
  margin-top: -519px;
}

.project-vyaire {
  width: 360px;
  margin-top: 176px;
}

.project-first-phase {
  width: 360px;
  margin-left: 776px;
  margin-top: -417px;
}



/* ==================================================
   FOOTER
================================================== */

.site-footer {
  width: 100%;
  max-width: 1440px;
  margin: 156px auto 0;
  padding: 0 64px 0px;
}

.home-footer {
  margin-top: 200px;
}

.footer-rule {
  display: none;
  width: 100%;
  height: 5px;
  background: #F04C4A;
}

.footer-kicker {
  margin: 56px 0 0;
  color: #F04C4A;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
}

.footer-contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 22px;
}

.footer-headline {
  margin: 0;
  color: #0E0E0E;
  font-size: 64px;
  font-weight: 400;
  line-height: 70px;
}

.footer-email {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 10px;

  color: #F04C4A;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.footer-email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 100%;
  height: 2px;
  background: #F04C4A;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-email:hover::after {
  transform: scaleX(1);
}

.footer-short-rule {
  width: 91px;
  height: 5px;
  margin-top: 108px;
  background: #F04C4A;
}

.footer-tagline {
  margin: 25px 0 0;
  color: #0E0E0E;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.footer-logo {
  display: block;
  width: 979px;
  max-width: 100%;
  height: auto;

  margin-top: 24px;
  margin-left: auto;
}

/* ==================================================
   ANIMATIONS
================================================== */

/* Project image hover */

.project-image img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.project-image:hover img {
  transform: scale(1.02);
}


/* Project title hover */

.project-info h2 {
  transition: color 0.3s ease;
}

.project:hover .project-info h2 {
  color: #F04C4A;
}


/* Project scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  animation: reveal-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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


/* Stagger right-side desktop projects */

@media (min-width: 768px) {

  .project-sensenig.reveal,
  .project-mccormick.reveal,
  .project-dmns.reveal,
  .project-first-phase.reveal {
    transition-delay: 0.12s;
  }

}


/* ==================================================
   AVAILABILITY DOT — PULSE ANIMATION
================================================== */

.availability-dot {
  animation: availability-pulse 2.4s ease-in-out infinite;
}

@keyframes availability-pulse {

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

  50% {
    opacity: 0.55;
    transform: scale(0.82);
  }

}


/* Respect reduced-motion preferences */

@media (prefers-reduced-motion: reduce) {

  .project.reveal {

    opacity: 1;

    transform: none;

    transition: none;

  }

  .project-image img,

  .project-info h2,

  .footer-message,

  .footer-arrow {

    transition: none;

  }

  .availability-dot {

    animation: none;

  }

}

/* ==================================================
   PROJECT PAGES — SHARED
================================================== */


/* ------------------------------
   Project Intro
------------------------------ */

.project-intro {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.project-intro h1 {
  width: 900px;
  max-width: 100%;
  margin: 104px 0 0;

  color: #1C1E28;
  font-size: 92px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -3.68px;
}

.project-summary {
  width: 868px;
  max-width: 100%;
  margin: 26px 0 0;

  color: #1C1E28;
  font-size: 30px;
  font-weight: 300;
  line-height: normal;
}


/* ------------------------------
   Project Meta
------------------------------ */

.project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  margin-top: 50px;
}

.project-meta-item {
  margin: 0;
}

.project-meta-label {
  margin: 0 0 12px;

  color: #F04C4A;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
}

.project-meta-value {
  margin: 0;

  color: #1C1E28;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.project-meta-link {
  display: inline-block;
  text-decoration: none;
}

.project-meta-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-meta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 100%;
  height: 2px;
  background: #F04C4A;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.project-meta-link:hover {
  color: #F04C4A;
}

.project-meta-link:hover::after {
  transform: scaleX(1);
}

/* ------------------------------
   Project Hero
------------------------------ */

.project-hero {
  width: 100%;
  max-width: 1440px;
  margin: 138px auto 0;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.project-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* ------------------------------
   Project Challenge
------------------------------ */

.project-challenge {
  display: grid;
  grid-template-columns: 1fr 3fr;
  column-gap: 40px;

  width: 100%;
  max-width: 1440px;
  margin: 122px auto 0;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.project-challenge-label {
  margin: 12px 0 0;

  color: #F04C4A;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.project-challenge-text {
  width: 865px;
  max-width: 100%;
  margin: 0;

  color: #1C1E28;
  font-size: 28px;
  font-weight: 300;
  line-height: normal;
}

/* ==================================================
   GIVING GREEN — GALLERY
================================================== */

.project-gallery-giving-green {
  width: 100%;
  max-width: 1440px;
  margin: 124px auto 0;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.gg-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.gg-gallery-item-01 {
  width: 757px;
}

.gg-gallery-item-02 {
  width: 424px;
  margin-left: auto;
  margin-top: -496px;
}

.gg-gallery-item-03 {
  width: 979px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 180px;
}

.gg-gallery-item-04 {
  width: 424px;
  margin-top: 107px;
}

.gg-gallery-item-05 {
  width: 757px;
  margin-left: auto;
  margin-top: -230px;
}

.gg-gallery-item-06 {
  width: 424px;
  margin-top: -230px;
}

.project-gallery-giving-green .project-image:hover img {
  transform: none;
}

/* ==================================================

   SENSENIG — GALLERY

================================================== */

.project-gallery-sensenig {

  width: 100%;

  max-width: 1440px;

  margin: 334px auto 0;

  padding-left: var(--page-padding);

  padding-right: var(--page-padding);

}

.sensenig-gallery-item img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: 15px;

}

.project-gallery-sensenig .project-image:hover img {

  transform: none;

}

.sensenig-gallery-item-01 {

  width: 757px;

}

.sensenig-gallery-item-02 {

  width: 424px;

  margin-left: auto;

  margin-top: -762px;

}

.sensenig-gallery-item-03 {

  width: 424px;

  margin-left: auto;

  margin-top: 108px;

}

 .sensenig-gallery-item-04 {

  width: 979px;

  margin-left: auto;
  margin-right: auto;

  margin-top: 108px;

}

.sensenig-gallery-item-05 {

  width: 424px;

  margin-top: 180px;

}

.sensenig-gallery-item-06 {

  width: 757px;

  margin-left: auto;

  margin-top: -496px;

}

/* ==================================================

   FLATIRON — GALLERY

================================================== */

.project-gallery-flatiron {

  width: 100%;

  max-width: 1440px;

  margin: 140px auto 0;

  padding-left: var(--page-padding);

  padding-right: var(--page-padding);

}

.flatiron-gallery-item img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: 15px;

}

.project-gallery-flatiron .project-image:hover img {

  transform: none;

}

.flatiron-gallery-item-01 {

  width: 979px;

  margin-left: auto;

}

.flatiron-gallery-item-02 {

  width: 424px;

  margin-top: 180px;

}

.flatiron-gallery-item-03 {

  width: 757px;

  margin-left: auto;

  margin-top: -496px;

}

.flatiron-gallery-item-04 {

  width: 100%;

  margin-top: 108px;

}

.flatiron-gallery-item-05 {

  width: 424px;

  margin-top: 108px;

}

.flatiron-gallery-item-06 {

  width: 424px;

  margin-left: 554px;

  margin-top: -424px;

}

/* ==================================================

   MCCORMICK — GALLERY

================================================== */

.project-gallery-mccormick {

  width: 100%;

  max-width: 1440px;

  margin: 130px auto 0;

  padding-left: var(--page-padding);

  padding-right: var(--page-padding);

}

.mccormick-gallery-item img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: 15px;

}

.project-gallery-mccormick .project-image:hover img {

  transform: none;

}

.mccormick-gallery-item-01 {

  width: 100%;

}

.mccormick-gallery-item-02 {

  width: 757px;

  margin-top: 108px;

}

.mccormick-gallery-item-03 {

  width: 424px;

  margin-left: auto;

  margin-top: -496px;

}

.mccormick-gallery-item-04 {

  width: 424px;

  margin-top: 180px;

}

.mccormick-gallery-item-05 {

  width: 424px;

  margin-left: 554px;

  margin-top: -424px;

}

.mccormick-gallery-item-06 {

  width: 424px;

  margin-top: 180px;

}

.mccormick-gallery-item-07 {

  width: 757px;

  margin-left: auto;

  margin-top: -496px;

}

/* ==================================================

   LATITUDE — GALLERY

================================================== */

.project-gallery-latitude {

  width: 100%;

  max-width: 1440px;

  margin: 130px auto 0;

  padding-left: var(--page-padding);

  padding-right: var(--page-padding);

}

.latitude-gallery-item img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: 15px;

}

.project-gallery-latitude .project-image:hover img {

  transform: none;

}

.latitude-gallery-item-01 {

  width: 424px;

  margin-left: 334px;

}

.latitude-gallery-item-02 {

  width: 424px;

  margin-left: auto;

  margin-top: -424px;

}

.latitude-gallery-item-03 {

  width: 424px;

  margin-top: 180px;

}

.latitude-gallery-item-04 {

  width: 757px;

  margin-left: auto;

  margin-top: -496px;

}

.latitude-gallery-item-05 {

  width: 100%;

  margin-top: 108px;

}

.latitude-gallery-item-06 {

  width: 757px;

  margin-top: 108px;

}

.latitude-gallery-item-07 {

  width: 424px;

  margin-left: auto;

  margin-top: -496px;

}

/* ==================================================

   DMNS — GALLERY

================================================== */

.project-gallery-dmns {

  width: 100%;

  max-width: 1440px;

  margin: 130px auto 0;

  padding-left: var(--page-padding);

  padding-right: var(--page-padding);

}

.dmns-gallery-item img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: 15px;

}

.project-gallery-dmns .project-image:hover img {

  transform: none;

}

.dmns-gallery-item-01 {

  width: 100%;

}

.dmns-gallery-item-02 {

  width: 757px;

  margin-top: 108px;

}

.dmns-gallery-item-03 {

  width: 424px;

  margin-left: auto;

  margin-top: -496px;

}

.dmns-gallery-item-04 {

  width: 757px;

  margin-top: 180px;

}

.dmns-gallery-item-05 {

  width: 424px;

  margin-top: 108px;

}

.dmns-gallery-item-06 {

  width: 424px;

  margin-left: auto;

  margin-top: -424px;

}

/* ==================================================

   VYAIRE — GALLERY

================================================== */

.project-gallery-vyaire {

  width: 100%;

  max-width: 1440px;

  margin: 130px auto 0;

  padding-left: var(--page-padding);

  padding-right: var(--page-padding);

}

.vyaire-gallery-item img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: 15px;

}

.project-gallery-vyaire .project-image:hover img {

  transform: none;

}

.vyaire-gallery-item-01 {

  width: 424px;

}

.vyaire-gallery-item-02 {

  width: 424px;

  margin-left: auto;

  margin-top: -424px;

}

.vyaire-gallery-item-03 {

  width: 757px;

  margin-top: 108px;

}

.vyaire-gallery-item-04 {

  width: 100%;

  margin-top: 108px;

}

.vyaire-gallery-item-05 {

  width: 424px;

  margin-top: 180px;

}

.vyaire-gallery-item-06 {

  width: 757px;

  margin-left: auto;

  margin-top: -496px;

}

/* ==================================================

   FIRST PHASE — GALLERY

================================================== */

.project-gallery-first {

  width: 100%;

  max-width: 1440px;

  margin: 130px auto 0;

  padding-left: var(--page-padding);

  padding-right: var(--page-padding);

}

.first-gallery-item img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: 15px;

}

.project-gallery-first .project-image:hover img {

  transform: none;

}

.first-gallery-item-01 {

  width: 757px;

}

.first-gallery-item-02 {

  width: 424px;

  margin-left: auto;

  margin-top: -568px;

}

.first-gallery-item-03 {

  width: 424px;

  margin-left: auto;

  margin-top: 144px;

}

.first-gallery-item-04 {

  width: 757px;

  margin-top: 108px;

}

.first-gallery-item-05 {

  width: 424px;

  margin-top: 108px;

}

.first-gallery-item-06 {

  width: 424px;

  margin-left: auto;

  margin-top: -424px;

}

/* ==================================================
   PROJECT NAVIGATION
================================================== */

.project-next {
  width: 100%;
  max-width: 1440px;
  margin: 86px auto 0;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);

  display: flex;
  justify-content: flex-end;
}

.project-next-link {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #1C1E28;
  text-decoration: none;
}

.project-next-label {
  position: relative;

  font-size: 15px;
  font-weight: 500;
  line-height: normal;

  transition: color 0.3s ease;
}

.project-next-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;

  width: 100%;
  height: 2px;
  background: #F04C4A;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.project-next-arrow {
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.project-next-link:hover .project-next-label,
.project-next-link:hover .project-next-arrow {
  color: #F04C4A;
}

.project-next-link:hover .project-next-label::after {
  transform: scaleX(1);
}

/* Project page footer spacing */

.project-body .site-footer {
  margin-top: 114px;
}

/* ==================================================
   ABOUT PAGE — DESKTOP
================================================== */

.about-top {
  width: 100%;
  height: 790px;
  background: #1C1E28;
  color: #FFFFFF;
}

.about-header {
  color: #FFFFFF;
}

.about-header .site-logo,
.about-header .nav-link {
  color: #FFFFFF;
}

.about-header .nav-link.active::after {
  width: 100%;
}

.about-hero {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}

.about-hero h1 {
  width: 1090px;
  max-width: 100%;
  margin: 104px 0 0;
  font-size: 58px;
  font-weight: 400;
  line-height: 66px;
}

.about-intro {
  width: 760px;
  max-width: 100%;
  margin: 96px 0 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 34px;
}

/* ==================================================
   ABOUT DETAILS — DESKTOP
================================================== */

.about-details {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 64px 0;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  column-gap: 48px;
}

.about-row-label {
  margin: 0;
  color: #F04C4A;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
}

.about-row-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
}

.about-row-content p,
.about-row-content a {
  margin: 0;
  color: #1C1E28;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.about-contact-link {

  position: relative;

  display: inline-block;

  width: fit-content;

  color: inherit;

  text-decoration: none;

  transition: color 0.3s ease;

}

.about-contact-link::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -3px;

  width: 100%;

  height: 2px;

  background: #F04C4A;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.3s ease;

}

.about-contact-link:hover {

  color: #F04C4A;

}

.about-contact-link:hover::after {

  transform: scaleX(1);

}


/* Services */

.about-services-row {
  padding-bottom: 95px;
}


/* Divider */

.about-divider {
  width: 100%;
  height: 1px;
  background: #D8D8D8;
}


/* Clients */

.about-clients-row {
  padding-top: 95px;
  padding-bottom: 95px;
}


/* Contact */

.about-contact-row {
  padding-top: 95px;
  padding-bottom: 95px;
}

.about-contact-content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
}

.about-contact-content .availability {
  grid-column: 2;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
}

.availability-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #63B76C;
}

.about-body .site-footer {
  margin-top: 0;
}

/* ==================================================
   TABLET
================================================== */

@media (min-width: 768px) and (max-width: 1023px) {

  /* ------------------------------
     Home — Hero
  ------------------------------ */

  .hero h1 {
    margin-top: 120px;
    font-size: 64px;
    line-height: 1.08;
  }

  .desktop-break {
    display: none;
  }

  .section-label {
    margin-top: 72px;
    margin-bottom: 48px;
  }


  /* ------------------------------
     Home — Work
  ------------------------------ */

  .work {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 64px;
  }

  .project,
  .project-sensenig,
  .project-flatiron,
  .project-mccormick,
  .project-latitude,
  .project-dmns,
  .project-vyaire,
  .project-first-phase {
    width: 100%;
    margin: 0;
  }

  .project-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .project-image picture,
  .project-image img {
    width: 100%;
    height: 100%;
  }

  .project-image img {
    object-fit: cover;
  }


/* ------------------------------

   Footer — Tablet

------------------------------ */

.footer-headline {
  font-size: 52px;
  line-height: 58px;
}

.footer-logo {
  margin-top: 68px;
}


  /* ------------------------------
     About — Tablet
  ------------------------------ */

  .about-top {
    height: 640px;
  }

  .about-hero h1 {
    font-size: 42px;
    line-height: 1.15;
  }

  .about-intro {
    margin-top: 72px;
  }

  .about-details-grid {
    grid-template-columns: 1fr 1fr 1fr 1.15fr;
    column-gap: 40px;
  }

  .availability {
    gap: 10px;
    align-items: flex-start;
  }

  .availability-dot {
    width: 10px;
    height: 10px;
    margin-top: 5px;
  }

  .about-clients {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.15fr;
    column-gap: 40px;
    margin-top: 112px;
  }

  .clients-label {
    grid-column: 1;
    margin-top: 10px;
  }

  .client-columns {
    display: contents;
  }


  /* ------------------------------
     Project Pages — Tablet
  ------------------------------ */

  .project-challenge {
    grid-template-columns: 1fr 3fr;
    column-gap: 32px;
    margin-top: 96px;
  }

  .project-challenge-text {
    width: 100%;
    font-size: 24px;
    line-height: 1.35;
  }


  /* ------------------------------
     Giving Green Gallery — Tablet
  ------------------------------ */

  .project-gallery-giving-green {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 64px;
    margin-top: 96px;
  }

  .project-gallery-giving-green .gg-gallery-item {
    width: 100%;
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
  }

  .project-gallery-giving-green .gg-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

    /* ------------------------------

     Sensenig Gallery — Tablet

  ------------------------------ */

  .project-gallery-sensenig {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 32px;

    row-gap: 64px;

    margin-top: 96px;

  }

  .project-gallery-sensenig .sensenig-gallery-item {

    width: 100%;

    margin: 0;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 15px;

  }

  .project-gallery-sensenig .sensenig-gallery-item img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

  }

    /* ------------------------------

     Flatiron Gallery — Tablet

  ------------------------------ */

  .project-gallery-flatiron {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 32px;

    row-gap: 64px;

    margin-top: 96px;

  }

  .project-gallery-flatiron .flatiron-gallery-item {

    width: 100%;

    margin: 0;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 15px;

  }

  .project-gallery-flatiron .flatiron-gallery-item img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

  }

    /* ------------------------------

     McCormick Gallery — Tablet

  ------------------------------ */

  .project-gallery-mccormick {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 32px;

    row-gap: 64px;

    margin-top: 96px;

  }

  .project-gallery-mccormick .mccormick-gallery-item {

    width: 100%;

    margin: 0;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 15px;

  }

  .project-gallery-mccormick .mccormick-gallery-item img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

  }

  /* ------------------------------

   Latitude Gallery — Tablet

------------------------------ */

.project-gallery-latitude {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 32px;

  row-gap: 64px;

  margin-top: 96px;

}

.project-gallery-latitude .latitude-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-latitude .latitude-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   DMNS Gallery — Tablet

------------------------------ */

.project-gallery-dmns {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 32px;

  row-gap: 64px;

  margin-top: 96px;

}

.project-gallery-dmns .dmns-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-dmns .dmns-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   Vyaire Gallery — Tablet

------------------------------ */

.project-gallery-vyaire {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 32px;

  row-gap: 64px;

  margin-top: 96px;

}

.project-gallery-vyaire .vyaire-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-vyaire .vyaire-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   First Phase Gallery — Tablet

------------------------------ */

.project-gallery-first {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 32px;

  row-gap: 64px;

  margin-top: 96px;

}

.project-gallery-first .first-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-first .first-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}
	
/* ------------------------------
   Project Navigation — Tablet
------------------------------ */

.project-body .site-footer {
  margin-top: 80px;
}
	
.challenge-break {
  display: none;
}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  :root {
    --page-padding: 24px;
  }

  .site-header {
    padding-top: 28px;
  }

  .site-logo {
    font-size: 26px;
  }

  .site-nav {
    gap: 16px;
    padding-top: 6px;
  }

  .nav-link {
    font-size: 15px;
  }


  /* Home — Hero */

  .hero h1 {
    margin-top: 128px;
    font-size: 46px;
    line-height: 1.05;
  }

  .desktop-break {
    display: none;
  }

  .section-label {
    margin-top: 76px;
  }


  /* Home — Work */

  .work {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
  }

  .project,
  .project-sensenig,
  .project-flatiron,
  .project-mccormick,
  .project-latitude,
  .project-dmns,
  .project-vyaire,
  .project-first-phase {
    width: 100%;
    margin-left: 0;
    margin-top: 48px;
  }

  .project:first-child {
    margin-top: 48px;
  }

  .project-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
  }

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

  .project-info {
    margin-top: 12px;
  }

  .project-info h2 {
    margin: 0;
  }

  .project-info p {
    margin-top: 6px;
  }
	
/* ==================================================
   PROJECT PAGES — MOBILE
================================================== */

.project-intro {
  padding-left: 24px;
  padding-right: 24px;
}

.project-intro h1 {
  width: 100%;
  margin-top: 112px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -2px;
}

.project-summary {
  width: 100%;
  margin-top: 36px;
  font-size: 24px;
  line-height: 1.20;
}

.project-meta {
  display: block;
  margin-top: 40px;
}

.project-meta-item {
  margin-top: 32px;
}

.project-meta-item:first-child {
  margin-top: 0;
}

.project-meta-label {
  margin-bottom: 10px;
}

.project-meta-value {
  font-size: 16px;
  line-height: 1.35;
}
	
.project-hero {
  margin-top: 60px;
}
	
.project-hero {
  margin-top: 60px;
}

.project-hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
	
/* ------------------------------
   Project Challenge — Mobile
------------------------------ */

.project-challenge {
  display: block;
  margin-top: 60px;
  padding-left: 24px;
  padding-right: 24px;
}

.project-challenge-label {
  margin: 0 0 20px;
}

.project-challenge-text {
  width: 100%;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}
	
/* ------------------------------
   Giving Green Gallery — Mobile
------------------------------ */

.project-gallery-giving-green {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin-top: 60px;
  padding-left: 24px;
  padding-right: 24px;
  gap: 48px;
}

.project-gallery-giving-green .gg-gallery-item {
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 15px;
}

.project-gallery-giving-green .gg-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
	
.challenge-break {
  display: none;
}
	
/* Project Navigation — Mobile */

.project-body .site-footer {
  margin-top: 60px;
}

/* ------------------------------

   Sensenig Gallery — Mobile

------------------------------ */

.project-gallery-sensenig {

  display: flex;

  flex-direction: column;

  width: 100%;

  max-width: none;

  margin-top: 60px;

  padding-left: 24px;

  padding-right: 24px;

  gap: 48px;

}

.project-gallery-sensenig .sensenig-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-sensenig .sensenig-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   Flatiron Gallery — Mobile

------------------------------ */

.project-gallery-flatiron {

  display: flex;

  flex-direction: column;

  width: 100%;

  max-width: none;

  margin-top: 60px;

  padding-left: 24px;

  padding-right: 24px;

  gap: 48px;

}

.project-gallery-flatiron .flatiron-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-flatiron .flatiron-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   McCormick Gallery — Mobile

------------------------------ */

.project-gallery-mccormick {

  display: flex;

  flex-direction: column;

  width: 100%;

  max-width: none;

  margin-top: 60px;

  padding-left: 24px;

  padding-right: 24px;

  gap: 48px;

}

.project-gallery-mccormick .mccormick-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-mccormick .mccormick-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   Latitude Gallery — Mobile

------------------------------ */

.project-gallery-latitude {

  display: flex;

  flex-direction: column;

  width: 100%;

  max-width: none;

  margin-top: 60px;

  padding-left: 24px;

  padding-right: 24px;

  gap: 48px;

}

.project-gallery-latitude .latitude-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-latitude .latitude-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   DMNS Gallery — Mobile

------------------------------ */

.project-gallery-dmns {

  display: flex;

  flex-direction: column;

  width: 100%;

  max-width: none;

  margin-top: 60px;

  padding-left: 24px;

  padding-right: 24px;

  gap: 48px;

}

.project-gallery-dmns .dmns-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-dmns .dmns-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   Vyaire Gallery — Mobile

------------------------------ */

.project-gallery-vyaire {

  display: flex;

  flex-direction: column;

  width: 100%;

  max-width: none;

  margin-top: 60px;

  padding-left: 24px;

  padding-right: 24px;

  gap: 48px;

}

.project-gallery-vyaire .vyaire-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-vyaire .vyaire-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* ------------------------------

   First Phase Gallery — Mobile

------------------------------ */

.project-gallery-first {

  display: flex;

  flex-direction: column;

  width: 100%;

  max-width: none;

  margin-top: 60px;

  padding-left: 24px;

  padding-right: 24px;

  gap: 48px;

}

.project-gallery-first .first-gallery-item {

  width: 100%;

  margin: 0;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

}

.project-gallery-first .first-gallery-item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}


  /* ==================================================
     FOOTER — MOBILE
  ================================================== */

  .site-footer {
    width: 100%;
    max-width: none;
    margin-top: 112px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-rule {
    height: 5px;
  }

  .footer-kicker {
    margin-top: 49px;
    font-size: 11px;
    line-height: 14px;
  }

  .footer-contact {
    display: block;
    margin-top: 26px;
  }

  .footer-headline {
    font-size: 40px;
    line-height: 44px;
  }

  .footer-headline br {
  display: none;
}

  .footer-email {
    display: inline-block;
    margin-top: 28px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
  }

  .footer-short-rule {
    width: 82px;
    height: 4px;
    margin-top: 86px;
  }

  .footer-tagline {
    margin-top: 20px;
    font-size: 12px;
    line-height: 16px;
  }

  .footer-logo {
    width: 100%;
    max-width: none;
    margin-top: 32px;
    margin-left: 0;
    margin-right: 0;
  }


  /* ==================================================
     ABOUT — MOBILE
  ================================================== */

  .about-top {
    height: 758px;
  }

  .about-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-hero h1 {
    width: 100%;
    margin-top: 88px;
    font-size: 36px;
    line-height: 1.28;
  }

  .about-intro {
    width: 100%;
    margin-top: 58px;
    font-size: 22px;
    line-height: 28px;
  }


  /* About details — Mobile */

  .about-details {
    padding: 48px 24px 0;
  }

  .about-row {
    display: block;
  }

  .about-row-label {
    margin: 0 0 20px;
  }

  .about-row-content {
    display: block;
  }

  .about-row-content p,
  .about-row-content a {
    font-size: 14px;
    line-height: 22px;
  }


  /* Services */

  .about-services-row {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .about-services-list p {
    margin: 0;
  }

  .about-services-list p + p {
    margin-top: 20px;
  }


  /* Divider */

  .about-divider {
    width: 100%;
    margin: 0;
  }


  /* Clients */

  .about-clients-row {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-clients-list p {
    margin: 0;
  }

  .about-clients-list p + p {
    margin-top: 20px;
  }


  /* Contact */

  .about-contact-row {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-contact-content {
    display: block;
  }

  .about-contact-link {
    display: inline-block;
  }

  .about-contact-content .availability {
    display: flex;
    margin-top: 24px;
    transform: none;
  }

  .availability {
    gap: 10px;
    align-items: center;
  }

  .availability-dot {
    width: 10px;
    height: 10px;
    margin-top: 0;
  }


  /* About footer */

  .about-body .site-footer {
    margin-top: 0;
  }

}

/* ==================================================
   ACCESSIBILITY
================================================== */

a:focus-visible,
button:focus-visible {
  outline: 2px solid #F04C4A;
  outline-offset: 4px;
}



/* ==================================================
   PAGE LOADER
================================================== */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1C1E28;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.page-loader.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-loader-logo {
  color: #FFFFFF;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1.5px;

  opacity: 0;
  transform: translateY(6px);

  animation: loader-logo-in 700ms ease forwards;
}

.page-loader-rule {
  width: 0;
  height: 1px;
  margin-top: 16px;

  background: #F04C4A;

  animation: loader-rule-in 900ms ease 300ms forwards;
}

@keyframes loader-logo-in {

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

}

@keyframes loader-rule-in {

  to {
    width: 80px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .page-loader,
  .page-loader-logo,
  .page-loader-rule {
    animation: none;
    transition: none;
  }

  .page-loader-logo {
    opacity: 1;
    transform: none;
  }

  .page-loader-rule {
    width: 80px;
  }

}

/* ==================================================
   PAGE TRANSITION
================================================== */

body.page-transition-out {

  background: #ffffff;

}

body.page-transition-out > header,
body.page-transition-out > main,
body.page-transition-out > footer {

  animation: page-transition-out 700ms ease forwards;

}

@keyframes page-transition-out {

  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.98);
  }

}


/* ==================================================
   PAGE TRANSITION — IN
================================================== */

body.page-transition-in {
  background: #ffffff;
}

body.page-transition-in > * {
  opacity: 0;
  transform: scale(0.98);
  transform-origin: center center;

  animation: page-transition-in 900ms ease 250ms forwards;
}

@keyframes page-transition-in {

  0% {
    opacity: 0;
    transform: scale(0.98);
  }

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

}