/* ─── Reset ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* ─── Tokens ──────────────────────────────────── */
:root {
  --blue: #155B94;
  --purple: #580069;
  --sand: #F4F4F4;
  --off-white: #F4F4F4;
  --card-bg-light: #FBFBFB;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --darkbg: #333448;
  --teal: #55D5D9;
  --ink-2: #2e2e2e;
  --ink-3: #888888;
  --rule: #E2DCDC;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --font-mono: 'Figtree', sans-serif;

  /* 8pt grid */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 40px;
  --s6: 48px;
  --s8: 64px;
  --s10: 80px;
}

/* ─── Base ───────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.125;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ─── Container ──────────────────────────────── */
.container {
  width: 80%;
  max-width: 1100px;
  margin-inline: auto;
}

/* ─── Nav ─────────────────────────────────────── */
.nav {
  position: absolute;
  top: 72px;
  inset-inline: 0;
  z-index: 200;
  padding-block: 20px;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.nav.scrolled {
  position: fixed;
  top: 0;
  background: #121220;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding-block: 32px;
}

.nav__inner {
  width: 80%;
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__logo {
  width: 50px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.3s ease;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.nav__links a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.nav.scrolled .nav__links a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* ─── Hamburger & Mobile Overlay ─────────────── */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  line-height: 0;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #1A1A1A;
  flex-direction: column;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav-overlay__header {
  width: 80%;
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  margin-bottom: var(--s8);
}

.nav-overlay__header .nav__logo {
  margin-right: auto;
}

.nav__close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  line-height: 0;
}

.nav-overlay__links {
  width: 80%;
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  list-style: none;
}

.nav-overlay__links a {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: opacity 0.2s;
}

.nav-overlay__links a:hover {
  opacity: 0.6;
}

/* ─── Section shell ───────────────────────────── */
.section {
  padding-block: var(--s10);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s1);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--s5);
}

/* ─── 1. Intro ────────────────────────────────── */
#intro {
  height: 85vh;
  background: linear-gradient(to right, #116A83, #3D095B);
  display: flex;
  align-items: flex-end;
}

.intro__content {
  padding-bottom: var(--s10);
}

.intro__heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--white);
  max-width: 720px;
  margin-bottom: var(--s3);
}

.intro__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.6;
}

.intro__scroll {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s5);
  color: var(--white);
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}

.intro__scroll:hover {
  color: var(--white);
}

.intro__scroll-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro__arrow {
  display: block;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ─── 2. Companies ────────────────────────────── */
#companies {
  background: #F4F4F4;
  padding-block: var(--s8);
}


.companies__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}

.company-logo {
  display: flex;
  align-items: center;
}

.company-logo img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
}

.company-logo:nth-child(1) img {
  width: 108px;
}

.company-logo:nth-child(2) img {
  width: 52px;
}

.company-logo:nth-child(3) img {
  width: 107px;
}

.company-logo:nth-child(4) img {
  width: 76px;
}

.company-logo:nth-child(5) img {
  width: 46px;
}

.company-logo:nth-child(6) img {
  width: 75px;
}

/* ─── 3. Work ─────────────────────────────────── */
#work {
  padding-block: var(--s10);
}

.work-cards {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.work-card {
  display: flex;
  height: 400px;
  background: #1D4F77;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.work-card:nth-child(even) {
  background: #35265C;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.work-card:nth-child(even) {
  flex-direction: row-reverse;
}

.work-card__content {
  width: 50%;
  flex-shrink: 0;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-card__top {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.work-card__top .cta-link {
  margin-top: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
}

.tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  padding: 0;
}

.tag+.tag::before {
  content: none;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--white);
}

.cta-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 12px 20px 12px 20px;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cta-link::after {
  content: '→';
}

.cta-link--locked::after {
  content: none;
}

.cta-link--locked:hover img {
  filter: brightness(0);
}

.cta-link:hover {
  background: var(--white);
  color: #000;
  border-color: var(--white);
}

.cta-link:disabled {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  padding: 8px 18px;
}

.cta-link:disabled::after {
  content: none;
}

.work-card__image {
  flex: 1;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.12);
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}


/* ─── 4. Blogs ────────────────────────────────── */
#blogs {
  background: var(--off-white);
  padding-block: var(--s10);
}

.section__footer {
  margin-top: var(--s6);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.blog-card__image {
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.18);
  letter-spacing: 0.05em;
}

.blog-card:nth-child(1) .blog-card__image {
  background: linear-gradient(135deg, #116A83, #3D095B);
}

.blog-card:nth-child(2) .blog-card__image {
  background: linear-gradient(135deg, #116A83, #3D095B);
}

.blog-card:nth-child(3) .blog-card__image {
  background: linear-gradient(135deg, #116A83, #3D095B);
}

.blog-card__body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: var(--s2);
  flex: 1;
}

.blog-card__link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue);
  align-self: flex-start;
  transition: opacity 0.2s;
}

.blog-card__link:hover {
  opacity: 0.7;
}

/* ─── 5. About ────────────────────────────────── */
#about {
  padding-block: var(--s10);
  background: var(--off-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: start;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
  grid-column: 1 / -1;
}

.about__col {
  display: flex;
  flex-direction: column;
}

.about__avatar-spacer {
  height: calc(100px + var(--s5));
}

.about__avatar {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.about__subsection {
  margin-bottom: var(--s6);
}

.about__subsection:last-child {
  margin-bottom: 0;
}

.about__subsection-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s1);
}

.about__col p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.about__list {
  list-style: disc;
  padding-left: 1.25em;
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.6;
}

.about__list li+li {
  margin-top: 8px;
}

/* ─── 6. Testimonials ─────────────────────────── */
#testimonials {
  background: var(--white);
  padding-block: var(--s10);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-bottom: var(--s5);
}

.testimonial-card {
  background: var(--card-bg-light);
  border-radius: 12px;
  padding: var(--s5);
  border: 1px solid #e1e1e1;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}


.author-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.author-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.btn-outline {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  width: fit-content;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 8px 18px;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline::after {
  content: '→';
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ─── 7. Contact ──────────────────────────────── */
#contact {
  padding-block: var(--s10);
  background: var(--darkbg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: start;
}

.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--white);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.contact__email {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--teal);
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.contact__email:hover {
  opacity: 0.68;
}

.contact__social-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--s2);
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.social-link {
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link img {
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.social-link:hover img {
  opacity: 0.68;
}

.social-link:hover {
  color: var(--blue);
}

/* ─── Lightbox ────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
}

img:not(.process-card__icon):not(.footer__logo):not(.nav__logo) {
  cursor: zoom-in;
}

.work-card__image img,
[data-page="index"] img {
  cursor: default !important;
}

.social-link img {
  cursor: pointer !important;
}

/* ─── Back to Top ────────────────────────────── */
.back-to-top {
  margin-top: var(--s8);
  text-align: center;
}

.back-to-top__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.back-to-top__link:hover {
  opacity: 0.7;
}

.back-to-top__label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.back-to-top__arrow {
  width: 24px;
  height: 24px;
}

/* ─── Footer ──────────────────────────────────── */
footer {
  padding-block: 48px;
  padding-inline: max(10%, calc((100% - 1100px) / 2));
  background: #121220;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
}

.footer__logo {
  display: block;
  width: 148px;
  height: 16px;
}

.footer__caption {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.6;
}

/* ─── Project Template ────────────────────────── */

/* 1. Project Title Section */
.project-title {
  background: linear-gradient(to right, #116A83, #3D095B);
  padding-top: 264px;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.project-title .container {
  padding-bottom: var(--s10);
}

.project-title__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.project-page--idv .project-title__inner {
  gap: var(--s3);
}

.project-title__image {
  display: flex;
  justify-content: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.project-title__image img {
  max-width: 100%;
  width: auto;
  display: block;
  cursor: default;
  pointer-events: none;
}

.project-title__eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--s2);
}

.project-title__heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--white);
  max-width: 800px;
}

/* 2. Hero Image Section */
.project-hero {
  width: 100%;
  background: var(--sand);
  overflow: hidden;
}

.project-hero__image {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #116A83, #3D095B);
}

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

/* 3. Overview Section */
.project-overview {
  padding-block: var(--s10);
  background: var(--white);
}

.overview__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s5);
  align-items: start;
}

.overview__meta {
  display: flex;
  flex-direction: column;
  order: 2;
}

.overview__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0;
}

.meta-card {
  background: var(--card-bg-light);
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  padding: var(--s4);
}

.meta-list {
  display: flex;
  flex-direction: column;
}

.meta-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s1);
  padding-block: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.meta-list__item:first-child {
  border-top: none;
  padding-top: 0;
}

.meta-list__item:last-child {
  padding-bottom: 0;
}

.meta-list__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  flex-shrink: 0;
  width: 120px;
}

.meta-list__value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

.overview__content {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  order: 1;
}

.overview__content p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
}

.overview__lede {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 600;
  color: var(--ink) !important;
}

/* 4. Outcomes Section */
.project-outcomes {
  padding-block: var(--s10);
  background: var(--off-white);
  --section-eyebrow: var(--blue);
}

.outcomes__container {
  margin-top: var(--s8);
}

.outcomes-card {
  border-radius: 12px;
  padding: var(--s6);
  margin-top: var(--s6);
}

.project-process:nth-child(even of .project-process) .outcomes-card {
  background: #2C2C40;
  border: 1px solid #202132;
}

.project-process:nth-child(odd of .project-process) .outcomes-card {
  background: var(--card-bg-light);
  border: 1px solid #e1e1e1;
}

.project-process.project-process--dark .outcomes-card,
.project-process.project-process--darker .outcomes-card {
  background: #2C2C40;
  border: 1px solid #202132;
}

.project-process.project-process--light .outcomes-card,
.project-process.project-process--grey .outcomes-card {
  background: var(--card-bg-light);
  border: 1px solid #e1e1e1;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  column-gap: var(--s6);
  row-gap: var(--s3);
}

.outcomes__grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.outcome-item {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 8px;
}

.outcome-item__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--section-eyebrow);
  text-align: center;
  grid-row: 2;
}

.outcome-item__metric {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--section-text);
  text-align: center;
  grid-row: 1;
}

/* 5. How Might We Section */
.big-quote {
  padding-block: var(--s10);
  background: linear-gradient(to right, #202240, #3F415C);
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-quote__quote p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.big-quote__attribution {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-top: var(--s4);
  display: block;
  background: none;
  padding: 0;
}

/* Jira Board */
.jira-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s2);
  margin-top: var(--s6);
}

.jira-board__column {
  background: #26273A;
  border: 1px solid #1D1E30;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: var(--s3) var(--s4);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.jira-board__column--active {
  background: #2D4A61;
  border-color: #162937;
}

/* 6. Findings Section */
.project-process {
  padding-block: var(--s10);
  background: var(--white);
  --section-text: var(--ink);
  --section-text-muted: var(--ink-2);
  --section-text-faint: var(--ink-3);
  --section-eyebrow: var(--blue);
}

.project-process:nth-child(even of .project-process) {
  background: var(--darkbg);
  --section-text: #ffffff;
  --section-text-muted: rgba(255, 255, 255, 0.7);
  --section-text-faint: rgba(255, 255, 255, 0.6);
  --section-eyebrow: var(--teal);
}

.project-process:nth-child(even of .project-process) .process-card {
  background: #2C2C40;
  border: 1px solid #202132;
}

.project-process:nth-child(even of .project-process) .process-card::before {
  background: rgba(255, 255, 255, 0.15);
}

.project-process:nth-child(even of .project-process) .process-card__icon,
.project-process--dark .process-card__icon,
.project-process--darker .process-card__icon {
  filter: brightness(0) saturate(100%) invert(78%) sepia(57%) saturate(403%) hue-rotate(149deg) brightness(105%);
}

.project-process:nth-child(odd of .project-process) .process-card {
  background: var(--card-bg-light);
  border: 1px solid #e1e1e1;
}

.project-process.project-process--dark .process-card,
.project-process.project-process--darker .process-card {
  background: #2C2C40;
  border: 1px solid #202132;
}

.project-process.project-process--light .process-card,
.project-process.project-process--grey .process-card {
  background: var(--card-bg-light) !important;
  border: 1px solid #e1e1e1 !important;
}

.project-process--dark {
  background: var(--darkbg) !important;
  --section-text: #ffffff;
  --section-text-muted: rgba(255, 255, 255, 0.7);
  --section-text-faint: rgba(255, 255, 255, 0.6);
  --section-eyebrow: var(--teal);
}

.project-process--darker {
  background: #1C1D2C !important;
  --section-text: #ffffff;
  --section-text-muted: rgba(255, 255, 255, 0.7);
  --section-text-faint: rgba(255, 255, 255, 0.6);
  --section-eyebrow: var(--teal);
}

.project-process--dark .process-card,
.project-process--darker .process-card {
  background: #2C2C40 !important;
  border: 1px solid #202132 !important;
}

.project-process--dark .process-card::before,
.project-process--darker .process-card::before {
  background: rgba(255, 255, 255, 0.15);
}

.project-process--grey {
  background: var(--off-white) !important;
  --section-text: var(--ink) !important;
  --section-text-muted: var(--ink-2) !important;
  --section-text-faint: var(--ink-3) !important;
  --section-eyebrow: var(--blue) !important;
}

.project-process--light {
  background: var(--white) !important;
  --section-text: var(--ink) !important;
  --section-text-muted: var(--ink-2) !important;
  --section-text-faint: var(--ink-3) !important;
  --section-eyebrow: var(--blue) !important;
}

.project-process--light .process-card__icon,
.project-process--grey .process-card__icon {
  filter: none !important;
}

.project-process--light .process-card {
  background: var(--card-bg-light) !important;
  border: 1px solid #e1e1e1 !important;
}


.process__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  margin-bottom: 32px;
  align-items: start;
}

.process__header--centered {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  gap: 0;
}

.process__header--centered .process__eyebrow {
  margin-bottom: 8px;
}

.process__header--centered .process__title {
  margin-bottom: 16px;
}

.process__header--centered .process__numbered-list {
  margin-top: 24px;
}

.process__section-spacer {
  height: var(--s5);
}

.process__goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  margin-top: var(--s5);
}

.process__goals-grid .process__sub-section {
  margin-top: 0;
}

.process__goals-grid .process-card {
  flex-direction: column;
  gap: var(--s2);
}

.process__goals-grid .process__sub-title {
  margin-bottom: 8px;
}

.goals-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.goals-list__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--s3);
}

.goals-list__item .process-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  height: 28px;
}

.goals-list__item .process-card__title {
  margin-bottom: 24px;
}

.process__sub-section {
  margin-top: var(--s6);
}

.process__sub-section .process__header {
  margin-bottom: var(--s5);
}

.process__sub-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--section-text);
  margin-bottom: 16px;
}

.process-card__description--half {
  max-width: 50%;
}

.process__eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--section-eyebrow);
  margin-bottom: var(--s1);
}

.process__image-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: var(--s2);
}

.process__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--section-text);
  margin-bottom: 16px;
}

.process__description {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.process__description p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--section-text-muted);
  line-height: 1.6;
}

.process__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--s5);
  row-gap: var(--s5);
}

.process__cards--2col {
  grid-template-columns: repeat(2, 1fr);
}

.process__cards--compact {
  row-gap: var(--s3);
}

.process__cards--3col {
  grid-template-columns: repeat(3, 1fr);
}

.process__cards--1col {
  grid-template-columns: 1fr;
}

.process__stacked-cards {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-top: var(--s4);
}

.process__numbered-list {
  margin-top: var(--s4);
  padding-left: var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}


.process-card {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s4);
  background: #C1CAE9;
  border-radius: 12px;
  border: 1px solid transparent;
}

.process-card::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  flex-shrink: 0;
}

.process-card--visual::before {
  display: none;
}

.process-card--visual .process-card__description {
  margin-top: calc(-1 * var(--s2));
}

.process-card--horizontal {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--s3);
  row-gap: var(--s1);
  align-items: start;
  align-content: start;
}

.process-card--horizontal .process-card__icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.process-card--horizontal .process-card__title {
  grid-column: 2;
  grid-row: 1;
}

.process-card--horizontal .process-card__description {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
}

.process-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.process-card__profile {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.process-card__eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s1);
}

.process-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--section-text);
}


.process-card__description {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--section-text-muted);
  line-height: 1.6;
}

.revision-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s10);
}

.revision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}

.revision--reverse {
  direction: rtl;
}

.revision--reverse>* {
  direction: ltr;
}

.revision__image {
  aspect-ratio: 4 / 3;
  margin-top: 0;
}

.revision__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--section-text);
  margin-bottom: var(--s2);
}

.revision__description {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--section-text-muted);
  line-height: 1.6;
}

.comparison-stack {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.comparison__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: start;
}

.comparison__side {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.comparison__side .process-card__image-placeholder {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--section-text-muted);
}

.comparison__caption {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--section-text-muted);
  line-height: 1.6;
}

.comparison__caption-header {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--section-text);
  line-height: 1.45;
  margin-top: var(--s3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comparison__caption-description {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--section-text-muted);
  line-height: 1.6;
  margin-top: var(--s1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-card__image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--rule);
  border-radius: 8px;
  border: inherit;
  margin-top: var(--s4);
}

.process-card__image-placeholder--full {
  aspect-ratio: 21 / 9;
}

img.process-card__image-placeholder--full {
  margin-bottom: 16px;
}

.process-card__image-placeholder--outlined {
  border: 1px solid var(--rule);
}

.process-card__image-placeholder--no-border {
  border: none !important;
}

.project-process:nth-child(odd of .project-process) img:not(.process-card__icon):not(.footer__logo):not(.nav__logo):not(.nav__hamburger-icon),
.project-process--light img:not(.process-card__icon):not(.footer__logo):not(.nav__logo) {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.process-card__image-placeholder--full+.process-card__image-placeholder--full {
  margin-top: var(--s5);
}

.process__cards+.process-card__image-placeholder,
.process__stacked-cards+.process-card__image-placeholder {
  margin-top: var(--s6);
}

.process__image-block .comparison__caption {
  margin-top: 16px;
}

.process__image-block+.process__image-block {
  margin-top: 0;
}

img.process-card__image-placeholder {
  width: auto;
  max-width: 100%;
  height: auto;
  background: none;
  aspect-ratio: auto;
  display: block;
  margin: 0 auto;
}

img.process-card__image-placeholder--square {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top left;
}

.process__cards--image-align img.process-card__image-placeholder {
  width: 100%;
  height: 240px;
  object-fit: cover;
  aspect-ratio: auto;
}

.process__cards--equal-height {
  align-items: stretch;
}

.process__cards--equal-height .process-card {
  height: 100%;
}

.process__cards--equal-height .process-card__image-placeholder {
  margin-top: 0;
  flex-grow: 0;
}

.process__list-supplement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  margin-top: 0;
}

.process__list-supplement>* {
  grid-column: 2;
}

.process__numbered-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  counter-reset: numbered-list;
}

.process__numbered-list li {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--section-text);
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 16px;
  counter-increment: numbered-list;
}

.process__numbered-list li::before {
  content: counter(numbered-list, decimal-leading-zero) ".";
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--section-text);
  flex-shrink: 0;
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 980px) {
  .jira-board {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .about__inner {
    grid-template-columns: 1fr 2fr;
    gap: 32px;
  }

  #intro {
    height: auto;
    min-height: 70vh;
    padding-top: 344px;
  }

  .companies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    row-gap: var(--s4);
  }

  .companies__grid .company-logo:nth-child(1),
  .companies__grid .company-logo:nth-child(4) {
    justify-self: start;
  }

  .companies__grid .company-logo:nth-child(3),
  .companies__grid .company-logo:nth-child(6) {
    justify-self: end;
  }

  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcomes__grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s3);
  }

  .process__section-spacer {
    height: var(--s3);
  }

  .process__cards--1col {
    grid-template-columns: 1fr;
  }

  .process__header {
    gap: var(--s3);
  }

  .process__header .process__sub-title {
    margin-bottom: 0;
  }

  .comparison__caption-header,
  .comparison__caption-description {
    max-width: 100%;
  }

  .revision {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .revision__image {
    order: 2;
  }

  .revision__text {
    order: 1;
  }

  .revision--reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr;
  }

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

  .comparison__caption {}

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: block;
  }

  .companies__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-card {
    flex-direction: column !important;
    height: auto;
  }

  .work-card__content {
    width: 100%;
    padding: 32px;
    min-height: 240px;
    gap: var(--s3);
  }

  .work-card__image {
    height: 200px;
    order: -1;
  }

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

  .about__avatar-spacer {
    display: none;
  }

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

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Project template responsive */
  .project-title {
    padding-top: 100px;
  }

  .project-hero__image {
    height: 300px;
  }

  .overview__layout {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

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

  .outcome-item__metric {
    font-size: 40px;
  }

  .outcome-item__eyebrow {
    font-size: 11px;
  }

  .process__header {
    grid-template-columns: 1fr;
    gap: var(--s1);
  }

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

  .process-card__description--half {
    max-width: 100%;
  }

}

@media (max-width: 560px) {
  .nav__inner {
    gap: 24px;
  }

  .nav__links {
    gap: 16px;
  }

  .companies__grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--s2);
    row-gap: var(--s5);
  }

  .company-logo img {
    max-height: 22px;
  }

  .company-logo:nth-child(1) img {
    width: 72px;
  }

  .company-logo:nth-child(2) img {
    width: 36px;
  }

  .company-logo:nth-child(3) img {
    width: 72px;
  }

  .company-logo:nth-child(4) img {
    width: 54px;
  }

  .company-logo:nth-child(5) img {
    width: 32px;
  }

  .company-logo:nth-child(6) img {
    width: 54px;
  }

  .big-quote__quote p {
    font-size: 24px;
    line-height: 1.3;
  }
}