:root {
  --brand: #922f32;
  --brand-dark: #702225;
  --ink: #171918;
  --ink-soft: #4e5350;
  --paper: #f4f1eb;
  --white: #ffffff;
  --line: #d8d3ca;
  --header-height: 92px;
  --container: 1220px;
  --shadow: 0 24px 64px rgba(18, 20, 19, 0.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #dca8aa;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--brand);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 152px);
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #f2d7d8;
}

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

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Roboto Condensed", Aptos, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.7vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.7vw, 4.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.lead {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.button--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--light {
  color: var(--brand-dark);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--brand);
  align-items: center;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  font-size: 1.4em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid rgba(23, 25, 24, 0.1);
  box-shadow: 0 8px 28px rgba(10, 12, 11, 0.06);
  transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.header--scrolled,
.site-header.menu-active {
  height: 78px;
  background: var(--white);
  border-color: rgba(23, 25, 24, 0.12);
  box-shadow: 0 10px 34px rgba(10, 12, 11, 0.1);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  width: clamp(225px, 19vw, 265px);
  height: 100%;
  align-items: center;
  text-decoration: none;
  transition: width 220ms ease;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header--scrolled .brand,
.menu-active .brand {
  width: clamp(215px, 17vw, 240px);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 12px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button--header {
  min-height: 46px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--brand);
}

.button--header:hover {
  background: var(--brand-dark);
}

.menu-toggle,
.nav-backdrop {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  color: var(--white);
  background: #262926;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 54% 48%;
  transform: rotate(-1deg) scale(1.06);
  animation: hero-settle 1.3s ease-out both;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 12, 11, 0.88) 0%, rgba(10, 12, 11, 0.66) 47%, rgba(10, 12, 11, 0.2) 78%, rgba(10, 12, 11, 0.12) 100%);
}

.hero-grid {
  display: grid;
  padding-top: calc(var(--header-height) + 75px);
  padding-bottom: 120px;
  align-items: center;
}

.hero-content {
  max-width: 940px;
}

.hero-intro {
  max-width: 720px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 30px;
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes hero-settle {
  from { opacity: 0; transform: rotate(-1deg) scale(1.1); }
  to { opacity: 1; transform: rotate(-1deg) scale(1.06); }
}

@keyframes cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--brand);
}

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

.trust-item {
  display: flex;
  min-height: 120px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  flex-direction: column;
  justify-content: center;
}

.trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-item strong {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Section headings */
.section-heading {
  display: grid;
  margin-bottom: clamp(50px, 7vw, 84px);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

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

.section-heading > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.66);
}

/* Services */
.services {
  position: relative;
  color: var(--white);
  background-color: var(--ink);
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 44px;
  overflow: hidden;
}

.services::before {
  position: absolute;
  top: 18%;
  right: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  transform: rotate(45deg);
}

.services .section-heading {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(42px, 6vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.services .section-heading > p {
  color: rgba(255, 255, 255, 0.63);
}

.services-workbench {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.services-visual {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.services-visual > img {
  width: 100%;
  height: clamp(500px, 54vw, 660px);
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.84) contrast(1.04);
}

.services-visual__label {
  position: absolute;
  right: -22px;
  bottom: 96px;
  width: min(82%, 330px);
  padding: 24px 28px 28px;
  background: var(--brand);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.services-visual__label span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-visual__label strong {
  display: block;
  font-family: "Arial Narrow", "Roboto Condensed", Aptos, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.services-visual > p {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.service-ledger {
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.service-line {
  position: relative;
  display: grid;
  min-height: 128px;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.service-line::before {
  position: absolute;
  z-index: -1;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms cubic-bezier(.2, .7, .25, 1);
  inset: 0;
}

.service-line:hover::before,
.service-line:focus-within::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-line--primary {
  min-height: 154px;
  background: rgba(255, 255, 255, 0.045);
}

.service-line--primary::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  content: "";
  background: var(--brand);
}

.service-line__number {
  color: #d8999c;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  align-self: start;
  padding-top: 7px;
}

.service-line h3 {
  margin: 0 0 9px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  transition: transform 250ms ease;
}

.service-line:hover h3 {
  transform: translateX(6px);
}

.service-line p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.88rem;
  line-height: 1.55;
  transition: color 200ms ease;
}

.service-line:hover p {
  color: rgba(255, 255, 255, 0.86);
}

.service-line__tag {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.before-after {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(100px, 13vw, 170px);
  padding-top: clamp(62px, 8vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.before-after__copy h3 {
  max-width: 430px;
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.before-after__copy > p:not(.eyebrow) {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.61);
}

.before-after__legend {
  display: flex;
  gap: 13px;
  max-width: 250px;
  margin-top: 38px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.before-after__legend i {
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  flex: 1;
}

.comparison {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #2a2d2b;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  touch-action: pan-y;
}

.comparison__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.comparison__image--after {
  z-index: 1;
}

.comparison__image--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.comparison__label {
  position: absolute;
  z-index: 4;
  top: 18px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(16, 18, 17, 0.78);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comparison__label--before { left: 18px; }
.comparison__label--after { right: 18px; }

.comparison__divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison__divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.comparison__divider i::before,
.comparison__divider i::after {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  content: "";
  transform: translateY(-50%);
}

.comparison__divider i::before {
  left: 14px;
  border-right: 7px solid var(--white);
}

.comparison__divider i::after {
  right: 14px;
  border-left: 7px solid var(--white);
}

.comparison__range {
  position: absolute;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  inset: 0;
}

.comparison:focus-within .comparison__divider i {
  outline: 3px solid #f2d7d8;
  outline-offset: 4px;
}

.comparison-help {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

/* About */
.about {
  overflow: hidden;
}

.about::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  content: "";
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  left: -24px;
  width: 60%;
  height: 70%;
  content: "";
  background-image: linear-gradient(rgba(146, 47, 50, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(146, 47, 50, 0.1) 1px, transparent 1px);
  background-size: 32px 18px;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 51% center;
}

.experience-stamp {
  position: absolute;
  right: -32px;
  bottom: 42px;
  display: flex;
  width: 160px;
  height: 160px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--brand);
  flex-direction: column;
  text-align: center;
}

.experience-stamp strong {
  font-size: 3.3rem;
  line-height: 1;
}

.experience-stamp span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 600px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.about-copy .lead {
  color: var(--ink);
}

.about-copy .text-link {
  margin-top: 16px;
}

/* Process */
.process {
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.process::before {
  position: absolute;
  top: -230px;
  right: -180px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  transform: rotate(45deg);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process-list li {
  min-height: 300px;
  padding: 34px clamp(22px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list > li > span {
  display: block;
  margin-bottom: 90px;
  color: #d8999c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 16px;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
}

/* Projects */
.projects {
  background: var(--white);
}

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  grid-column: span 4;
  background: #d8d4cc;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2, .65, .25, 1), filter 250ms ease;
}

.gallery-item > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(17, 19, 18, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.84);
  transform: scale(1.035);
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
  transform: translateY(0);
  opacity: 1;
}

.gallery-series {
  display: grid;
  min-width: 0;
  grid-column: span 8;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-series--wide {
  grid-column: span 12;
}

.gallery-series .gallery-item {
  grid-column: auto;
}

/* CTA */
.project-cta {
  position: relative;
  display: grid;
  min-height: 620px;
  padding-block: 100px;
  align-items: center;
  color: var(--white);
  background: var(--brand-dark);
  isolation: isolate;
  overflow: hidden;
}

.project-cta__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/images/16-chatgpt.png") center 48% / cover no-repeat;
}

.project-cta::after {
  position: absolute;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(112, 34, 37, 0.95), rgba(20, 22, 21, 0.72) 66%, rgba(20, 22, 21, 0.28));
  inset: 0;
}

.project-cta__content {
  margin-inline: max(20px, calc((100% - var(--container)) / 2));
}

.project-cta__content h2 {
  max-width: 800px;
  margin-bottom: 20px;
}

.project-cta__content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

/* Contact */
.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-copy .lead {
  margin-bottom: 40px;
  color: var(--ink-soft);
}

.contact-list {
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact-list a {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
  gap: 18px;
  text-decoration: none;
}

.contact-list a:hover strong {
  color: var(--brand);
}

.contact-list span,
.company-number {
  color: #747a76;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.company-number {
  margin-top: 26px;
}

.company-number strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
  letter-spacing: 0;
}

.form-panel {
  padding: clamp(28px, 5vw, 64px);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.form-panel h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.form-panel > p {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.62);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  position: relative;
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--white);
  background: #232624;
  caret-color: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field select {
  color-scheme: dark;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #e5aeb0;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(229, 174, 176, 0.2);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #ffb0b3;
}

.field-error {
  display: block;
  min-height: 1.2em;
  margin-top: 6px;
  color: #ffbfc1;
  font-size: 0.75rem;
}

.field--checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.field--checkbox input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.field--checkbox label {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.field--checkbox .field-error {
  grid-column: 2;
  margin-top: -4px;
}

.required-note {
  margin: -6px 0 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.button--submit {
  width: 100%;
  gap: 16px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Footer */
.site-footer {
  padding-top: 80px;
  color: var(--ink-soft);
  background: var(--white);
  border-top: 4px solid var(--brand);
}

.footer-grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: minmax(250px, 1.5fr) repeat(3, 1fr);
  gap: clamp(40px, 6vw, 80px);
}

.footer-brand img {
  width: 270px;
  height: auto;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 370px;
}

.site-footer h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand);
}

.site-footer p {
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-contact-bar {
  display: none;
}

/* Lightbox */
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: rgba(10, 12, 11, 0.95);
}

.lightbox::backdrop {
  background: rgba(10, 12, 11, 0.92);
}

.lightbox-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 70px 86px 40px;
  place-items: center;
}

.lightbox figure {
  display: grid;
  max-width: min(1100px, 84vw);
  max-height: calc(100vh - 110px);
  margin: 0;
  place-items: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 170px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  place-items: center;
  transition: color 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: var(--ink);
  background: var(--white);
}

.lightbox-close {
  z-index: 2;
  top: 22px;
  right: 22px;
  font-size: 1.7rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

/* Progressive reveal */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .65, .3, 1);
}

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

@media (max-width: 1120px) {
  :root { --header-height: 78px; }

  .site-nav { gap: 17px; }
  .site-nav > a:not(.button) { font-size: 0.77rem; }
  .button--header { display: none; }
  .services-workbench { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: 46px; }
  .service-line { grid-template-columns: 52px minmax(0, 1fr); }
  .service-line__tag { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --header-height: 78px; }

  .container,
  .header-inner { width: min(calc(100% - 32px), var(--container)); }

  .site-header.header--scrolled,
  .site-header.menu-active { height: 78px; }

  .brand {
    width: 190px;
  }

  .header--scrolled .brand,
  .menu-active .brand { width: 180px; }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 12px 10px;
    border: 1px solid rgba(23, 25, 24, 0.32);
    background: transparent;
    align-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
  }

  .header--scrolled .menu-toggle,
  .menu-active .menu-toggle {
    border-color: rgba(23, 25, 24, 0.32);
    background: transparent;
  }

  .header--scrolled .menu-toggle span,
  .menu-active .menu-toggle span { background: var(--ink); }
  .menu-active .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-active .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-active .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    z-index: 2;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100svh - 78px);
    padding: 22px 16px 32px;
    background: var(--white);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    transform: translateY(-20px);
    visibility: hidden;
    opacity: 0;
    transition: transform 220ms ease, opacity 180ms ease, visibility 220ms;
  }

  .menu-active .site-nav {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a:not(.button) {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1rem;
  }

  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button--header { display: inline-flex; margin-top: 18px; }

  .nav-backdrop {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(10, 12, 11, 0.52);
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms;
  }

  .menu-active .nav-backdrop { visibility: visible; opacity: 1; }

  .hero-media {
    object-position: 55% 48%;
    transform: rotate(-1deg) scale(1.1);
    animation-name: hero-settle-mobile;
  }

  @keyframes hero-settle-mobile {
    from { opacity: 0; transform: rotate(-1deg) scale(1.14); }
    to { opacity: 1; transform: rotate(-1deg) scale(1.1); }
  }
  .hero-overlay { background: linear-gradient(90deg, rgba(10, 12, 11, 0.88), rgba(10, 12, 11, 0.55)); }
  .hero-grid { padding-top: calc(var(--header-height) + 70px); }
  .hero-content { max-width: 680px; }
  .scroll-cue { left: 20px; right: auto; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .services-workbench {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .services-visual {
    position: relative;
    top: auto;
  }

  .services-visual > img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .services-visual__label {
    right: 22px;
    bottom: 82px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after__copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 34px;
    align-items: start;
  }

  .before-after__copy .eyebrow,
  .before-after__copy .before-after__legend {
    grid-column: 1 / -1;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { width: min(90%, 640px); }
  .about-visual img { aspect-ratio: 4 / 3.5; }
  .about::before { width: 18%; }

  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li { min-height: 250px; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .process-list > li > span { margin-bottom: 55px; }

  .gallery {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-item,
  .gallery-item--wide { grid-column: span 1; }
  .gallery-series,
  .gallery-series--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  body { padding-bottom: 62px; }
  .section { padding-block: 80px; }

  h1 { font-size: clamp(2.75rem, 13vw, 4.3rem); }
  h2 { font-size: clamp(2.25rem, 10vw, 3.4rem); }

  .brand { width: 176px; }
  .header--scrolled .brand,
  .menu-active .brand { width: 168px; }

  .hero { min-height: 100svh; }
  .hero-media { object-position: 48% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(10, 12, 11, 0.9), rgba(10, 12, 11, 0.48)); }
  .hero-grid { padding-top: 120px; padding-bottom: 115px; align-items: end; }
  .hero-intro { margin-bottom: 30px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .scroll-cue span { display: none; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item {
    min-height: auto;
    padding: 22px 6px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
  .trust-item:last-child { border-right: 0; border-bottom: 0; }

  .services .section-heading { padding-bottom: 38px; }
  .services-visual > img { aspect-ratio: 4 / 5; }
  .services-visual__label {
    right: -6px;
    bottom: 92px;
    padding: 20px 22px 23px;
  }
  .services-visual__label span { margin-bottom: 24px; }
  .service-line {
    min-height: 0;
    padding: 24px 8px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
  }
  .service-line--primary { min-height: 0; }
  .service-line h3 { font-size: 1.8rem; }
  .service-line p { font-size: 0.82rem; }
  .service-line__tag { margin-top: 4px; }
  .before-after { margin-top: 88px; padding-top: 64px; }
  .before-after__copy { display: block; }
  .before-after__copy h3 { font-size: 3rem; }
  .comparison__label { top: 10px; }
  .comparison__label--before { left: 10px; }
  .comparison__label--after { right: 10px; }
  .comparison__divider i { width: 50px; height: 50px; }

  .about-visual { width: calc(100% - 18px); }
  .about-visual img { aspect-ratio: 4 / 4.5; }
  .experience-stamp { right: -18px; bottom: 24px; width: 128px; height: 128px; }
  .experience-stamp strong { font-size: 2.8rem; }

  .process-list { grid-template-columns: 1fr; }
  .process-list li {
    display: grid;
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .process-list li:first-child { border-left: 0; }
  .process-list > li > span { margin: 5px 0 0; }

  .gallery {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall { grid-column: 1; aspect-ratio: 4 / 3; }
  .gallery-series,
  .gallery-series--wide {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .gallery-series .gallery-item { aspect-ratio: 3 / 4; }
  .gallery-item > span { transform: translateY(0); opacity: 1; }

  .project-cta { min-height: 560px; }
  .project-cta__image { background-position: 57% center; }
  .project-cta::after { background: rgba(63, 22, 23, 0.82); }
  .project-cta__content { margin-inline: 20px; }

  .contact-list a { grid-template-columns: 1fr; gap: 4px; }
  .form-panel { margin-inline: -4px; padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 62px;
    padding: 7px;
    background: var(--white);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.16);
    grid-template-columns: 0.85fr 1.15fr;
    gap: 7px;
  }
  .mobile-contact-bar a {
    display: grid;
    color: var(--ink);
    border: 1px solid var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    place-items: center;
    text-decoration: none;
  }
  .mobile-contact-bar a:last-child { color: var(--white); border-color: var(--brand); background: var(--brand); }

  .lightbox-inner { padding: 66px 18px 100px; }
  .lightbox figure { max-width: 100%; }
  .lightbox-nav { top: auto; bottom: 24px; transform: none; }
  .lightbox-prev { left: calc(50% - 58px); }
  .lightbox-next { right: calc(50% - 58px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
