:root {
  --blue: #3e6ae1;
  --carbon: #171a20;
  --graphite: #393c41;
  --pewter: #5c5e62;
  --silver: #d0d1d2;
  --cloud: #eeeeee;
  --ash: #f4f4f4;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--carbon);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

img {
  max-width: 100%;
}

.site-header {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 0 24px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.33s, color 0.33s, backdrop-filter 0.33s;
  z-index: 50;
}

.site-header.is-scrolled,
.mobile-menu {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.brand img {
  height: 42px;
  object-fit: contain;
  width: auto;
}

.desktop-nav {
  align-items: center;
  display: none;
  gap: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-link,
.nav-cta,
.icon-button {
  align-items: center;
  border-radius: 4px;
  color: var(--carbon);
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  min-height: 32px;
  transition: background-color 0.33s, color 0.33s, border-color 0.33s;
}

.nav-link {
  padding: 4px 16px;
}

.nav-link:hover,
.nav-link.is-active,
.icon-button:hover {
  background: rgba(23, 26, 32, 0.08);
}

.nav-cta {
  background: var(--carbon);
  color: var(--white);
  min-height: 36px;
  padding: 4px 18px;
}

.nav-cta:hover {
  background: var(--graphite);
}

.icon-button {
  height: 40px;
  justify-content: center;
  width: 40px;
}

.icon-button svg {
  height: 20px;
  width: 20px;
}

.mobile-menu {
  display: none;
  inset: 0 0 auto 0;
  padding: 78px 24px 24px;
  position: fixed;
  z-index: 40;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  align-items: center;
  border-radius: 4px;
  color: var(--carbon);
  display: flex;
  font-size: 20px;
  font-weight: 500;
  min-height: 48px;
  padding: 4px 8px;
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
  background: rgba(23, 26, 32, 0.08);
}

.hero-section,
.photo-section {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-bg,
.photo-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade,
.photo-shade {
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.13) 0%, rgba(8, 11, 16, 0.086) 46%, rgba(8, 11, 16, 0.187) 100%),
    linear-gradient(90deg, rgba(8, 11, 16, 0.079) 0%, rgba(8, 11, 16, 0.05) 52%, rgba(8, 11, 16, 0.079) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-copy {
  color: var(--white);
  left: 50%;
  max-width: 760px;
  padding: 0 24px;
  position: absolute;
  text-align: center;
  top: 118px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.home-hero-copy {
  max-width: 1080px;
}

.hero-copy h1,
.hero-copy h2,
.section-heading {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-copy p,
.photo-copy p,
.lead {
  font-size: 17px;
  line-height: 1.55;
}

.eyebrow {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.btn {
  align-items: center;
  border: 3px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  min-width: 200px;
  padding: 4px 18px;
  transition: background-color 0.33s, border-color 0.33s, color 0.33s;
  white-space: nowrap;
}

.btn svg {
  height: 16px;
  width: 16px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #345fcf;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--graphite);
}

.btn-secondary:hover {
  background: var(--white);
}

.btn-dark {
  background: var(--carbon);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--graphite);
}

.hero-spec-bar {
  bottom: 34px;
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 50%;
  max-width: 760px;
  padding: 0 24px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.hero-spec-bar strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-spec-bar span {
  display: block;
  font-size: 15px;
  margin-top: 4px;
}

.quiet-section {
  background: var(--white);
  padding: 96px 24px;
}

.ash-section {
  background: var(--ash);
}

.content-wrap {
  margin: 0 auto;
  max-width: 1160px;
}

.split-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.copy-stack > * + * {
  margin-top: 18px;
}

.copy-stack p {
  color: var(--graphite);
  max-width: 650px;
}

.copy-stack h3 {
  font-size: 20px;
}

.stat-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.stat-block strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.stat-block span {
  color: var(--pewter);
  display: block;
  margin-top: 8px;
}

.photo-copy {
  bottom: 74px;
  color: var(--white);
  left: 50%;
  max-width: 900px;
  padding: 0 24px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.photo-copy h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
}

.about-duo-panel,
.about-delivery-panel {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: flex;
  position: relative;
}

.about-duo-panel {
  background-image:
    linear-gradient(90deg, rgba(246, 248, 250, 0.324) 0%, rgba(246, 248, 250, 0.295) 48%, rgba(246, 248, 250, 0.274) 100%),
    linear-gradient(180deg, rgba(23, 26, 32, 0.014), rgba(23, 26, 32, 0.036)),
    url("../../material/Marketing%20photo/ChatGPT%20image/background%20%281%29.png");
}

.about-delivery-panel {
  background-image:
    linear-gradient(90deg, rgba(246, 248, 250, 0.324) 0%, rgba(246, 248, 250, 0.295) 54%, rgba(246, 248, 250, 0.274) 100%),
    linear-gradient(180deg, rgba(23, 26, 32, 0.014), rgba(23, 26, 32, 0.036)),
    url("../../material/Marketing%20photo/ChatGPT%20image/background%20%283%29.png");
}

.about-duo-grid,
.about-delivery-grid {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-duo-secondary,
.about-quality-block {
  border-left: 1px solid var(--cloud);
  padding-left: 42px;
}

.about-process-grid {
  border-top: 1px solid var(--cloud);
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  padding-top: 34px;
}

.home-document,
.fullpage-document {
  height: 100%;
  scroll-padding-top: 0;
}

.home-page {
  margin: 0;
}

.home-page.lightbox-open {
  overflow: hidden;
}

.home-snap > .home-panel,
.fullpage-snap > .fullpage-panel {
  min-height: 100svh;
}

@media (min-width: 960px) {
  .home-page.home-fullpage,
  .fullpage-enabled {
    height: 100svh;
    overflow: hidden;
  }

  .home-page.home-fullpage .home-snap,
  .fullpage-enabled .fullpage-snap {
    height: auto;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    transition: transform 980ms cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
  }

  .home-page.home-fullpage .home-snap.is-jumping,
  .fullpage-enabled .fullpage-snap.is-jumping {
    transition: none;
  }

  .home-page.home-fullpage .home-snap > .home-panel,
  .fullpage-enabled .fullpage-snap > .fullpage-panel {
    height: 100svh;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    backface-visibility: hidden;
    position: relative;
    scrollbar-width: thin;
    transform: translate3d(0, 0, 0);
  }

  .home-page.home-fullpage .home-panel.is-active,
  .fullpage-enabled .fullpage-panel.is-active {
    z-index: 1;
  }
}

.panel-dots {
  align-items: center;
  display: grid;
  gap: 12px;
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
}

.panel-dot {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 26, 32, 0.28);
  border-radius: 999px;
  cursor: pointer;
  height: 9px;
  padding: 0;
  transition: background-color 0.28s ease, border-color 0.28s ease, height 0.28s ease, transform 0.28s ease;
  width: 9px;
}

.panel-dot:hover,
.panel-dot:focus-visible {
  background: rgba(62, 106, 225, 0.78);
  border-color: rgba(62, 106, 225, 0.9);
  outline: none;
  transform: scale(1.2);
}

.panel-dot.is-active {
  background: var(--blue);
  border-color: var(--blue);
  height: 28px;
}

.home-proof-section .photo-shade {
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.209) 0%, rgba(8, 11, 16, 0.144) 45%, rgba(8, 11, 16, 0.101) 100%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.101) 0%, rgba(8, 11, 16, 0.166) 100%);
}

.home-proof-content {
  align-items: center;
  color: var(--white);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.9fr);
  min-height: 100svh;
  padding: 104px 24px 72px;
  position: relative;
  z-index: 2;
}

.home-proof-content .copy-stack p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
}

.home-proof-content .section-heading {
  max-width: 620px;
}

.home-proof-content .tag-list span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.home-proof-stats {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: 34px;
}

.home-proof-stats h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 440px;
}

.home-proof-stats .stat-grid {
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-proof-stats .stat-block {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  padding-top: 18px;
}

.home-proof-stats .stat-block strong {
  color: var(--white);
}

.home-proof-stats .stat-block span {
  color: rgba(255, 255, 255, 0.78);
}

.selected-work-section {
  align-items: center;
  display: flex;
  padding-bottom: 56px;
  padding-top: 84px;
}

.selected-work-copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  text-align: center;
}

.selected-work-copy > * {
  margin-left: auto;
  margin-right: auto;
}

.selected-work-copy .lead {
  max-width: none;
  white-space: nowrap;
}

.home-page .selected-work-section .reveal {
  opacity: 1;
  transform: none;
}

.image-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-tile {
  border-radius: 8px;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.image-tile img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.image-tile .tile-label {
  color: var(--white);
  left: 18px;
  position: absolute;
  top: 16px;
  z-index: 2;
}

.tile-label strong {
  display: block;
  font-size: 19px;
  font-weight: 500;
}

.tile-label span {
  display: block;
  font-size: 15px;
  margin-top: 3px;
}

.tile-shade {
  background: rgba(0, 0, 0, 0.16);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.product-row {
  align-items: stretch;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 34px 0;
}

.product-row + .product-row {
  border-top: 1px solid var(--cloud);
}

.product-image {
  border-radius: 8px;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-list span,
.filter-button {
  align-items: center;
  background: var(--ash);
  border-radius: 4px;
  color: var(--graphite);
  display: inline-flex;
  font-size: 15px;
  min-height: 32px;
  padding: 4px 10px;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.filter-button {
  border: 0;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.33s, color 0.33s;
}

.filter-button.is-active,
.filter-button:hover {
  background: var(--carbon);
  color: var(--white);
}

.project-grid {
  display: grid;
  gap: 28px 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.project-card {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font: inherit;
  padding: 0;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.project-card.is-hidden {
  display: none;
}

.project-card figure {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s ease;
  width: 100%;
}

.project-card img.project-image--fill {
  transform: scale(1.16);
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.035);
}

.project-card:hover img.project-image--fill,
.project-card:focus-visible img.project-image--fill {
  transform: scale(1.19);
}

.project-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

.project-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 14px;
}

.project-card p {
  color: var(--graphite);
  margin-top: 6px;
}

.project-meta {
  color: var(--pewter);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.project-meta span {
  background: var(--ash);
  border-radius: 4px;
  padding: 4px 8px;
}

.project-carousel {
  margin-top: 48px;
  position: relative;
}

.project-carousel-viewport {
  overflow: hidden;
}

.project-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.project-carousel-track.is-jumping {
  transition: none;
}

.project-carousel .project-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}

.project-card-slab {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #171a20, #393c41);
  position: relative;
}

.project-card-slab::after {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.18) 12% 13%, transparent 13% 32%, rgba(255, 255, 255, 0.12) 32% 33%, transparent 33% 100%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.1) 38px 39px);
  content: "";
  inset: 22px;
  position: absolute;
}

.carousel-button {
  align-items: center;
  background: rgba(23, 26, 32, 0.88);
  border: 0;
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  top: 210px;
  transition: background-color 0.33s, transform 0.33s;
  width: 44px;
  z-index: 4;
}

.carousel-button:hover {
  background: var(--carbon);
  transform: translateY(-1px);
}

.carousel-button svg {
  height: 22px;
  width: 22px;
}

.carousel-button-prev {
  left: -22px;
}

.carousel-button-next {
  right: -22px;
}

.lightbox {
  align-items: center;
  backdrop-filter: blur(6px);
  background: rgba(10, 12, 16, 0.91);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 58px 24px 34px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s ease;
  z-index: 100;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  margin: 0;
  max-height: min(82vh, 820px);
  max-width: min(90vw, 1180px);
  position: relative;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.25s ease;
}

.lightbox.is-open .lightbox-frame {
  transform: translateY(0) scale(1);
}

.lightbox-frame img {
  border-radius: 6px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
  display: block;
  max-height: 78vh;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-frame figcaption {
  color: var(--white);
  font-size: 16px;
  margin-top: 12px;
  text-align: center;
}

.lightbox-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 999px;
  color: var(--carbon);
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  position: fixed;
  right: 24px;
  top: 22px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  width: 42px;
  z-index: 101;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--white);
  transform: translateY(-1px);
}

.lightbox-close svg {
  height: 22px;
  width: 22px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--graphite);
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  background: var(--ash);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--carbon);
  min-height: 44px;
  padding: 10px 12px;
  transition: background-color 0.33s, border-color 0.33s;
  width: 100%;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--blue);
  outline: none;
}

.map-placeholder {
  align-items: center;
  background: var(--ash);
  border-radius: 8px;
  color: var(--pewter);
  display: flex;
  min-height: 420px;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.contact-centre p {
  margin-left: auto;
  margin-right: auto;
}

.contact-centre .tag-list {
  justify-content: center;
}

.contact-main {
  height: 100svh;
  min-height: 100svh;
}

.contact-hero {
  height: 100%;
  min-height: 100svh;
}

.contact-page {
  margin: 0;
  overflow: hidden;
}

.contact-hero .hero-shade {
  background:
    radial-gradient(ellipse at 50% 34%, rgba(8, 11, 16, 0.102) 0%, rgba(8, 11, 16, 0.066) 34%, rgba(8, 11, 16, 0.018) 68%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.066) 0%, rgba(8, 11, 16, 0.045) 42%, rgba(8, 11, 16, 0.09) 100%),
    linear-gradient(90deg, rgba(8, 11, 16, 0.036) 0%, rgba(8, 11, 16, 0.024) 55%, rgba(8, 11, 16, 0.036) 100%);
}

.contact-hero-copy {
  max-width: 820px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34), 0 1px 2px rgba(0, 0, 0, 0.32);
  top: clamp(96px, 14vh, 136px);
}

.contact-detail-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  margin: 30px auto 0;
  max-width: 720px;
  padding-top: 26px;
}

.contact-detail-panel h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}

.contact-email-line {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 18px;
}

.contact-detail-panel a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-detail-panel .tag-list {
  justify-content: center;
}

.contact-detail-panel .tag-list span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.footer {
  background: var(--carbon);
  color: var(--white);
  padding: 34px 24px;
}

.footer a {
  color: var(--white);
}

.footer-grid {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

:target .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 960px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-trigger {
    display: none;
  }
}

@media (max-width: 959px) {
  .site-header {
    padding: 0 18px;
  }

  .panel-dots {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-copy {
    top: 96px;
  }

  .home-hero-copy h1 {
    white-space: normal;
  }

  .split-grid,
  .product-row,
  .about-duo-grid,
  .about-delivery-grid {
    grid-template-columns: 1fr;
  }

  .about-duo-secondary,
  .about-quality-block {
    border-left: 0;
    border-top: 1px solid var(--cloud);
    padding-left: 0;
    padding-top: 32px;
  }

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

  .home-proof-content {
    align-content: center;
    gap: 34px;
    grid-template-columns: 1fr;
    padding-bottom: 64px;
    padding-top: 96px;
  }

  .home-proof-stats {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    padding-left: 0;
    padding-top: 28px;
  }

  .selected-work-copy .lead {
    max-width: 640px;
    white-space: normal;
  }

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

  .project-carousel .project-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand img {
    height: 34px;
    max-width: 188px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .section-heading {
    font-size: 32px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }

  .hero-copy p,
  .photo-copy p,
  .lead {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    padding: 0 10px;
  }

  .hero-spec-bar {
    bottom: 22px;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .hero-spec-bar strong {
    font-size: 19px;
  }

  .quiet-section {
    padding: 70px 20px;
  }

  .home-snap > .home-panel {
    min-height: 100svh;
  }

  .home-proof-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-proof-stats .stat-grid {
    grid-template-columns: 1fr;
  }

  .selected-work-section {
    align-items: stretch;
    display: block;
    padding-bottom: 70px;
    padding-top: 82px;
  }

  .stat-grid,
  .image-grid,
  .project-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-tile {
    min-height: 320px;
  }

  .project-carousel .project-card {
    flex-basis: 100%;
  }

  .carousel-button {
    top: 188px;
  }

  .carousel-button-prev {
    left: 8px;
  }

  .carousel-button-next {
    right: 8px;
  }

  .photo-copy h2 {
    font-size: 30px;
  }

  .lightbox {
    padding: 58px 14px 24px;
  }

  .lightbox-frame {
    max-width: 94vw;
  }

  .lightbox-frame img {
    max-height: 74vh;
  }

  .lightbox-close {
    right: 14px;
    top: 14px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
