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

:root {
  --ink: #1d5067;
  --ink-deep: #102f3e;
  --ink-soft: #315e70;
  --tiffany: #0abab5;
  --tiffany-dark: #087f7b;
  --tiffany-pale: #d9f1ef;
  --paper: #efeee9;
  --paper-light: #f9f8f4;
  --surface: #ffffff;
  --mist: #e2e8e6;
  --stone: #d6d2ca;
  --text: #1c292f;
  --muted: #5b686e;
  --line: rgba(29, 80, 103, 0.17);
  --line-strong: rgba(29, 80, 103, 0.3);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(16, 47, 62, 0.13);
  --display: "Newsreader", Georgia, serif;
  --body: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(16, 47, 62, 0.015) 4px),
    repeating-linear-gradient(90deg, transparent 0, transparent 5px, rgba(16, 47, 62, 0.012) 6px);
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.65rem 0.9rem;
  background: var(--ink-deep);
  color: #fff;
  font-size: 0.8rem;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(239, 238, 233, 0.94);
  backdrop-filter: blur(16px);
}

.nav-inner,
.shell {
  width: min(calc(100% - 64px), var(--max-width));
  margin: 0 auto;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}

.nav-logo img {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--ink-deep);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.nav-links a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--tiffany);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:not(.nav-contact):hover::after,
.nav-links a:not(.nav-contact):focus-visible::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 0.65rem 1rem;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  border-color: var(--tiffany-dark);
  background: var(--tiffany-pale);
  color: var(--ink-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(10, 186, 181, 0.17), transparent 26%),
    var(--paper);
}

.hero::after {
  position: absolute;
  top: 0;
  right: max(2rem, calc((100vw - var(--max-width)) / 2));
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.hero-inner {
  min-height: 650px;
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.68fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow,
.section-label,
.card-index,
.project-type,
.duration,
.proof-label,
.detail-kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 30px;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 500;
}

.eyebrow::before,
.section-label::before {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--tiffany);
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin: 1.75rem 0 1.5rem;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: clamp(3.7rem, 5.65vw, 5.8rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--tiffany-dark);
  font-weight: 400;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.78;
}

.hero-actions,
.section-actions {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.button {
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button::after {
  content: "↗";
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

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

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

.button-primary {
  background: var(--tiffany);
  color: var(--ink-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--tiffany-dark);
  color: #fff;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
  background: var(--surface);
}

.hero-brief {
  position: relative;
  z-index: 1;
  padding: 2.2rem 2.2rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(16, 47, 62, 0.08);
}

.hero-brief::before {
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border: 1px solid var(--tiffany);
  content: "";
}

.brief-topline {
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--tiffany-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-title {
  margin: 1.4rem 0 1rem;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 450;
  line-height: 1.08;
}

.brief-list {
  list-style: none;
}

.brief-list li {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.brief-list svg {
  width: 26px;
  height: 26px;
  color: var(--tiffany-dark);
  stroke-width: 1.5;
}

.proof-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

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

.proof-item {
  min-height: 126px;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-value {
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 550;
  line-height: 1.05;
}

.proof-label {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.61rem;
}

.section {
  padding: 7.5rem 0;
}

.section-light {
  background: var(--paper-light);
}

.section-gray {
  background: var(--paper);
}

.section-head {
  margin-bottom: 3.4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: 5rem;
}

.section-head h2,
.founder-copy h2,
.cta-copy h2,
.detail-hero h1 {
  margin-top: 1.4rem;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-intro,
.founder-copy > p,
.cta-copy p,
.detail-lede {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.section-intro strong,
.founder-copy strong,
.detail-lede strong {
  color: var(--text);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 2rem;
  overflow: hidden;
  background: var(--surface);
}

.service-card:nth-child(2) {
  background: var(--tiffany-pale);
}

.service-card::after {
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 9rem;
  height: 9rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transition: transform 0.35s ease;
}

.service-card:hover::after {
  transform: scale(1.15);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.icon-box svg,
.engagement-icon svg,
.detail-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.card-index {
  color: var(--tiffany-dark);
  font-size: 0.66rem;
}

.service-card h3 {
  max-width: 260px;
  margin: 3.2rem 0 1rem;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 550;
  line-height: 1.05;
}

.service-card p {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 285px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.project-card:hover,
.project-card:focus-visible {
  z-index: 2;
  border-color: var(--tiffany-dark);
  box-shadow: 0 20px 45px rgba(16, 47, 62, 0.1);
  transform: translateY(-5px);
}

.project-card:nth-child(1) {
  grid-column: span 7;
  min-height: 360px;
  background: var(--tiffany-pale);
  color: var(--text);
}

.project-card:nth-child(2) {
  grid-column: span 5;
  background: var(--mist);
}

.project-card:nth-child(3),
.project-card:nth-child(4),
.project-card:nth-child(5) {
  grid-column: span 4;
}

.project-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.project-card-head {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.project-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  min-height: 2rem;
}

.project-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  height: 2rem;
  padding-right: 0.55rem;
  border-right: 1px solid var(--line);
  flex: 0 0 auto;
}

.project-logo:last-child {
  padding-right: 0;
  border-right: 0;
}

.project-logo img {
  display: block;
  width: auto;
  max-height: 1.75rem;
  object-fit: contain;
}

.project-logo--paynet img { height: 1.7rem; }
.project-logo--aws img { height: 1.75rem; }
.project-logo--bolttech img { width: 6.4rem; }
.project-logo--azure img,
.project-logo--databricks img { width: 1.4rem; height: 1.4rem; }

.project-logo--ntt {
  width: 5.25rem;
  overflow: hidden;
}

.project-logo--ntt img {
  width: 5.25rem;
  height: 5.25rem;
  max-height: none;
  object-fit: cover;
}

.project-logo-name {
  color: var(--ink-deep);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.project-type {
  color: var(--tiffany-dark);
  font-size: 0.63rem;
  font-weight: 500;
}

.project-card:first-child .project-type {
  color: var(--tiffany-dark);
}

.project-arrow {
  color: var(--ink);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.project-card:first-child .project-arrow {
  color: var(--ink);
}

.project-card:hover .project-arrow,
.project-card:focus-visible .project-arrow {
  transform: translate(3px, -3px);
}

.project-card h3 {
  max-width: 620px;
  margin: 3rem 0 0.85rem;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.55rem);
  font-weight: 540;
  line-height: 1.08;
}

.project-card--with-logos h3 {
  margin-top: 1.7rem;
}

.project-card:first-child h3 {
  color: var(--ink-deep);
  font-size: clamp(2.2rem, 3.4vw, 3.45rem);
}

.project-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.project-card:first-child p {
  color: var(--muted);
}

.project-status {
  margin-top: 1.3rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card:first-child .project-status {
  color: var(--ink-soft);
}

.founder-section {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  color: var(--text);
}

.founder-section::before {
  position: absolute;
  top: -15rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(10, 186, 181, 0.34);
  border-radius: 50%;
  content: "";
}

.founder-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.founder-collage {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
}

.founder-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.founder-photo:first-child {
  grid-row: span 2;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.02);
  transition: filter 0.35s ease, transform 0.5s ease;
}

.founder-photo:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.founder-photo:first-child img {
  object-position: center top;
}

.founder-photo:nth-child(2) img {
  object-position: center 38%;
}

.founder-photo:nth-child(3) img {
  object-position: center 24%;
}

.founder-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.4rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(16, 47, 62, 0.84));
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-section-label {
  margin-bottom: 2.5rem;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.founder-copy h2 {
  color: var(--ink-deep);
}

.founder-copy > p {
  margin-top: 1.5rem;
  color: var(--muted);
}

.founder-copy strong {
  color: var(--text);
}

.founder-facts {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.founder-fact {
  min-height: 110px;
  padding: 1.15rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.25);
}

.founder-fact strong {
  display: block;
  color: var(--tiffany-dark);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.founder-fact span {
  margin-top: 0.45rem;
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.engagement-list {
  border-top: 1px solid var(--line-strong);
}

.engagement-row {
  min-height: 148px;
  padding: 1.6rem 0;
  display: grid;
  grid-template-columns: 64px minmax(210px, 0.7fr) minmax(300px, 1fr) 110px;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line-strong);
}

.engagement-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--tiffany-pale);
  color: var(--ink);
}

.engagement-row h3 {
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 560;
  line-height: 1.1;
}

.engagement-row p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.duration {
  color: var(--tiffany-dark);
  font-size: 0.65rem;
  text-align: right;
}

.included-bar {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.included-bar p {
  color: var(--muted);
  font-size: 0.82rem;
}

.included-bar strong {
  color: var(--ink-deep);
}

.text-link {
  flex: 0 0 auto;
  color: var(--ink-deep);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration-color: var(--tiffany);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--tiffany-dark);
}

.cta-section {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  background: var(--tiffany-pale);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.cta-copy {
  max-width: 790px;
}

.cta-copy .section-label {
  border-color: rgba(16, 47, 62, 0.34);
  background: transparent;
  color: var(--ink-deep);
}

.cta-copy .section-label::before {
  background: var(--tiffany);
}

.cta-copy h2 {
  margin-top: 1.2rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.cta-copy p {
  max-width: 640px;
  margin-top: 1rem;
  color: rgba(16, 47, 62, 0.78);
}

.cta-section .button-primary {
  min-width: 190px;
}

.site-footer {
  padding: 2.3rem 0;
  border-top: 1px solid var(--line);
  background: var(--mist);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.72rem;
}

.footer-inner a {
  color: var(--ink-deep);
  font-weight: 700;
  text-decoration: none;
}

.footer-note {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Working together page */
.detail-hero {
  padding: 7rem 0 6rem;
  background:
    linear-gradient(90deg, transparent 0 66%, rgba(10, 186, 181, 0.09) 66% 100%),
    var(--paper);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.detail-hero h1 {
  max-width: 830px;
  font-size: clamp(3.7rem, 5.7vw, 5.9rem);
}

.detail-lede {
  margin-top: 1.7rem;
  max-width: 690px;
  font-size: 1.08rem;
}

.detail-aside {
  padding: 1.7rem;
  border-top: 4px solid var(--tiffany);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
}

.detail-aside p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.detail-aside strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 520;
  line-height: 1.1;
}

.detail-stack {
  display: grid;
  gap: 1rem;
}

.engagement-detail {
  display: grid;
  grid-template-columns: 86px minmax(250px, 0.72fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.engagement-detail:nth-child(2) {
  background: var(--tiffany-pale);
}

.detail-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.detail-kicker {
  color: var(--tiffany-dark);
  font-size: 0.62rem;
}

.engagement-detail h2 {
  margin-top: 0.65rem;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 550;
  line-height: 1.05;
}

.detail-copy > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.detail-meta {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.detail-meta div {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.detail-meta strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-deep);
  font-size: 0.72rem;
}

.detail-meta span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.process-step {
  min-height: 245px;
  padding: 1.6rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.process-step span {
  color: var(--tiffany-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 3rem 0 0.75rem;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 560;
}

.process-step p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.deliverable-card {
  min-height: 245px;
  padding: 1.7rem;
  border-top: 4px solid var(--tiffany);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.deliverable-card h3 {
  margin: 1.6rem 0 0.7rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 520;
  line-height: 1.08;
}

.deliverable-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.deliverable-card .icon-box {
  border-color: var(--line-strong);
  color: var(--tiffany-dark);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: reveal-in 0.65s ease forwards;
  }

  .hero-copy.reveal { animation-delay: 0.08s; }
  .hero-actions.reveal { animation-delay: 0.16s; }
  .hero-brief.reveal { animation-delay: 0.2s; }

  @keyframes reveal-in {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 4rem;
  }

  .hero-brief {
    max-width: 620px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

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

  .section-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .service-card {
    min-height: 290px;
  }

  .project-card:nth-child(n) {
    grid-column: span 6;
  }

  .project-card:nth-child(1) {
    min-height: 320px;
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-collage {
    min-height: 520px;
  }

  .engagement-row {
    grid-template-columns: 64px minmax(190px, 0.8fr) 1fr;
  }

  .duration {
    grid-column: 2;
    text-align: left;
  }

  .engagement-detail {
    grid-template-columns: 70px 1fr;
  }

  .detail-copy {
    grid-column: 2;
  }

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

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

@media (max-width: 720px) {
  .nav-inner,
  .shell {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .site-nav {
    height: 68px;
  }

  .nav-logo img {
    width: 126px;
  }

  .nav-links {
    gap: 0.65rem;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .nav-contact {
    padding: 0.55rem 0.8rem;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 4.6rem;
    padding-bottom: 4.5rem;
  }

  .hero h1,
  .detail-hero h1 {
    font-size: clamp(3.15rem, 13vw, 4.1rem);
  }

  .hero-brief {
    padding: 1.6rem 1.5rem 1rem;
  }

  .hero-brief::before {
    inset: 8px -8px -8px 8px;
  }

  .proof-item {
    min-height: 106px;
    padding: 1.1rem;
  }

  .proof-value {
    font-size: 1.35rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section-head {
    margin-bottom: 2.5rem;
  }

  .section-head h2,
  .founder-copy h2,
  .cta-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .service-card {
    min-height: 275px;
    padding: 1.5rem;
  }

  .service-card h3 {
    margin-top: 2.4rem;
  }

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

  .project-card:nth-child(n) {
    grid-column: auto;
    min-height: 275px;
  }

  .project-card:nth-child(1) {
    min-height: 325px;
  }

  .founder-collage {
    min-height: 650px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr 0.65fr;
  }

  .founder-photo:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .engagement-row {
    padding: 1.4rem 0;
    grid-template-columns: 52px 1fr;
    gap: 0.8rem 1rem;
  }

  .engagement-row p,
  .duration {
    grid-column: 2;
  }

  .included-bar,
  .cta-layout,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .included-bar {
    display: flex;
  }

  .cta-layout {
    display: flex;
  }

  .cta-section .button-primary {
    width: 100%;
  }

  .footer-inner {
    display: flex;
  }

  .detail-hero {
    padding: 5rem 0 4rem;
    background: var(--paper);
  }

  .engagement-detail {
    padding: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .detail-copy {
    grid-column: auto;
  }

  .detail-meta,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 205px;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-value {
    font-size: 1.15rem;
  }

  .founder-collage {
    min-height: 560px;
  }

}
