/* ═══════════════════════════════════════════════════════════
   SAINT WORKS — styles
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink:      #0A0A0A;
  --ink-soft: #141414;
  --paper:    #F2EFE9;
  --paper-2:  #E8E4DB;
  --gray:     #8A8781;
  --gray-d:   #6E6B66;
  --line:     rgba(10,10,10,.14);
  --line-d:   rgba(242,239,233,.16);
  --accent:   #E85C34;

  --pad: clamp(20px, 5vw, 88px);
  --max: 1560px;

  --ease: cubic-bezier(.22,1,.36,1);
  --f: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs: 'Instrument Serif', Georgia, serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

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

/* ── shared type ───────────────────────────────────────── */

.label {
  font-size: clamp(10px, .78vw, 11.5px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-d);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}

.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.dot--live {
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232,92,52,.5);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,92,52,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(232,92,52,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,92,52,0); }
}

.h-section {
  font-size: clamp(2.1rem, 6.4vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -.042em;
  line-height: .94;
}

.arw { font-style: normal; display: inline-block; transition: transform .4s var(--ease); }

/* ── buttons ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: 1.05em 1.7em;
  font-size: clamp(12px, 1vw, 13.5px);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  min-height: 48px;
}

.btn--solid { background: var(--paper); color: var(--ink); }
.btn--solid:hover { background: var(--accent); color: #fff; }
.btn--solid:hover .arw--down { transform: translateY(4px); }
.btn--solid:hover .arw:not(.arw--down) { transform: translate(3px,-3px); }

.btn--ghost { border-color: rgba(242,239,233,.32); color: var(--paper); }
.btn--ghost:hover { border-color: var(--paper); background: rgba(242,239,233,.08); }
.btn--ghost:hover .arw { transform: translate(3px,-3px); }

.btn--big { padding: 1.25em 2.2em; }

/* underline text link */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: clamp(12px, .95vw, 13.5px);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 44px;
}

.btn-line span {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 3px;
  transition: background-size .45s var(--ease), color .35s var(--ease);
}

.btn-line:hover span { background-size: 100% 1px; color: var(--accent); }
.btn-line:hover .arw { transform: translate(3px,-3px); color: var(--accent); }

/* pending (no URL supplied yet) */
[data-pending] { opacity: .34; cursor: default; pointer-events: none; }
.shot[data-pending] { opacity: 1; cursor: default; }
.shot[data-pending] .shot__over { display: none; }

/* ═══════════════ NAV ═══════════════ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0 var(--pad);
  transition: transform .5s var(--ease), background .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(10,10,10,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-d);
}

.nav.is-hidden { transform: translateY(-101%); }

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--paper);
}

.nav__mark {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav__mark sup { font-size: .5em; top: -.7em; position: relative; }

.nav__links {
  display: flex;
  gap: clamp(20px, 2.4vw, 40px);
  margin-left: auto;
}

.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .72;
  transition: opacity .3s ease, color .3s ease;
}
.nav__links a:hover { opacity: 1; color: var(--accent); }

.nav__cta {
  margin-left: clamp(20px, 2.4vw, 44px);
  font-size: 11.5px;
  color: var(--paper);
}
.nav__cta span { padding-bottom: 2px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  margin-right: -10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}
.nav__burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--paper);
  transition: transform .4s var(--ease), opacity .3s ease, width .4s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ── mobile menu ── */
.menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--ink);
  color: var(--paper);
  padding: 120px var(--pad) 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity .4s ease;
}
.menu.is-visible { opacity: 1; }
.menu[hidden] { display: none; }

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

.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-d);
  font-size: clamp(2rem, 11vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}
.menu__links a em {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--accent);
}

.menu__foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}
.menu__foot a { color: var(--paper); }

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 118px var(--pad) 0;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  max-width: var(--max);
  margin: 0 auto;
  background-image: linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 25% 100%;
  opacity: .5;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}

.hero__label { color: var(--gray); margin-bottom: clamp(28px, 5vh, 56px); }

.hero__title {
  font-size: clamp(2.15rem, 8vw, 7.6rem);
  font-weight: 700;
  letter-spacing: -.048em;
  line-height: .92;
  text-transform: uppercase;
  margin-bottom: clamp(40px, 7vh, 88px);
}

.ln { display: block; overflow: hidden; padding-bottom: .04em; }
.ln > span {
  display: block;
  transform: translateY(105%);
  animation: rise 1.05s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { transform: translateY(0); } }

.hero__foot {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: clamp(28px, 4vw, 64px);
}

.hero__sub {
  max-width: 34ch;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.5;
  color: rgba(242,239,233,.7);
}

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

/* entrance for non-masked hero bits */
.anim {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .95s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ── ticker ── */
.ticker {
  position: relative;
  border-top: 1px solid var(--line-d);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding-right: .8em;
  color: rgba(242,239,233,.5);
}
.ticker__track i { font-style: normal; color: var(--accent); padding: 0 .5em; }
@keyframes marquee { to { transform: translateX(-25%); } }

/* ═══════════════ STATEMENT ═══════════════ */

.statement {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(88px, 15vh, 190px) var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.statement__text {
  font-size: clamp(1.45rem, 3.5vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -.032em;
  line-height: 1.14;
  max-width: 20ch;
  margin-left: auto;
  text-align: left;
}
.statement__text em {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}

/* ═══════════════ WORK ═══════════════ */

.work {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(80px, 12vh, 150px);
}

.work__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: clamp(40px, 6vh, 72px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(48px, 8vh, 100px);
}
.work__head .h-section { text-transform: uppercase; }
.work__count { padding-top: .5em; }

/* ── project shared ── */

.proj { margin-bottom: clamp(96px, 16vh, 210px); }
.proj:last-of-type { margin-bottom: clamp(64px, 10vh, 120px); }

.proj__meta {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-bottom: 18px;
}

.num {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
}

.label--live { color: var(--ink); }
.label--concept { color: var(--gray-d); }
.label--concept::before {
  content: "";
  width: 18px; height: 1px;
  background: currentColor;
  display: inline-block;
}

.proj__title {
  font-size: clamp(2.1rem, 5.6vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .93;
  text-transform: uppercase;
}
.proj__title--xl { font-size: clamp(2.3rem, 8vw, 8.4rem); }
.proj__title--wide { font-size: clamp(2.1rem, 5.2vw, 5.2rem); }

.proj__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 18px;
  font-size: clamp(10.5px, .8vw, 12px);
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gray-d);
}
.proj__tags li:not(:last-child)::after {
  content: "—";
  padding: 0 .7em;
  opacity: .5;
}

.proj__desc {
  font-size: clamp(14.5px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--gray-d);
  max-width: 46ch;
}

.proj__cta { margin-top: 20px; }

/* ── shot / mockups ── */

.shot { display: block; position: relative; }

.shot--browser {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #1b1b1b;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 24px 60px -30px rgba(10,10,10,.45);
}

.shot__bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #1b1b1b;
}
.shot__bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  flex: none;
}
.shot__url {
  margin-left: 14px;
  font-size: 10.5px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.42);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot__img { overflow: hidden; background: #0E0E0E; }
.shot__img img {
  width: 100%;
  transition: transform 1s var(--ease);
}
.proj:hover .shot__img img,
.shot:hover .shot__img img { transform: scale(1.035); }

/* full-bleed image shots */
.shot--bleed {
  overflow: hidden;
  border-radius: 8px;
  background: #0E0E0E;
  cursor: pointer;
}
.shot--bleed img {
  width: 100%;
  transition: transform 1.1s var(--ease), filter .6s ease;
}
.shot--bleed:hover img { transform: scale(1.04); }

.shot__over {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,.28);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.shot--bleed:hover .shot__over { opacity: 1; }

.shot__over-label {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 1em 1.8em;
  background: var(--paper);
  color: var(--ink);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform .45s var(--ease);
}
.shot--bleed:hover .shot__over-label { transform: none; }

/* ── 01 lead composition ── */

.proj--lead .proj__stage {
  position: relative;
  margin-top: clamp(32px, 5vh, 56px);
  padding-bottom: clamp(0px, 4vw, 64px);
}

.proj--lead .shot--phone {
  position: absolute;
  right: 3.5%;
  bottom: 0;
  width: clamp(110px, 13vw, 200px);
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #141414;
  box-shadow: 0 26px 50px -20px rgba(10,10,10,.55);
  background: #141414;
}
.proj--lead .shot--phone .shot__img { border-radius: 9px; }

.proj__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(28px, 4vh, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.proj__bottom .proj__cta { margin-top: 0; }

/* ── 02 / 04 split compositions ── */

.proj--split, .proj--offset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}
.proj--split .proj__col { padding-right: 4%; }
.proj--offset .proj__col { padding-left: 4%; }
.proj--split .proj__figure { transform: translateY(clamp(0px, 3vw, 40px)); }
.proj--offset .proj__figure { transform: translateY(clamp(0px, -3vw, 0px)); }
.proj--split .proj__title, .proj--offset .proj__title { margin-top: 6px; }
.proj--split .proj__desc, .proj--offset .proj__desc { margin-top: 26px; }

/* ── 03 full composition ── */

.proj--full .proj__meta--wide {
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(24px, 4vh, 40px);
}

.proj__bottom--full {
  align-items: flex-start;
  gap: clamp(28px, 6vw, 90px);
}
.proj__bottom--full > div:first-child { flex: 1 1 340px; }
.proj__side { flex: 0 1 420px; }

.work__note {
  max-width: 62ch;
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* ═══════════════ SERVICES ═══════════════ */

.services {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 13vh, 170px) var(--pad);
}
.services__head {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 7vh, 84px);
}
.services__head .h-section { text-transform: uppercase; }

.svc { max-width: var(--max); margin: 0 auto; }

.svc__row {
  display: grid;
  grid-template-columns: 64px minmax(0,1.05fr) minmax(0,1fr);
  gap: clamp(16px, 3vw, 56px);
  align-items: baseline;
  padding: clamp(26px, 4vh, 44px) 0;
  border-top: 1px solid var(--line-d);
  transition: padding-left .5s var(--ease);
}
.svc__row:last-child { border-bottom: 1px solid var(--line-d); }
.svc__row:hover { padding-left: clamp(0px, 1.4vw, 22px); }

.svc__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--accent);
}

.svc__name {
  font-size: clamp(1.7rem, 4.2vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -.042em;
  line-height: .96;
  text-transform: uppercase;
  transition: color .4s ease;
}
.svc__row:hover .svc__name { color: var(--accent); }

.svc__desc {
  font-size: clamp(14px, 1.1vw, 16.5px);
  line-height: 1.6;
  color: rgba(242,239,233,.62);
  max-width: 44ch;
}

/* ═══════════════ APPROACH ═══════════════ */

.approach {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(88px, 15vh, 190px) var(--pad);
}

.approach__title {
  font-size: clamp(2.1rem, 6.2vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .95;
  text-transform: uppercase;
  margin: 26px 0 clamp(40px, 6vh, 72px);
  max-width: 16ch;
}
.approach__title em {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -.015em;
  color: var(--accent);
}

.approach__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(24px, 4vw, 72px);
  max-width: 960px;
  margin-left: auto;
}
.approach__body p {
  font-size: clamp(15px, 1.2vw, 17.5px);
  line-height: 1.62;
  color: var(--gray-d);
}

/* ═══════════════ PROCESS ═══════════════ */

.process {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(88px, 14vh, 180px);
}
.process .h-section {
  text-transform: uppercase;
  padding-bottom: clamp(32px, 5vh, 56px);
}

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

.step {
  padding: clamp(26px, 4vh, 46px) clamp(18px, 2vw, 34px) clamp(32px, 6vh, 64px) 0;
  border-right: 1px solid var(--line);
}
.step:last-child { border-right: 0; }

.step__num {
  display: block;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--paper-2);
  margin-bottom: 14px;
  transition: color .45s ease;
}
.step:hover .step__num { color: var(--accent); }

.step__name {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step__desc {
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.55;
  color: var(--gray-d);
  max-width: 26ch;
}

/* ═══════════════ CONTACT ═══════════════ */

.contact {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(96px, 18vh, 220px) var(--pad) clamp(80px, 12vh, 150px);
  overflow: hidden;
}

.contact__grid {
  position: absolute;
  inset: 0;
  max-width: var(--max);
  margin: 0 auto;
  background-image: linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 33.333% 100%;
  opacity: .45;
  pointer-events: none;
}

.contact__title,
.contact__foot {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.contact__title {
  font-size: clamp(2.5rem, 10.4vw, 12rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .9;
  text-transform: uppercase;
}
.contact__title em {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -.02em;
  color: var(--accent);
}

.contact__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  margin-top: clamp(44px, 8vh, 88px);
  padding-top: clamp(32px, 5vh, 48px);
  border-top: 1px solid var(--line-d);
}

.contact__sub {
  font-size: clamp(15px, 1.4vw, 20px);
  color: rgba(242,239,233,.7);
  margin-right: auto;
}

.contact__email {
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: .04em;
  color: rgba(242,239,233,.62);
  border-bottom: 1px solid rgba(242,239,233,.28);
  padding-bottom: 3px;
  transition: color .3s ease, border-color .3s ease;
}
.contact__email:hover { color: var(--accent); border-color: var(--accent); }

/* ═══════════════ FOOTER ═══════════════ */

.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 0 var(--pad) 28px;
  border-top: 1px solid var(--line-d);
}

.foot__top, .foot__bottom { max-width: var(--max); margin: 0 auto; }

.foot__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(36px, 6vw, 80px);
  padding: clamp(48px, 8vh, 90px) 0 clamp(40px, 6vh, 70px);
}

.foot__brand { display: flex; flex-direction: column; gap: 10px; }
.foot__mark {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.foot__mark sup { font-size: .45em; top: -.8em; position: relative; }
.foot__tag { font-size: 13px; color: var(--gray); }

.foot__cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 76px);
}
.foot__col {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(242,239,233,.62);
}
.foot__col .label { color: var(--gray); margin-bottom: 6px; }
.foot__col a { transition: color .3s ease; }
.foot__col a:hover { color: var(--accent); }

.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line-d);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ═══════════════ REVEAL ═══════════════ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 1080px) {
  .svc__row { grid-template-columns: 44px minmax(0,1fr); }
  .svc__desc { grid-column: 2; margin-top: 12px; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .approach__body { grid-template-columns: 1fr; max-width: 620px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__foot { grid-template-columns: 1fr; align-items: start; }
  .hero__sub { max-width: 40ch; }

  .statement__text { max-width: none; margin-left: 0; }

  .proj--split, .proj--offset { grid-template-columns: 1fr; }
  .proj--split .proj__col, .proj--offset .proj__col { padding: 0; }
  .proj--split .proj__figure, .proj--offset .proj__figure { transform: none; }
  /* image first on mobile for both */
  .proj--split .proj__col { order: 2; }
  .proj--split .proj__figure { order: 1; margin-bottom: 32px; }
  .proj--offset .proj__figure { margin-bottom: 32px; }

  .proj--lead .shot--phone { right: 4%; width: clamp(84px, 20vw, 130px); border-width: 4px; }

  .proj__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero { padding-top: 100px; }
  .hero__title { letter-spacing: -.04em; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }

  .work__head { flex-direction: column; gap: 8px; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
  .step:last-child { border-bottom: 0; }
  .step__desc { max-width: none; }

  .svc__row { grid-template-columns: 1fr; gap: 10px; }
  .svc__desc { grid-column: 1; }

  .proj--lead .shot--phone { display: none; }
  .proj--lead .proj__stage { padding-bottom: 0; }

  .contact__foot { flex-direction: column; align-items: flex-start; }
  .contact__foot .btn { width: 100%; justify-content: center; }

  .foot__cols { gap: 28px 40px; }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ln > span { transform: none; }
  .anim { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}
