:root {
  --ink: #11110f;
  --paper: #f2eee5;
  --muted: #5c5546;
  --body: #33302a;
  --line: rgba(17, 17, 15, 0.16);
  --acid: #ddff2e;
  --orange: #ff5a35;
  --orange-deep: #e33f1c;
  --blue: #3346ff;
  --pink: #ff8fc8;
  --cream: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(var(--line) 1px, transparent 1px),
    var(--paper);
  background-size: 4rem 4rem;
  color: var(--ink);
  font-family: "IBM Plex Sans", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Blue rings vanish on blue/ink surfaces — switch to acid there. */
.booking-card :focus-visible,
.footer :focus-visible,
.ticker :focus-visible {
  outline-color: var(--acid);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 50;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--acid);
  font-weight: 700;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

section[id],
footer[id] {
  scroll-margin-top: 6rem;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--x, 78%) var(--y, 18%), rgba(221, 255, 46, 0.38), transparent 24rem),
    radial-gradient(circle at 14% 84%, rgba(255, 90, 53, 0.2), transparent 20rem);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(rgba(0, 0, 0, 0.24) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin: 0.75rem;
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0.25rem 0.25rem 0 var(--ink);
}

.brand-mark {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  font-weight: 900;
}

.brand-speed {
  display: inline-flex;
  gap: 3px;
  transform: skewX(-9deg);
}

.brand-speed i {
  display: block;
  width: 5px;
  height: 1.5rem;
  background: var(--acid);
  border: 1.5px solid var(--ink);
}

.brand-speed i:nth-child(1) {
  opacity: 0.4;
}

.brand-speed i:nth-child(2) {
  opacity: 0.7;
}

.brand-word {
  font-family: Archivo, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  transform: skewX(-9deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 2rem);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.header-mail {
  justify-self: end;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 130ms ease, box-shadow 130ms ease;
}

.header-mail:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.main-nav a {
  /* Negative margins keep the compact pill while growing the hit area. */
  padding: 0.7rem 0.2rem;
  margin: -0.7rem -0.2rem;
  transition: color 160ms ease;
}

.socials a {
  padding: 0.55rem 0.15rem;
  margin: -0.55rem -0.15rem;
}

.main-nav a:hover,
.socials a:hover {
  color: var(--blue);
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.visual-card,
.cap-card,
.service-grid article,
.mini-grid a {
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--cream);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-ghost {
  padding: 0.95rem 1.65rem;
  border: 3px solid var(--ink);
  border-radius: 6px;
  font-family: "IBM Plex Sans", Inter, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 130ms ease, box-shadow 130ms ease, background 130ms ease, color 130ms ease;
}

.btn-primary {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
}

.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--orange);
}

.btn-primary:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 var(--orange);
}

.btn-ghost {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--blue);
}

.btn-ghost:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--blue);
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 var(--blue);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  align-items: baseline;
  margin-top: 2.4rem;
  padding-top: 1.1rem;
  border-top: 2px solid var(--ink);
  max-width: 40rem;
}

.proof-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  color: var(--ink);
  font-family: Archivo, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-proof li + li::before {
  content: "·";
  margin: 0 0.6rem;
  color: var(--orange-deep);
}

.hero-media {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: clamp(22rem, 60vh, 34rem);
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  border: 3px solid var(--ink);
  border-radius: 1.25rem;
  background: linear-gradient(140deg, #0f6e56, #ddff2e 55%, #ff5a35);
  box-shadow: 14px 14px 0 var(--blue);
  transform: rotate(2deg);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: grayscale(0.62) contrast(1.08) brightness(1.03) saturate(0.9);
  display: block;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(140deg, #0f6e56, #ddff2e 55%, #ff5a35);
  mix-blend-mode: overlay;
  opacity: 0.9;
  pointer-events: none;
}

.hero-photo-empty {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
  color: var(--cream);
}

.hero-photo.is-empty {
  background: #0f6e56;
}

.hero-photo.is-empty img,
.hero-photo.is-empty::after {
  display: none;
}

.hero-photo.is-empty .hero-photo-empty {
  display: grid;
}

.media-mark {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  margin: 0 auto 0.4rem;
  border: 3px solid var(--cream);
  border-radius: 50%;
  font-family: Archivo, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
}

.media-tag {
  position: absolute;
  left: -0.6rem;
  bottom: 1.4rem;
  z-index: 5;
  padding: 0.5rem 0.85rem;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hey-bubble {
  position: absolute;
  top: 0;
  right: 12%;
  z-index: 6;
  padding: 0.75rem 0.95rem;
  background: var(--cream);
  color: var(--ink);
  font-family: "Press Start 2P", monospace;
  font-size: 0.95rem;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  rotate: -6deg;
  animation:
    heyPop 0.5s cubic-bezier(0.18, 1.4, 0.4, 1) 0.7s both,
    heyBob 2.8s ease-in-out 1.4s infinite;
}

.hey-bubble::after {
  content: "";
  position: absolute;
  left: 22%;
  bottom: -11px;
  width: 14px;
  height: 14px;
  background: var(--cream);
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}

@keyframes heyPop {
  0% {
    scale: 0;
    opacity: 0;
  }
  70% {
    scale: 1.18;
    opacity: 1;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}

@keyframes heyBob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

/* ---------- Type system ---------- */

.kicker,
.project-meta span,
.ux-row em,
.row-no,
.service-grid span,
.mini-grid span,
.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 1rem 0 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(3rem, 7.5vw, 6.6rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.h1-line {
  display: block;
}

.h1-serif {
  color: var(--orange-deep);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero-lead {
  max-width: 40rem;
  margin: 1.3rem 0 0;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--body);
}

/* Section headings step DOWN from the hero — one loud voice per page. */
.section-head h2,
.footer h2,
.booking-card h2 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

/* The studio statement is editorial, not a shout. */
.statement {
  max-width: 30ch;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.5rem, 2.7vw, 2.4rem) !important;
  font-weight: 800;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}

.statement em {
  color: var(--orange-deep);
  font-family: "Instrument Serif", serif;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 400;
}

/* ---------- Studio ---------- */

.capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cap-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.cap-no {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cap-card h3 {
  margin: 0.5rem 0 0.6rem;
  font-family: Archivo, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.cap-card p {
  margin: 0;
  color: var(--body);
  font-weight: 400;
  line-height: 1.55;
}

.collective-card {
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border: 2px solid var(--ink);
  border-radius: 1.25rem;
  background: var(--acid);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
}

.collective-card .kicker {
  color: rgba(17, 17, 15, 0.72);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  padding: 1rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 0.7rem;
  background: var(--cream);
}

.logo-chip img {
  max-width: 82%;
  max-height: 56%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.82;
  transition: filter 180ms ease, opacity 180ms ease;
}

.logo-chip:hover img {
  filter: none;
  opacity: 1;
}

/* ---------- Booking ---------- */

.booking-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2.5rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 2px solid var(--ink);
  border-radius: 1.25rem;
  background: var(--blue);
  color: var(--cream);
  box-shadow: 0.6rem 0.6rem 0 var(--ink);
}

.booking-badge {
  position: absolute;
  top: -1rem;
  right: clamp(1rem, 4vw, 3rem);
  padding: 0.5rem 0.8rem;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--acid);
  color: var(--ink);
  font-family: Archivo, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  rotate: 3deg;
}

.booking-card .kicker {
  color: rgba(255, 250, 240, 0.88);
}

.booking-card h2 {
  margin-top: 0.5rem;
  color: var(--cream);
  max-width: 22ch;
}

.booking-card p {
  margin: 0.9rem 0 0;
  max-width: 44rem;
  color: rgba(255, 250, 240, 0.94);
  font-weight: 400;
  line-height: 1.55;
}

.booking-action {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.booking-btn {
  white-space: nowrap;
}

.booking-note {
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0.9rem 0;
  animation: ticker 32s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span.hollow {
  /* Faint fill under the stroke keeps hollow words legible at small sizes. */
  color: rgba(242, 238, 229, 0.4);
  -webkit-text-stroke: 1.5px var(--paper);
}

.ticker span::after {
  content: "•";
  margin: 0 clamp(1rem, 2.2vw, 2rem);
  color: var(--acid);
  font-size: 0.55em;
  opacity: 0.7;
  -webkit-text-stroke: 0;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Sections ---------- */

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.35fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-head .kicker {
  grid-column: 1 / -1;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 0.8rem;
}

.section-head p:last-child {
  margin: 0;
  color: var(--body);
  font-weight: 400;
  line-height: 1.6;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.visual-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.visual-card:hover {
  transform: translate(-3px, -3px) rotate(-0.4deg);
  box-shadow: 0.8rem 0.8rem 0 var(--ink);
}

.visual-card.large {
  grid-row: auto;
}

.project-art {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: linear-gradient(135deg, var(--cream), #ffd7df);
}

.project-art img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}

.visual-card:hover .project-art img {
  transform: scale(1.04);
}

.project-art span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: 0.55rem 0.72rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
}

.project-meta {
  flex: 1;
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
  align-content: start;
}

.project-meta h3 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.project-meta p {
  max-width: 34rem;
  margin: 0;
  color: var(--body);
  font-weight: 400;
  line-height: 1.55;
}

/* ---------- UX case studies ---------- */

.ux-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ux-row {
  display: grid;
  grid-template-columns: clamp(12rem, 22vw, 17rem) minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  padding: 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--cream);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ux-row:hover {
  transform: translate(-3px, -3px);
  box-shadow: 0.85rem 0.85rem 0 var(--ink);
}

.ux-row:nth-child(1) {
  background: var(--acid);
}

.ux-row:nth-child(2) {
  background: #d6e1ff;
}

.ux-row:nth-child(3) {
  background: var(--pink);
}

.ux-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: 0.7rem;
  background: var(--cream);
  box-shadow: 0.3rem 0.3rem 0 var(--ink);
}

.ux-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}

.ux-row:hover .ux-thumb img {
  transform: scale(1.06);
}

.ux-body {
  display: grid;
  gap: 0.3rem;
}

.ux-body .row-no {
  color: var(--ink);
  font-size: 0.8rem;
  opacity: 0.7;
}

.ux-row h3 {
  margin: 0.1rem 0 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.ux-row p {
  max-width: 46rem;
  margin: 0.45rem 0 0;
  color: #2c2a26;
  font-weight: 400;
  line-height: 1.55;
}

.ux-side {
  display: grid;
  gap: 0.85rem;
  align-content: center;
  justify-items: end;
  text-align: right;
}

.ux-row em {
  color: var(--ink);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ux-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.1rem 0 0.1rem;
  padding: 0;
  list-style: none;
}

.ux-stats li {
  padding: 0.3rem 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ux-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.ux-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.05rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, color 140ms ease;
}

.ux-btn.primary {
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
}

.ux-btn.primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.ux-btn.ghost {
  background: transparent;
}

.ux-btn.ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ---------- Testimonials ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.3rem, 2.5vw, 2rem);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--cream);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-style: italic;
  line-height: 1.35;
}

.quote-card cite {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Mini grid ---------- */

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mini-grid a {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  overflow: hidden;
  background: var(--acid);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mini-grid a:nth-child(even) {
  background: var(--cream);
}

.mini-grid a:hover {
  transform: translate(-3px, -3px);
  background: var(--pink);
  box-shadow: 0.8rem 0.8rem 0 var(--ink);
}

.mini-thumb {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
}

.mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.mini-grid a:hover .mini-thumb img {
  transform: scale(1.05);
}

.mini-grid span {
  padding: 0.9rem 1rem 0;
}

.mini-grid strong {
  display: block;
  margin-top: 0.35rem;
  padding: 0 1rem 1rem;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

/* ---------- Services ---------- */

.service-grid p {
  margin: 0;
  color: var(--body);
  font-weight: 400;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-grid article {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-grid article:hover {
  transform: translate(-3px, -3px);
  box-shadow: 0.85rem 0.85rem 0 var(--ink);
}

.service-grid article:nth-child(2) {
  background: var(--acid);
}

.service-grid article:nth-child(3) {
  background: var(--blue);
  color: var(--cream);
}

.service-grid article:nth-child(3) span,
.service-grid article:nth-child(3) p {
  color: var(--cream);
}

.service-grid strong {
  display: block;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */

.footer {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.footer .kicker,
.footer .fine-print {
  color: rgba(242, 238, 229, 0.78);
}

.footer h2 {
  max-width: 16ch;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.footer-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.footer-intro .big-link {
  margin-top: 0.4rem;
}

.big-link {
  padding: 0.9rem 1.4rem;
  border: 3px solid var(--paper);
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 5px 5px 0 var(--orange);
  transition: transform 130ms ease, box-shadow 130ms ease;
}

.big-link:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--orange);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  font-weight: 700;
}

.socials a {
  transition: color 160ms ease;
}

.socials a:hover {
  color: var(--acid);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 2px solid var(--paper);
  border-radius: 1.1rem;
  background: var(--cream);
  color: var(--ink);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 0.6rem;
  background: #fff;
  color: var(--ink);
  font-family: "IBM Plex Sans", Inter, sans-serif;
  font-size: 0.95rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0.2rem 0.2rem 0 var(--blue);
}

.contact-form .btn-primary {
  justify-self: start;
  cursor: pointer;
}

.form-note {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2c2a26;
}

.footer-mark {
  margin: 4rem 0 0;
  color: transparent;
  font-family: Archivo, sans-serif;
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(242, 238, 229, 0.28);
  user-select: none;
}

.footer-mark span {
  color: var(--acid);
  -webkit-text-stroke: 0;
}

.fine-print {
  margin-top: 1.4rem;
}

.reveal {
  will-change: transform, opacity;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 1rem;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .section-head,
  .capabilities,
  .visual-grid,
  .service-grid,
  .mini-grid,
  .footer-grid,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    align-items: stretch;
  }

  .project-art {
    aspect-ratio: 16 / 10;
  }

  .ux-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .ux-thumb {
    width: 100%;
    max-width: 26rem;
    aspect-ratio: 16 / 10;
  }

  .ux-side {
    justify-items: start;
    text-align: left;
  }

  .ux-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .service-grid article {
    min-height: 0;
    gap: 1.2rem;
  }
}

@media (max-width: 580px) {
  .site-header {
    margin: 0.5rem;
    padding: 0.7rem;
  }

  .header-mail {
    display: none;
  }

  .hero,
  .section-pad {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .collective-card,
  .visual-card,
  .cap-card,
  .service-grid article,
  .mini-grid a,
  .quote-card {
    box-shadow: 0.28rem 0.28rem 0 var(--ink);
  }

  .hero-photo {
    box-shadow: 9px 9px 0 var(--blue);
    transform: rotate(1.5deg);
  }

  .hey-bubble {
    font-size: 0.8rem;
    right: 8%;
  }

  .booking-badge {
    top: -0.9rem;
    right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
