﻿@font-face {
  font-family: "Urbanchrome";
  src: url("assets/fonts/Urbanchrome Normal.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors */
  --dark: #1F1F1F;
  --light: #ffffff;
  --mint: #E3FADD;
  --paper: #efeff1;
  --blue: #56b7ff;
  --lavender: #e1bbff;
  --orange: #f5a000;
  --container: 1440px;
  --nav-height: 52px;

  /* Fonts */
  --font-title: "Urbanchrome", sans-serif;
  --font-body: "Alexandria", "Outfit", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #202226;
  background: var(--paper);
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}

.navbar {
  background: var(--mint);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  min-height: var(--nav-height);
  padding-block: 0;
}

.nav-row nav {
  grid-column: 2 / -1;
}

.brand,
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f2124;
  text-decoration: none;
  font-weight: 600;
  min-height: var(--nav-height);
}

.brand {
  grid-column: 1;
  text-align: center;
  font-family: "Urbanchrome", sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 1.3vw, 1.45rem);
}

.nav-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-links li,
.nav-links a {
  text-align: center;
}

.nav-links a {
  font-size: clamp(0.76rem, 0.62rem + 0.45vw, 1rem);
  white-space: normal;
  line-height: 1.1;
  padding-inline: 0.35rem;
}

.section--dark {
  background: var(--dark);
  color: var(--light);
}

.section--light {
  background: var(--light);
  color: var(--dark);
}

.section--mint {
  background: var(--mint);
  color: var(--dark);
}

.hero {
  display: grid;
  grid-template-columns: 35.7% 64.3%;
  min-height: 90vh;
}

.hero-art {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: min(74vh, 560px);
  max-width: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.hero-content {
  align-self: center;
  padding: 56px 48px;
  max-width: 720px;
}

.hero-title {
  font-family: "Urbanchrome", sans-serif;
  margin-top: 18px;
  font-size: clamp(4rem, 6.4vw, 7rem);
  color: var(--mint);
  line-height: 0.86;
  letter-spacing: 0.01em;
}

.hero p {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.35vw, 1.4rem);
  max-width: 30ch;
  color: var(--light);
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.hero-button:focus-visible {
  outline: 3px solid #56b7ff;
  outline-offset: 2px;
}

.hero-button--solid {
  background: #ffffff;
  color: #1f1f1f;
}

.hero-button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

/* .hero-sprint {
  font-size: clamp(1.15rem, 3vw, 1.8rem);
} */
.team,
.process,
.values,
.question,
.problem,
.approach,
.prototyping,
.creative,
.design-guidelines {
  padding-block: 78px;
}

.sprint-banner {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sprint-banner__badge {
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lavender);
  color: var(--dark);
  font-family: var(--font-title);
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}

.sprint-banner__label {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.95;
  color: var(--lavender);
}

.process h2 {
  margin-bottom: 28px;
}

.process-research {
  margin-top: 88px;
}

.process-research h3 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.process-research > p {
  margin-top: 12px;
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.35;
}

.research-wide-image {
  width: 100%;
  margin-top: 24px;
  border-radius: 8px;
  border: 1px solid #cbccd0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.key-insights {
  margin-top: 34px;
  padding-top: 44px;
  padding-bottom: 10px;
  position: relative;
}

.key-insights h4 {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.key-insights-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 31, 31, 0.35) transparent;
}

.key-insight-card {
  min-height: 122px;
  padding: 14px 12px;
  border: 1px solid #bdbdbf;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  scroll-snap-align: start;
}

.key-insight-card h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.key-insight-card p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.field-research-image {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin-top: 22px;
  border-radius: 6px;
  object-fit: cover;
}

h1 {
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 5vw, 6.15rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

h2 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4.2vw, 5.35rem);
  line-height: 0.95; 
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.4;
}
.title {
  font-size: clamp(2.8rem, 4.8vw, 6.15rem);
}

.intro {
  margin-top: 18px;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 500;
  max-width: 78ch;
}

.team-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 360px);
  justify-content: center;
  gap: 24px;
}

.member {
  background: #f3f3f4;
  border: 1px solid #d3d4d7;
  border-radius: 4px;
  padding: 12px 10px 20px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  min-height: 468px;
}

.member-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transform: translateZ(0) scale(1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.member-link:hover,
.member-link:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.member-link:focus-visible {
  outline: 3px solid #56b7ff;
  outline-offset: 3px;
}

.tape {
  width: 66%;
  height: 34px;
  background: var(--lavender);
  margin: -28px auto 10px;
  border-radius: 2px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.12);
}

/* random-ish variatie per kaart */
.member:nth-child(6n+1) .tape { transform: rotate(-3deg) translateY(-1px); width: 52%; }
.member:nth-child(6n+2) .tape { transform: rotate(2.5deg); width: 58%; opacity: .95; }
.member:nth-child(6n+3) .tape { transform: rotate(-1.5deg); width: 55%; }
.member:nth-child(6n+4) .tape { transform: rotate(3.5deg) translateX(2px); width: 54%; }
.member:nth-child(6n+5) .tape { transform: rotate(-2.5deg) translateX(-2px); width: 57%; }
.member:nth-child(6n+6) .tape { transform: rotate(1deg); width: 53%; }

.member img {
  width: 84%;
  max-width: 84%;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #ececef;
}

.member h3 {
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.member h3 span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
}

.member p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 400;
}

.values {
  min-height: 1334px;
}

.values h2 {
  color: var(--mint);
}

.values .intro {
  color: #f3f4f5;
  max-width: 82ch;
}

.value-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 20px;
}

.value-row > div {
  min-width: 0;
}

.value-row.right {
  grid-template-columns: 1fr 150px;
  text-align: right;
}

.value-row img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  object-fit: cover;
}

.value-row h3 {
  font-family: "Urbanchrome", sans-serif;
  color: var(--mint);
  font-size: 3.05rem;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.value-row p {
  margin-top: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.question {
  position: relative;
  min-height: 0;
}

.question h2,
.question .question-text,
.question{
  color: var(--dark);
}

.question .container {
  position: relative;
  max-width: 1100px;
}

.old-question-text {
  margin-top: 28px;
  max-width: 44ch;
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  line-height: 1.3;
  color: rgba(31, 31, 31, 0.54);
  font-weight: 400;
}

.question-card {
  position: relative;
  margin-top: 26px;
  max-width: 820px;
  padding: 16px 22px;
  border: 2px solid #dfc8f8;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.question-text {
  max-width: 44ch;
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  line-height: 1.38;
  font-weight: 500;
}

.arrow-mark {
  position: absolute;
  right: 143px;
  top: 187px;
  width: clamp(72px, 9vw, 118px);
  height: auto;
  transform: none;
}

.problem h2 {
  color: var(--mint);
}

.problem {
  min-height: 1180px;
}

.problem-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
}

.state {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.middle-arrow {
  width: clamp(64px, 7vw, 110px);
  height: auto;
  max-height: 180px;
  align-self: center;
  transform: translateY(-150px);
  justify-self: center;
  object-fit: contain;
}

.state-image {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  width: min(100%, 390px);
  border: 6px solid #f1f1f3;
  margin-inline: auto;
}

.state-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.state h3 {
  margin-top: 24px;
  font-family: "Urbanchrome", sans-serif;
  font-size: 2.85rem;
  line-height: 0.94;
}

.state p {
  margin-top: 14px;
  font-size: 1.15rem;
  line-height: 1.4;
}

.approach .intro {
  max-width: 75ch;
}

.design-guidelines {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    var(--mint);
}

.guideline + .guideline {
  margin-top: 14px;
}

.guideline {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.guideline img {
  width: 54px;
  justify-self: center;
}

.guideline-box {
  background: #ffffff;
  border: 1px solid #d7d8d7;
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.guideline-box h3 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 0.95;
}

.guideline-box p {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.4;
}

.creative-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.creative-card {
  min-width: 0;
}

.creative-card--text {
  align-self: center;
}

.creative-card--text h3 {
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  line-height: 0.95;
}

.creative-card--text p {
  margin-top: 12px;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.45;
}

.creative-card--image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.prototyping {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 34%),
    linear-gradient(180deg, #dff7d7 0%, #d9f5cd 100%);
}

.prototyping-copy .intro {
  max-width: 76ch;
}

.prototype-block {
  margin-top: 52px;
}

.prototype-showcase {
  margin-top: 72px;
}

.prototype-block h3 {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 2.8vw, 3.2rem);
  line-height: 0.95;
}

.prototype-subtitle {
  margin-top: 34px;
}

.prototype-note {
  margin-top: 14px;
  font-size: 1.05rem;
  max-width: 60ch;
}

.prototype-gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.prototype-card {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 34, 38, 0.08);
  box-shadow: 0 12px 28px rgba(31, 31, 31, 0.08);
}

.prototype-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.prototype-gallery--screens {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(560px, 72vw);
  gap: 22px;
  overflow-x: auto;
  align-items: stretch;
  padding: 4px 4px 12px;
  scroll-snap-type: x proximity;
}

.prototype-gallery--aidan {
  grid-auto-columns: minmax(720px, 88vw);
}

.prototype-card--screen {
  min-width: 0;
  scroll-snap-align: start;
}

.prototype-card--screen img {
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
}

.prototype-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 42px;
  padding: 0 16px;
  border: 1.5px solid #1f1f1f;
  border-radius: 999px;
  background: #fffdf7;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.prototype-button:hover,
.prototype-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.prototype-button:focus-visible {
  outline: 3px solid #56b7ff;
  outline-offset: 2px;
}

.timeline {
  margin-top: 34px;
  position: relative;
  display: grid;
  gap: 40px;
  padding-left: 160px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 32px;
  bottom: 2px;
  width: 16px;
  background-image: url("assets/line-1.png");
  background-repeat: repeat-y;
  background-size: 16px auto;
  background-position: top center;
}

.timeline article {
  position: relative;
  min-height: 130px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -154px;
  top: 4px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.timeline h4 {
  font-family: "Urbanchrome", sans-serif;
  font-size: clamp(1.5rem, 3vw, 3.05rem);
  line-height: 0.95;
}

.timeline p {
  margin-top: 8px;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
}

.timeline-block--fieldresearch h4 + h4 {
  margin-top: -6px;
}

.timeline-block--fieldresearch p + h4 {
  margin-top: 2px;
}

.timeline-block--fieldresearch h4 + p {
  margin-top: 6px;
}

.footer {
  border-top: 2px solid #dedee0;
  padding: 42px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.footer h4,
.footer h5 {
  font-family: var(--font-title);
  font-size: 2.3rem;
  line-height: 1;
  color: #15171a;
}

.footer h5 {
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.foot-label,
.footer p {
  font-family: var(--font-body);
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.socials a {
  width: 52px;
  height: 52px;
  border: 4px solid #232529;
  border-radius: 11px;
  color: #232529;
  font-size: 1.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: var(--mint);
  color: #1f1f1f;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.back-to-top:focus-visible {
  outline: 3px solid #56b7ff;
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    font-size: clamp(0.74rem, 0.62rem + 0.4vw, 0.95rem);
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
  }

  .member {
    min-height: 440px;
  }
}

@media (max-width: 900px) {
  .navbar {
    position: static;
  }

  .nav-row {
    display: flex;
    flex-direction: column;
    padding: 12px 0 16px;
    gap: 8px;
  }

  .nav-row nav {
    grid-column: auto;
    width: 100%;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .nav-links a {
    min-height: auto;
    padding: 0.2rem 0.35rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 95vh;
  }

  .hero-art {
    min-height: 290px;
    align-items: end;
    justify-content: center;
  }

  .hero-art img {
    height: clamp(220px, 42vw, 360px);
    width: auto;
  }

  .hero-content {
    padding: 20px 24px 40px;
    max-width: 100%;
  }

  .hero-sprint {
    margin-top: 0;
  }

  .hero p {
    font-size: 1.05rem;
    max-width: 40ch;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member {
    min-height: auto;
  }

  .creative-grid {
    grid-template-columns: 1fr;
  }

  .guideline {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .values,
  .question,
  .problem {
    min-height: 0;
  }

  .value-row,
  .value-row.right {
    grid-template-columns: 96px 1fr;
    text-align: left;
  }

  .value-row.right img {
    order: -1;
  }

  .value-row img {
    width: 96px;
    height: 96px;
  }

  .arrow-mark,
  .middle-arrow {
    display: none;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .timeline {
    padding-left: 94px;
  }

  .timeline::before {
    left: 26px;
  }

  .timeline article::before {
    left: -102px;
    top: 8px;
    width: 80px;
    height: 80px;
  }

  .prototype-gallery {
    grid-template-columns: 1fr;
  }

  .prototype-card img {
    min-height: 0;
  }

  .prototype-gallery--screens {
    grid-auto-columns: minmax(440px, 82vw);
  }

  .prototype-gallery--aidan {
    grid-auto-columns: minmax(560px, 88vw);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 24px);
  }

  .team,
  .values,
  .question,
  .problem,
  .approach,
  .prototyping,
  .creative,
  .design-guidelines,
  .process {
    padding-block: 54px;
  }

  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-row {
    padding: 10px 0 14px;
  }

  .brand {
    font-size: 1rem;
  }

  .nav-links {
    gap: 6px 10px;
  }

  .nav-links a {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 220px;
    padding-top: 16px;
  }

  .hero-art img {
    height: min(56vw, 260px);
  }

  .hero-content {
    padding: 12px 0 28px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 15vw, 4rem);
    line-height: 0.9;
  }

  .hero p {
    margin-top: 16px;
    max-width: 24ch;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-button {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  h2,
  .title {
    font-size: clamp(1.7rem, 8.5vw, 2.7rem);
    line-height: 1;
  }

  p,
  .intro,
  .member p,
  .value-row p,
  .state p,
  .question-text,
  .footer p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .big-quote {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .question-text {
    font-size: 1.05rem;
  }

  .question-card {
    padding: 16px 18px 18px;
  }

  .old-question-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .arrow-mark {
    right: 0;
    top: auto;
    bottom: -28px;
    width: 88px;
  }

  .value-row,
  .value-row.right {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-row.right img {
    order: 0;
  }

  .value-row img {
    width: 88px;
    height: 88px;
  }

  .value-row h3 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .state h3 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .timeline {
    gap: 24px;
  }

  .timeline article {
    min-height: auto;
  }

  .timeline h4 {
    font-size: clamp(1.35rem, 8vw, 2.2rem);
  }

  .timeline {
    padding-left: 28px;
  }

  .timeline::before,
  .timeline article::before {
    display: none;
  }

  .prototype-gallery--screens {
    grid-auto-columns: 88vw;
    gap: 16px;
  }

  .prototype-gallery--aidan {
    grid-auto-columns: 92vw;
  }

  .arrow-mark {
    right: 12px;
    bottom: 10px;
    width: 92px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 20px);
  }

  .team,
  .values,
  .question,
  .problem,
  .approach,
  .prototyping,
  .footer,
  .creative,
  .design-guidelines,
  .process {
    padding-block: 42px;
  }

  .member {
    padding: 10px 10px 16px;
  }

  h2,
  .title {
    font-size: clamp(1.45rem, 8vw, 2.15rem);
  }

  .member h3 {
    font-size: 1.7rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 13vw, 3.2rem);
  }

  .member h3 span {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
  }

  .guideline {
    grid-template-columns: 1fr;
  }

  .guideline img {
    justify-self: start;
  }

  .foot-quote {
    max-width: 18ch;
  }
}
