:root {
  --paper: #f7f8f5;
  --paper-deep: #eef0eb;
  --white: #ffffff;
  --ink: #111318;
  --muted: #5f646d;
  --line: #d9dcd5;
  --blue: #1747d1;
  --blue-soft: #e8edff;
  --green: #167457;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, monospace;
  --page-width: 1240px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(17, 19, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 24, 0.035) 1px, transparent 1px);
  background-position: 0 calc(var(--scroll-progress) * -36px), calc(var(--scroll-progress) * 24px) 0;
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 76%);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

figure {
  margin: 0;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

.scroll-progress {
  position: fixed;
  top: 50%;
  right: max(16px, calc((100vw - var(--page-width)) / 2 - 30px));
  z-index: 25;
  width: 1px;
  height: 116px;
  overflow: hidden;
  background: rgba(17, 19, 24, 0.14);
  transform: translateY(-50%);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleY(var(--scroll-progress));
  transform-origin: top;
  transition: transform 80ms linear;
}

.section-shell {
  width: min(var(--page-width), calc(100% - 56px));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 max(28px, calc((100vw - var(--page-width)) / 2));
  background: rgba(247, 248, 245, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(247, 248, 245, 0.96);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
}

.brand-name {
  font-size: 0.96rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-active {
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: end;
  min-height: calc(100vh - 72px);
  padding: clamp(72px, 9vw, 122px) 0 64px;
}

.hero::before {
  position: absolute;
  top: 18%;
  left: -8%;
  z-index: -1;
  width: min(560px, 52vw);
  height: 1px;
  content: "";
  background: var(--blue);
  box-shadow: 0 18px 0 rgba(23, 71, 209, 0.18), 0 36px 0 rgba(23, 71, 209, 0.09);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-copy.is-visible + .hero-portrait,
.hero-copy.is-visible {
  animation: hero-settle 950ms cubic-bezier(0.18, 0.88, 0.28, 1) both;
}

.hero.is-animated::before {
  animation: signal-draw 950ms 210ms cubic-bezier(0.18, 0.88, 0.28, 1) both;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 8.6rem;
  font-weight: 500;
  line-height: 0.82;
}

.hero-role {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 4.1rem;
  line-height: 1.02;
}

.hero-copy.is-visible .status,
.hero-copy.is-visible h1,
.hero-copy.is-visible .hero-role,
.hero-copy.is-visible .hero-lede,
.hero-copy.is-visible .hero-actions {
  animation: copy-rise 760ms cubic-bezier(0.18, 0.88, 0.28, 1) both;
}

.hero-copy.is-visible h1 {
  animation-delay: 70ms;
}

.hero-copy.is-visible .hero-role {
  animation-delay: 140ms;
}

.hero-copy.is-visible .hero-lede {
  animation-delay: 210ms;
}

.hero-copy.is-visible .hero-actions {
  animation-delay: 280ms;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button-primary {
  min-width: 210px;
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--ink);
  text-decoration-color: #a7aaa4;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  font-weight: 700;
}

.text-link span {
  color: var(--blue);
}

.hero-portrait {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-portrait img {
  width: 100%;
  height: min(64vh, 670px);
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(0.82) contrast(1.02);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.045);
  will-change: transform;
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  color: var(--muted);
  border-top: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-strip {
  color: var(--white);
  background: var(--ink);
}

.profile-strip-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr 1fr;
  gap: 40px;
  padding-block: 35px;
}

.profile-strip p {
  margin: 0;
  color: #c7c9ce;
  font-size: 0.9rem;
}

.profile-strip p span {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.work,
.community {
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  padding-bottom: clamp(54px, 7vw, 90px);
}

.section-index,
.project-number {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 5.4rem;
  font-weight: 500;
  line-height: 0.98;
}

.section-heading > div > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.case-study {
  padding: clamp(58px, 7vw, 90px) 0;
  border-top: 1px solid var(--ink);
}

.case-study:last-child {
  padding-bottom: 0;
}

.case-study-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}

.project-number {
  margin-bottom: 14px;
}

.case-study h3,
.community-story h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 5.8rem;
  font-weight: 500;
  line-height: 0.88;
}

.project-summary {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.3rem;
}

.product-window {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #cfd2cc;
  box-shadow: 0 26px 80px rgba(22, 28, 38, 0.1);
  transform:
    perspective(1200px)
    translate3d(var(--tilt-x, 0), var(--parallax-y, 0), 0)
    rotateX(var(--tilt-rotate-x, 0deg))
    rotateY(var(--tilt-rotate-y, 0deg));
  transform-origin: center;
  will-change: transform;
}

.product-window::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: linear-gradient(
    112deg,
    transparent 28%,
    rgba(255, 255, 255, 0.5) 47%,
    transparent 64%
  );
  transform: translateX(var(--shine-x, -70%));
  transition: opacity 280ms ease, transform 280ms ease;
}

.product-window.is-tilting {
  box-shadow: 0 38px 100px rgba(22, 28, 38, 0.18);
}

.product-window.is-tilting::after {
  opacity: 1;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  background: #eff1ed;
  border-bottom: 1px solid #d7dad4;
}

.window-bar > span {
  width: 7px;
  height: 7px;
  background: #a9ada6;
  border-radius: 50%;
}

.window-bar p {
  margin: 0 0 0 8px;
  color: #777c75;
  font-size: 0.68rem;
}

.product-window > img,
.product-window figure > img {
  width: 100%;
  height: auto;
}

.product-window-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: visible;
  background: #cfd2cc;
  border: 0;
  box-shadow: none;
}

.product-window-pair figure {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #cfd2cc;
  box-shadow: 0 20px 60px rgba(22, 28, 38, 0.09);
}

.case-study-details {
  display: grid;
  grid-template-columns: minmax(230px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(45px, 8vw, 120px);
  padding-top: 42px;
}

.project-impact p {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.project-impact strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1;
}

.project-impact span {
  color: var(--muted);
}

.project-narrative > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.25rem;
}

.detail-list {
  max-width: 720px;
  padding: 0;
  margin: 28px 0 20px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.detail-list li {
  padding: 13px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  display: inline-block;
  width: 90px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.about {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 10vw, 150px);
  padding-bottom: 80px;
}

.about-lede {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1.04;
}

.about-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.25rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.principles li {
  min-height: 230px;
  padding: 20px 22px 0 0;
  border-right: 1px solid var(--line);
}

.principles li + li {
  padding-left: 22px;
}

.principles li:last-child {
  border-right: 0;
}

.principles span {
  display: block;
  margin-bottom: 60px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.principles strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.community-story {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--ink);
}

.community-story figure {
  background: var(--white);
  border: 1px solid var(--line);
}

.community-story .meetup-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 14px;
  background: transparent;
  border: 0;
}

.meetup-group-photo {
  grid-column: 1 / -1;
}

.community-story .meetup-demo-photo {
  grid-column: 2;
}

.meetup-gallery figcaption {
  align-self: end;
  padding: 0 6px 4px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.community-story .boundless-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
  gap: 14px;
  background: transparent;
  border: 0;
}

.boundless-event-photo {
  grid-column: 1 / -1;
}

.community-story .boundless-gathering-photo {
  grid-column: 1;
}

.boundless-gallery figcaption {
  align-self: end;
  padding: 0 0 4px 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.community-story img {
  width: 100%;
  height: auto;
}

.community-story-reverse figure {
  order: 2;
}

.community-story-reverse .community-copy {
  order: 1;
}

.community-story-reverse img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.community-story h3 {
  margin-bottom: 24px;
  font-size: 4.6rem;
  line-height: 0.97;
}

.community-copy > p:not(.project-number) {
  color: var(--muted);
  font-size: 1.08rem;
}

.inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 28px 0 18px;
  list-style: none;
}

.inline-facts li {
  padding: 0 13px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.inline-facts li:first-child {
  padding-left: 0;
}

.inline-facts li:last-child {
  border-right: 0;
}

.community-photo {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(250px, 0.26fr);
  gap: 28px;
  align-items: end;
  padding-top: 64px;
  border-top: 1px solid var(--ink);
}

.community-photo img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center 48%;
}

.community-photo figcaption {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact {
  padding: clamp(80px, 10vw, 130px) 0;
  color: var(--white);
  background: var(--blue);
}

.contact-inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) minmax(200px, 0.4fr);
  gap: 40px;
}

.contact .section-index {
  color: #cdd7ff;
}

.contact h2 {
  max-width: 660px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 6.2rem;
  font-weight: 500;
  line-height: 0.9;
}

.contact-inner > div > p {
  max-width: 620px;
  margin: 0;
  color: #dce3ff;
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
}

.contact-links a {
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 5px;
  font-weight: 700;
}

.contact-links .booking-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 12px 16px;
  color: var(--blue);
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-links .booking-link:hover {
  background: #dce3ff;
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 720ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@keyframes copy-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-settle {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

@keyframes signal-draw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

[data-parallax] {
  transition: transform 130ms linear;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  body::before {
    background-position: 0 0;
  }

  [data-parallax] {
    transform: none !important;
  }

  .hero.is-animated::before,
  .hero-copy.is-visible .status,
  .hero-copy.is-visible h1,
  .hero-copy.is-visible .hero-role,
  .hero-copy.is-visible .hero-lede,
  .hero-copy.is-visible .hero-actions {
    animation: none;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 6.4rem;
  }

  .hero-role {
    font-size: 3.2rem;
  }

  .section-heading h2 {
    font-size: 4.3rem;
  }

  .case-study h3 {
    font-size: 4.8rem;
  }

  .contact h2 {
    font-size: 5.2rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 40px;
  }

  .profile-strip-inner,
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles li:nth-child(2) {
    border-right: 0;
  }

  .principles li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .contact-inner {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .contact-links {
    grid-column: 2;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 28px, var(--page-width));
  }

  .site-header {
    min-height: 64px;
    padding: 0 14px;
  }

  .brand-name {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 35;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 22px;
    visibility: hidden;
    background: rgba(247, 248, 245, 0.98);
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

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

  .site-nav a {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 0 46px;
  }

  h1 {
    font-size: 4.8rem;
  }

  .hero-role {
    font-size: 2.7rem;
  }

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

  .hero-portrait img {
    height: min(105vw, 560px);
  }

  .profile-strip-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scroll-progress {
    display: none;
  }

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

  .section-heading h2 {
    font-size: 3.6rem;
  }

  .case-study-head,
  .case-study-details,
  .about-layout,
  .community-story,
  .community-photo,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .case-study-head {
    gap: 18px;
  }

  .case-study h3 {
    font-size: 3.5rem;
  }

  .product-window-pair {
    grid-template-columns: 1fr;
  }

  .case-study-details {
    gap: 36px;
  }

  .about-layout {
    gap: 28px;
    padding-bottom: 55px;
  }

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

  .principles li,
  .principles li + li {
    min-height: auto;
    padding: 20px 0 28px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .principles span {
    margin-bottom: 28px;
  }

  .community-story {
    gap: 34px;
  }

  .community-story .meetup-gallery {
    grid-template-columns: minmax(0, 0.25fr) minmax(0, 0.75fr);
    gap: 10px;
  }

  .community-story .boundless-gallery {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.25fr);
    gap: 10px;
  }

  .community-story-reverse figure,
  .community-story-reverse .community-copy {
    order: initial;
  }

  .community-story h3 {
    font-size: 3.4rem;
  }

  .community-photo {
    gap: 16px;
  }

  .community-photo img {
    max-height: none;
  }

  .contact-inner {
    gap: 28px;
  }

  .contact-links {
    grid-column: auto;
  }

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