:root {
  --ink: #11171c;
  --muted: #60717c;
  --paper: #edf4f6;
  --paper-deep: #dce9ee;
  --white: #fbfdff;
  --accent: #1e6f91;
  --accent-deep: #123f5a;
  --blue: #1e6f91;
  --green: #466f86;
  --line: rgba(17, 23, 28, 0.14);
  --shadow: 0 24px 80px rgba(17, 23, 28, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle at 18% 8%, rgba(30, 111, 145, 0.14), transparent 30%),
    radial-gradient(circle at 86% 26%, rgba(18, 63, 90, 0.16), transparent 32%),
    linear-gradient(rgba(251, 253, 255, 0.52), rgba(251, 253, 255, 0.52));
}

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

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

.site-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px max(16px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 253, 255, 0.9);
  box-shadow: 0 10px 42px rgba(17, 23, 28, 0.07);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, background 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(-92px);
}

.brand,
.nav-links,
.header-cta,
.button,
.eyebrow,
.case-tag,
.project-meta span,
.approach-item span,
.site-footer {
  font-family: "Archivo", Helvetica, sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a,
.header-cta {
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-cta {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-band {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  width: 100%;
  min-height: clamp(760px, 92vh, 900px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  margin-inline: 0;
  padding: 130px max(16px, calc((100vw - 1180px) / 2)) 64px;
  background:
    radial-gradient(circle at 72% 26%, rgba(154, 215, 234, 0.16), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(251, 253, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #0a2638 0%, #123f5a 100%);
  color: var(--white);
  box-shadow: inset 0 -1px rgba(251, 253, 255, 0.12);
}

.hero-copy,
.intro,
.section-heading,
.contact-copy,
.service-copy {
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.hero .eyebrow {
  color: #9ad7ea;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: min(100%, 600px);
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.7rem, 4.25vw, 4rem);
  font-weight: 600;
  line-height: 1;
  overflow-wrap: break-word;
}

.hero h1 {
  color: var(--white);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
}

h3 {
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.12;
}

.hero-lede {
  max-width: 620px;
  color: rgba(251, 253, 255, 0.82);
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 28px rgba(17, 23, 28, 0.12);
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--accent-deep);
}

.button.secondary {
  background: rgba(251, 253, 255, 0.58);
}

.hero .button.primary {
  border-color: var(--white);
  color: #0a2638;
  background: var(--white);
}

.hero .button.secondary {
  border-color: rgba(251, 253, 255, 0.5);
  color: var(--white);
  background: rgba(251, 253, 255, 0.04);
}

.hero-media {
  position: relative;
  min-height: 0;
  isolation: isolate;
}

.project-collage {
  display: grid;
  width: min(100%, 620px);
  margin-left: auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, 52px);
  gap: 12px;
}

.collage-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 28, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero .collage-card {
  border-color: rgba(251, 253, 255, 0.2);
  box-shadow: 0 28px 90px rgba(3, 16, 25, 0.42);
}

.collage-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(17, 23, 28, 0.16));
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main {
  grid-column: 3 / 13;
  grid-row: 3 / 8;
  z-index: 2;
  transform: rotate(-1.4deg);
}

.collage-top {
  grid-column: 5 / 12;
  grid-row: 1 / 4;
  z-index: 3;
  transform: rotate(1deg);
}

.collage-side {
  grid-column: 1 / 5;
  grid-row: 4 / 8;
  z-index: 1;
  transform: rotate(-1.2deg);
}

.collage-bottom {
  grid-column: 4 / 10;
  grid-row: 6 / 9;
  z-index: 4;
  transform: rotate(1.3deg);
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(251, 253, 255, 0.12);
  background: #082332;
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 44px;
  padding: 18px 0;
  animation: ticker 24s linear infinite;
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker-track span {
  white-space: nowrap;
}

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

.intro {
  width: 100%;
  margin: 0 0 40px;
  padding: clamp(88px, 11vw, 142px) 0 clamp(96px, 12vw, 156px);
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.78), rgba(237, 244, 246, 0.96));
  color: var(--ink);
  box-shadow: inset 0 1px rgba(17, 23, 28, 0.08), inset 0 -1px rgba(17, 23, 28, 0.08);
}

.intro-panel {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
}

.intro-panel .eyebrow {
  color: var(--accent);
}

.intro-panel h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.4vw, 3.45rem);
}

.intro-body p {
  color: #33444d;
  font-size: clamp(1.16rem, 1.8vw, 1.44rem);
  line-height: 1.36;
  margin-bottom: 28px;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(30, 111, 145, 0.22);
  border-radius: 999px;
  background: rgba(251, 253, 255, 0.56);
  color: var(--accent-deep);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work,
.approach,
.services,
.contact {
  padding: 82px 0;
}

.section-heading {
  display: block;
  margin-bottom: 34px;
  text-align: left;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
  padding-top: 0;
}

.section-heading h2 {
  max-width: 1040px;
  margin-bottom: 0;
}

.featured-case {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
}

.case-copy {
  padding: clamp(28px, 5vw, 58px);
}

.case-copy h3 {
  max-width: 520px;
  margin: 14px 0 18px;
  font-size: clamp(1.8rem, 3.3vw, 3.45rem);
  font-weight: 700;
  line-height: 0.92;
}

.case-copy p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.45;
}

.case-tag {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-art {
  display: grid;
  min-height: 430px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(251, 253, 255, 0.18), transparent),
    rgba(251, 253, 255, 0.1);
}

.case-art img {
  width: min(56%, 270px);
  filter: drop-shadow(0 24px 44px rgba(17, 23, 28, 0.22));
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.latest-work {
  margin-bottom: 18px;
}

.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-deep);
  box-shadow: 0 14px 42px rgba(17, 23, 28, 0.08);
}

.project-card.large {
  grid-column: span 2;
}

.project-card.tall {
  grid-row: span 2;
  min-height: 798px;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.project-card-note {
  display: grid;
  min-height: 260px;
  padding: 22px;
  border-color: rgba(30, 111, 145, 0.22);
  background:
    linear-gradient(135deg, rgba(251, 253, 255, 0.68), rgba(220, 233, 238, 0.64)),
    var(--paper-deep);
}

.project-note-content {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.project-note-content span {
  color: var(--accent);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-note-content h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.project-note-content p {
  max-width: 260px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
}

.project-card-note.is-coming-soon {
  background:
    linear-gradient(135deg, rgba(18, 63, 90, 0.08), rgba(251, 253, 255, 0.58)),
    var(--paper-deep);
}

.project-meta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 16px;
  border: 1px solid rgba(251, 253, 255, 0.32);
  border-radius: 8px;
  background: rgba(17, 23, 28, 0.78);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.project-meta span {
  color: rgba(251, 253, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 8px 0 0;
}

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

.approach-item {
  min-height: 310px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 253, 255, 0.38);
}

.approach-item span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.approach-item p {
  color: var(--muted);
  line-height: 1.42;
}

.services {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.service-copy {
  position: sticky;
  top: 118px;
}

.service-copy p:last-child {
  color: #33444d;
  font-size: 1.22rem;
  line-height: 1.42;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 253, 255, 0.54);
}

.service-list h3 {
  margin-bottom: 10px;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.testimonial {
  width: 100%;
  margin-inline: 0;
  padding: clamp(92px, 11vw, 144px) max(16px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(17, 23, 28, 0.08);
  background: linear-gradient(180deg, #dfe6ea, #edf4f6);
}

.testimonial-stage {
  max-width: 1180px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.testimonial-heading {
  max-width: 620px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  text-align: center;
}

.testimonial-heading .eyebrow {
  color: var(--accent);
}

.testimonial-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 0.96;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr);
  justify-content: center;
}

.testimonial-card {
  display: flex;
  min-height: auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(17, 23, 28, 0.12);
  background: rgba(251, 253, 255, 0.74);
  box-shadow: 0 24px 70px rgba(17, 23, 28, 0.08);
}

.testimonial-card-main {
  min-height: auto;
}

.testimonial-card blockquote {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.45vw, 1.34rem);
  font-weight: 500;
  line-height: 1.28;
}

.testimonial-card-main blockquote {
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
  line-height: 1.08;
}

.quote-author {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  margin-top: auto;
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.quote-author span {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact {
  width: 100%;
  margin-top: 56px;
  padding: clamp(58px, 8vw, 98px) 0 clamp(48px, 7vw, 84px);
  background: #0b2638;
  color: var(--white);
}

.contact-inner {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
}

.contact .eyebrow {
  color: #9ad7ea;
}

.contact-copy h2 {
  margin-bottom: 0;
}

.contact-panel {
  padding: 0;
  color: var(--white);
}

.contact-panel p {
  margin-bottom: 0;
  font-size: 1.32rem;
  line-height: 1.38;
}

.contact-panel .button.primary {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.contact-panel .button.secondary {
  border-color: rgba(251, 253, 255, 0.4);
  background: transparent;
}

.site-footer {
  width: 100%;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(251, 253, 255, 0.12);
  background: #0b2638;
  color: rgba(251, 253, 255, 0.72);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.footer-links,
.footer-meta {
  display: flex;
  gap: 16px;
}

.footer-links a,
.footer-meta a {
  color: var(--white);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: #9ad7ea;
}

.footer-meta {
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  text-align: right;
}

.case-page .site-header {
  position: fixed;
  margin: 0;
}

.case-page .site-header.is-hidden {
  transform: translateY(-92px);
}

.case-page .brand {
  grid-column: 1;
}

.case-page .nav-links {
  grid-column: 2;
}

.case-page .header-cta {
  grid-column: 3;
}

.case-page main {
  counter-reset: case-step;
}

.case-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 92px 0 36px;
}

.case-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.case-kicker span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 253, 255, 0.54);
  color: var(--accent-deep);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-hero h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.case-hero p {
  color: #33444d;
  font-size: clamp(1.14rem, 1.7vw, 1.34rem);
  line-height: 1.45;
}

.case-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.case-visual img {
  width: 100%;
  height: min(58vw, 620px);
  object-fit: cover;
}

.case-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 22px 0 72px;
}

.case-summary div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 253, 255, 0.5);
  padding: 18px;
}

.case-summary span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-summary p {
  margin-bottom: 0;
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.case-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(28px, 8vw, 108px);
  margin-bottom: 0;
  padding: clamp(46px, 7vw, 82px) 0;
  border-top: 1px solid rgba(17, 23, 28, 0.18);
  counter-increment: case-step;
}

.case-section:last-of-type {
  border-bottom: 1px solid rgba(17, 23, 28, 0.18);
}

.case-section h2 {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 14px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.case-section h2::before {
  color: var(--accent);
  content: "0" counter(case-step);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-section > div {
  max-width: 760px;
  padding-top: 6px;
}

.case-section p,
.case-section li {
  color: #263943;
  font-size: clamp(1.1rem, 1.65vw, 1.34rem);
  line-height: 1.48;
}

.case-section p {
  margin-bottom: 0;
}

.case-section ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding-left: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 23, 28, 0.14);
}

.case-section li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid rgba(17, 23, 28, 0.14);
}

.case-section li::before {
  position: absolute;
  top: 27px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 44px;
}

.case-gallery figure {
  display: grid;
  margin: 0;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 253, 255, 0.74), rgba(220, 233, 238, 0.38)),
    var(--paper);
  box-shadow: 0 14px 42px rgba(17, 23, 28, 0.08);
  cursor: zoom-in;
  place-items: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.case-gallery figure:hover {
  border-color: rgba(30, 111, 145, 0.42);
  box-shadow: 0 18px 52px rgba(17, 23, 28, 0.12);
  transform: translateY(-2px);
}

.case-gallery img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(17, 23, 28, 0.12));
}

.has-lightbox {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 42px);
  background: rgba(8, 35, 52, 0.86);
  backdrop-filter: blur(18px);
}

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

.image-lightbox figure {
  display: grid;
  width: min(100%, 1320px);
  max-height: 92vh;
  margin: 0;
  place-items: center;
}

.image-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.36);
}

.image-lightbox figcaption {
  margin-top: 14px;
  color: rgba(251, 253, 255, 0.82);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  border: 1px solid rgba(251, 253, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(251, 253, 255, 0.08);
  font-family: "Archivo", Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(251, 253, 255, 0.16);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  padding: 11px 14px;
}

.lightbox-nav {
  top: 50%;
  padding: 12px 16px;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.case-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 42px 0 86px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .section-heading,
  .featured-case,
  .services,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero {
    min-height: auto;
    gap: 14px;
    padding-top: 96px;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(2.55rem, 6.2vw, 3.3rem);
    line-height: 1.04;
  }

  .hero-media {
    margin-top: 0;
  }

  .project-collage {
    width: min(100%, 720px);
    margin-inline: auto;
    grid-template-rows: repeat(8, 36px);
    gap: 10px;
  }

  .section-heading .eyebrow {
    padding-top: 0;
  }

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

  .project-card.large,
  .project-card.tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 390px;
  }

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

  .service-copy {
    position: static;
  }

  .case-hero,
  .case-section {
    grid-template-columns: 1fr;
  }

  .case-section h2 {
    position: static;
  }

  .case-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonial-card,
  .testimonial-card-main {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .site-header {
    gap: 10px;
    padding-inline: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding-inline: 12px;
    font-size: 0.74rem;
  }

  .section-band,
  .footer-inner {
    width: calc(100% - 20px);
  }

  .testimonial {
    width: 100%;
    padding-inline: 10px;
  }

  h1 {
    font-size: clamp(2.12rem, 8vw, 2.6rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero-media {
    margin-top: 24px;
  }

  .project-collage {
    grid-template-rows: repeat(8, 32px);
    gap: 8px;
  }

  .work,
  .approach,
  .services,
  .contact {
    padding: 62px 0;
  }

  .project-grid,
  .approach-grid,
  .case-gallery {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.large,
  .project-card.tall {
    min-height: 330px;
  }

  .case-art {
    min-height: 280px;
  }

  .approach-item {
    min-height: 240px;
  }

  .approach-item span {
    margin-bottom: 34px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  .case-page .site-header {
    grid-template-columns: 1fr auto;
  }

  .case-hero {
    padding-top: 58px;
  }

  .case-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .case-summary {
    grid-template-columns: 1fr;
  }

  .case-visual img {
    height: 320px;
  }

  .image-lightbox {
    align-items: center;
    padding: 64px 12px 76px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: translateY(-1px);
  }

  .case-nav {
    flex-direction: column;
  }
}
