/* ART BY SCOTTO — Gallery Noir
   Ink-dark gallery wall, ivory type, cadmium accent. Anton display / Archivo body / Fraunces italic. */

:root {
  --ink: #101010;
  --char: #1a1816;
  --char-2: #221f1c;
  --ivory: #f2ede3;
  --ivory-dim: rgba(242, 237, 227, 0.62);
  --ivory-faint: rgba(242, 237, 227, 0.38);
  --cad: #d9481c;
  --cad-bright: #ef5a28;
  --gold: #c9a227;
  --hair: rgba(242, 237, 227, 0.14);
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Archivo', 'Helvetica Neue', sans-serif;
  --accent-font: 'Fraunces', Georgia, serif;
  --pad: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  font-weight: 340;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--cad); color: var(--ivory); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 60;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .disp {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.96;
}

.eyebrow {
  font-family: var(--accent-font);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--cad-bright);
  letter-spacing: 0.01em;
}
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 44px; height: 2px;
  background: var(--cad);
  margin-left: 14px;
  vertical-align: middle;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  background: linear-gradient(rgba(16,16,16,0.92), rgba(16,16,16,0.78) 70%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--hair); }
.nav__logo {
  font-family: var(--display);
  font-size: 21px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__logo em {
  font-family: var(--accent-font);
  font-style: italic;
  text-transform: none;
  color: var(--cad-bright);
  font-size: 0.92em;
  letter-spacing: 0;
}
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav__links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 460;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color .2s;
}
.nav__links a:hover { color: var(--ivory); }
.nav__cta {
  text-decoration: none;
  font-size: 13px; font-weight: 560;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory) !important;
  border: 1px solid var(--cad);
  padding: 10px 20px;
  transition: background .2s;
}
.nav__cta:hover { background: var(--cad); }
.nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.nav__burger span, .nav__burger::before, .nav__burger::after {
  content: '';
  position: absolute; left: 8px; right: 8px;
  height: 2px; background: var(--ivory);
  transition: transform .25s, opacity .25s;
}
.nav__burger::before { top: 13px; }
.nav__burger span { top: 19px; }
.nav__burger::after { top: 25px; }
.nav__burger.open::before { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span { opacity: 0; }
.nav__burger.open::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(16,16,16,0.97);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 var(--pad);
  gap: 6px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(34px, 9vw, 56px);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  line-height: 1.16;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--cad-bright); }
.mobile-menu .mm-contact {
  margin-top: 28px;
  font-family: var(--body); font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(48px, 8vh, 96px);
  isolation: isolate;
}
.hero__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 62% 30%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 4%, rgba(16,16,16,0.55) 36%, rgba(16,16,16,0.18) 65%, rgba(16,16,16,0.5)),
    linear-gradient(105deg, rgba(16,16,16,0.72) 8%, transparent 55%);
}
.hero__kicker {
  font-family: var(--accent-font); font-style: italic;
  font-size: clamp(17px, 2.2vw, 23px);
  color: var(--ivory);
  margin-bottom: 14px;
  opacity: 0;
  animation: rise .9s .15s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 {
  font-size: clamp(58px, 11.5vw, 176px);
  max-width: 12ch;
  opacity: 0;
  animation: rise 1s .3s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ivory);
}
.hero h1 .cad { color: var(--cad-bright); }
.hero__sub {
  margin-top: 22px;
  max-width: 54ch;
  color: var(--ivory-dim);
  font-size: clamp(15px, 1.6vw, 18px);
  opacity: 0;
  animation: rise .9s .5s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 34px;
  opacity: 0;
  animation: rise .9s .65s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__credit {
  position: absolute; right: var(--pad); bottom: 18px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory-faint);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 13.5px; font-weight: 560;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  transition: background .2s, color .2s, border-color .2s;
}
.btn:hover { background: var(--ivory); color: var(--ink); }
.btn--cad { background: var(--cad); border-color: var(--cad); }
.btn--cad:hover { background: var(--cad-bright); border-color: var(--cad-bright); color: var(--ivory); }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  padding: 14px 0;
  background: var(--ink);
}
.marquee__track {
  display: flex; gap: 0;
  width: max-content;
  animation: scroll 75s linear infinite;
}
.marquee__track span {
  font-family: var(--display);
  font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ivory-dim);
}
.marquee__track span i {
  font-style: normal;
  color: var(--cad);
  margin: 0 26px;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(72px, 11vh, 140px) var(--pad); }
.section--char { background: var(--char); }
.section__head { margin-bottom: clamp(36px, 6vh, 64px); }
.section__head h2 {
  font-size: clamp(42px, 6.5vw, 96px);
  margin-top: 10px;
}
.section__head h2 .cad { color: var(--cad-bright); }
.section__head .lede {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--ivory-dim);
}
.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.head-row .more {
  font-size: 13px; font-weight: 560; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  color: var(--cad-bright);
  border-bottom: 1px solid var(--cad);
  padding-bottom: 4px;
  white-space: nowrap;
}
.head-row .more:hover { color: var(--ivory); }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }

/* ---------- murals gallery ---------- */
.mural-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.mural-grid figure { position: relative; overflow: hidden; margin: 0; }
.mural-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.mural-grid figure:hover img { transform: scale(1.04); }
.mural-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 18px 14px;
  background: linear-gradient(transparent, rgba(16,16,16,0.85));
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory-dim);
}
.mural-grid figcaption b { color: var(--ivory); font-weight: 560; }
.mg-a { grid-column: span 7; aspect-ratio: 16/10; }
.mg-b { grid-column: span 5; aspect-ratio: 4/3.41; }
.mg-c { grid-column: span 4; aspect-ratio: 4/3; }
.mg-d { grid-column: span 4; aspect-ratio: 4/3; }
.mg-e { grid-column: span 4; aspect-ratio: 4/3; }

/* ---------- tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--hair); border-right: 0; }
.tier {
  border-right: 1px solid var(--hair);
  padding: 30px 22px 28px;
  position: relative;
  text-decoration: none;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: background .25s;
}
.tier:hover { background: var(--char-2); }
.tier__num {
  font-family: var(--accent-font); font-style: italic;
  font-size: 15px; color: var(--ivory-faint);
}
.tier h3 { font-size: clamp(20px, 1.9vw, 27px); margin-top: 10px; }
.tier p { font-size: 14px; color: var(--ivory-dim); margin-top: 12px; flex: 1; }
.tier__price {
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  color: var(--cad-bright);
  line-height: 1;
}
.tier__price small {
  display: block;
  font-family: var(--body); font-size: 11px; font-weight: 460;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: 8px;
}
.tier--mixed .tier__price { color: var(--gold); }
.tiers-note {
  margin-top: 22px;
  font-size: 14px; color: var(--ivory-dim);
  max-width: 72ch;
}
.tiers-note b { color: var(--ivory); font-weight: 560; }

/* ---------- about / maestro ---------- */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.about__img { position: relative; }
.about__img img { width: 100%; }
.about__img::after {
  content: '';
  position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--cad);
  z-index: -1;
}
.about h2 { font-size: clamp(40px, 5.5vw, 80px); margin: 10px 0 22px; }
.about p { color: var(--ivory-dim); margin-bottom: 16px; }
.about p b, .about p strong { color: var(--ivory); font-weight: 560; }
.pull {
  font-family: var(--accent-font); font-style: italic; font-weight: 420;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ivory);
  border-left: 3px solid var(--cad);
  padding-left: 22px;
  margin: 26px 0;
  line-height: 1.4;
}

/* ---------- portraits / characters ---------- */
.work-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.work-row a { overflow: hidden; display: block; position: relative; aspect-ratio: 4/5; }
.work-row img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .6s;
}
.work-row a:hover img { transform: scale(1.05); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid a { overflow: hidden; display: block; aspect-ratio: 4/5; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery-grid a:hover img { transform: scale(1.05); }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--hair); }
.step { padding: 34px 26px 34px 0; border-top: 3px solid transparent; margin-top: -1px; }
.step:hover { border-top-color: var(--cad); }
.step__n {
  font-family: var(--display);
  font-size: 64px;
  color: transparent;
  -webkit-text-stroke: 1px var(--ivory-faint);
  line-height: 1;
}
.step h3 { font-size: 19px; margin: 18px 0 10px; letter-spacing: 0.04em; }
.step p { font-size: 14px; color: var(--ivory-dim); }
.step p b { color: var(--cad-bright); font-weight: 560; }

/* ---------- press ---------- */
.press { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.press__clip { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--hair); box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.press-video { margin-top: clamp(34px, 6vh, 64px); }
.press-video__frame {
  position: relative; aspect-ratio: 16/9;
  border: 1px solid var(--hair);
  overflow: hidden;
  background: #000;
}
.press-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.press-video__cap {
  margin-top: 14px;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory-faint);
}
.press-video__cap b { color: var(--ivory); font-weight: 560; }
.press h2 { font-size: clamp(40px, 5.5vw, 84px); margin: 10px 0 20px; }
.press p { color: var(--ivory-dim); margin-bottom: 14px; }
.press ul { list-style: none; margin-top: 20px; }
.press li {
  padding: 14px 0;
  border-top: 1px solid var(--hair);
  font-size: 15px;
}
.press li b { color: var(--ivory); font-weight: 560; }
.press li span { color: var(--ivory-faint); font-size: 13px; display: block; }

/* ---------- lightbox ---------- */
.lb-zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(8, 8, 8, 0.95);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 6vh 5vw;
}
.lightbox.open { display: flex; animation: lbfade .22s ease both; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: 92vw; max-height: 84vh;
  width: auto; height: auto; object-fit: contain;
  border: 1px solid var(--hair);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: lbpop .26s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes lbpop { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 3.2vh;
  text-align: center;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory-dim);
  pointer-events: none;
  padding: 0 6vw;
}
.lightbox__cap b { color: var(--ivory); font-weight: 560; }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2;
  background: rgba(16,16,16,0.6); border: 1px solid var(--hair);
  color: var(--ivory); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  font-family: var(--body); line-height: 1;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--cad); border-color: var(--cad); }
.lightbox__close {
  top: 3vh; right: 4vw; width: 46px; height: 46px;
  font-size: 26px; border-radius: 50%;
}
.lightbox__nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; font-size: 30px; padding-bottom: 4px;
}
.lightbox__prev { left: 3vw; }
.lightbox__next { right: 3vw; }
@media (max-width: 640px) {
  .lightbox { padding: 8vh 3vw; }
  .lightbox__img { max-width: 96vw; max-height: 78vh; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 26px; }
  .lightbox__prev { left: 2vw; } .lightbox__next { right: 2vw; }
}

/* ---------- work masonry ---------- */
.work-masonry {
  column-count: 3;
  column-gap: 14px;
}
.work-masonry figure {
  margin: 0 0 14px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
}
.work-masonry img {
  width: 100%;
  display: block;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.work-masonry figure:hover img { transform: scale(1.04); }
.work-masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(16,16,16,0.9));
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ivory-dim);
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s, transform .35s;
}
.work-masonry figure:hover figcaption { opacity: 1; transform: none; }
.work-masonry figcaption b { color: var(--ivory); font-weight: 560; }
@media (max-width: 900px) { .work-masonry { column-count: 2; } }
@media (max-width: 540px) {
  .work-masonry { column-count: 1; }
  .work-masonry figcaption { opacity: 1; transform: none; }
}

/* ---------- wall calculator ---------- */
.calc {
  border: 1px solid var(--hair);
  background: var(--char-2);
  padding: clamp(26px, 4vw, 44px);
  max-width: 860px;
}
.calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-bottom: 22px; }
.calc__field label {
  display: flex; justify-content: space-between;
  font-size: 11.5px; font-weight: 560;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 12px;
}
.calc__field label output { color: var(--cad-bright); font-size: 13px; letter-spacing: 0.06em; }
.calc input[type=range] {
  width: 100%;
  -webkit-appearance: none; appearance: none;
  height: 3px; background: var(--hair); outline: none;
}
.calc input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cad); border: 2px solid var(--ivory);
  cursor: pointer;
}
.calc input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--cad); border: 2px solid var(--ivory);
  cursor: pointer;
}
.calc__tiers { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.calc__tiers button {
  font-family: var(--body); font-size: 12.5px; font-weight: 560;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: none; border: 1px solid var(--hair);
  color: var(--ivory-dim);
  padding: 10px 16px; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.calc__tiers button.on { border-color: var(--cad); color: var(--ivory); background: rgba(217,72,28,0.12); }
.calc__result {
  min-height: 118px;
  border-top: 1px solid var(--hair);
  padding-top: 22px;
}
.calc__price {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  color: var(--cad-bright);
}
.calc__price small { font-family: var(--body); font-size: 13px; font-weight: 460; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ivory-faint); margin-left: 12px; }
.calc__line { margin-top: 10px; color: var(--ivory-dim); font-size: 15px; }
.calc__lead { margin-top: 22px; display: none; }
.calc__lead.show { display: block; }
.calc__lead p { color: var(--ivory); font-size: 16px; margin-bottom: 14px; }
.calc__lead-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; }
.calc__lead input {
  background: var(--ink); border: 1px solid var(--hair);
  color: var(--ivory); font-family: var(--body); font-size: 16px;
  padding: 13px 15px; border-radius: 0; outline: none;
  -webkit-appearance: none; appearance: none;
}
.calc__lead input:focus { border-color: var(--cad); }
.calc__assure { margin-top: 14px; font-size: 13.5px; color: var(--ivory-dim); }
.calc__foot { margin-top: 16px; font-size: 12px; color: var(--ivory-faint); }
@media (max-width: 720px) {
  .calc__row { grid-template-columns: 1fr; }
  .calc__lead-row { grid-template-columns: 1fr; }
}

/* ---------- before / after ---------- */
.ba {
  position: relative;
  max-width: 860px;
  aspect-ratio: 16/10;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  border: 1px solid var(--hair);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--ivory);
  cursor: ew-resize;
}
.ba__handle::after {
  content: '◂ ▸';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cad); color: var(--ivory);
  font-size: 13px; letter-spacing: 2px;
  padding: 9px 12px; border-radius: 999px;
  white-space: nowrap;
}
.ba__tag {
  position: absolute; bottom: 12px;
  font-size: 11px; font-weight: 560; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(16,16,16,0.78); color: var(--ivory);
  padding: 6px 12px;
}
.ba__tag--b { left: 12px; }
.ba__tag--a { right: 12px; }

/* ---------- sticky mobile action bar ---------- */
.actionbar {
  position: sticky; bottom: 0; z-index: 48;
  display: none;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
}
.actionbar a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--ink);
  text-decoration: none;
  font-size: 12px; font-weight: 560;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ivory);
  padding: 15px 6px;
}
.actionbar a:first-child { background: var(--cad); }
@media (max-width: 860px) { .actionbar { display: grid; } }

/* ---------- celeb strip ---------- */
.celeb-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: clamp(36px, 6vh, 56px);
}
.celeb-row figure { margin: 0; }
.celeb-row img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.92);
  border: 1px solid var(--hair);
}
.celeb-row figcaption {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: 8px;
}
@media (max-width: 860px) {
  .celeb-row { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(90px, 16vh, 180px) var(--pad);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.cta-band__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.cta-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(16,16,16,0.82); }
.cta-band .eyebrow::after { display: none; }
.cta-band h2 { font-size: clamp(44px, 7.5vw, 110px); margin: 14px auto 18px; max-width: 14ch; }
.cta-band p { color: var(--ivory-dim); max-width: 52ch; margin: 0 auto 34px; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); }
.contact h2 { font-size: clamp(40px, 5.5vw, 80px); margin-top: 10px; }
.contact__list { list-style: none; margin-top: 8px; }
.contact__list li { border-top: 1px solid var(--hair); }
.contact__list li:last-child { border-bottom: 1px solid var(--hair); }
.contact__list a {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 22px 4px;
  text-decoration: none;
  transition: background .2s, padding .2s;
}
.contact__list a:hover { background: var(--char-2); padding-left: 14px; }
.contact__list .k {
  font-size: 12px; font-weight: 560; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ivory-faint);
}
.contact__list .v { font-size: clamp(16px, 1.8vw, 21px); font-weight: 420; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 11.5px; font-weight: 560;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory-dim);
}
.field label em { color: var(--cad-bright); font-style: normal; }
.field input, .field select, .field textarea {
  background: var(--char-2);
  border: 1px solid var(--hair);
  color: var(--ivory);
  font-family: var(--body); font-size: 16px; font-weight: 360;
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f2ede3' stroke-opacity='.5' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cad); }
.field textarea { min-height: 130px; resize: vertical; }
.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px; color: var(--ivory-dim);
}
.check input { width: 18px; height: 18px; accent-color: var(--cad); margin-top: 2px; flex: none; }
.form-status { font-size: 14.5px; margin-top: 14px; min-height: 22px; }
.form-status.ok { color: #7fc97f; }
.form-status.err { color: var(--cad-bright); }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  padding: clamp(140px, 22vh, 220px) var(--pad) clamp(40px, 7vh, 72px);
}
.page-hero h1 { font-size: clamp(52px, 9vw, 140px); }
.page-hero h1 .cad { color: var(--cad-bright); }
.page-hero .lede { margin-top: 20px; max-width: 60ch; color: var(--ivory-dim); }

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--hair);
  padding: clamp(48px, 8vh, 80px) var(--pad) 0;
  background: var(--ink);
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
}
.foot__brand {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 46px);
  text-transform: uppercase;
  line-height: 1;
}
.foot__brand em {
  font-family: var(--accent-font); font-style: italic;
  text-transform: none; color: var(--cad-bright);
}
.foot__tag { margin-top: 14px; color: var(--ivory-faint); font-size: 14px; max-width: 30ch; }
.foot h4 {
  font-size: 11.5px; font-weight: 560;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 16px;
}
.foot ul { list-style: none; }
.foot li { margin-bottom: 10px; }
.foot a { text-decoration: none; color: var(--ivory-dim); font-size: 14.5px; transition: color .2s; }
.foot a:hover { color: var(--ivory); }
.foot__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid var(--hair);
  padding: 18px 0;
  font-size: 12.5px; color: var(--ivory-faint);
}
.foot__legal a { color: var(--ivory-faint); font-size: 12.5px; }
.foot__credit {
  border-top: 1px solid var(--hair);
  margin: 0 calc(-1 * var(--pad));
  padding: 16px var(--pad);
  text-align: center;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-faint);
}
.foot__credit a { color: var(--ivory-dim); text-decoration: none; }
.foot__credit a:hover { color: var(--ivory); }

/* ---------- articles (Wet Paint) ---------- */
.article-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.article-card {
  border: 1px solid var(--hair);
  padding: 30px 26px;
  text-decoration: none;
  display: flex; flex-direction: column;
  min-height: 250px;
  transition: background .25s, border-color .25s;
}
.article-card:hover { background: var(--char-2); border-color: var(--cad); }
.article-card .eyebrow { font-size: 14px; }
.article-card .eyebrow::after { display: none; }
.article-card h3 { font-size: 23px; margin: 14px 0 12px; line-height: 1.08; }
.article-card p { font-size: 14px; color: var(--ivory-dim); flex: 1; }
.article-card .read {
  margin-top: 18px;
  font-size: 12px; font-weight: 560; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cad-bright);
}
.prose { max-width: 720px; }
.prose h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 44px 0 16px; }
.prose h3 { font-size: clamp(20px, 2.4vw, 26px); margin: 32px 0 12px; }
.prose p { color: var(--ivory-dim); margin-bottom: 18px; }
.prose p b, .prose p strong, .prose li b { color: var(--ivory); font-weight: 560; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--ivory-dim); }
.prose li { margin-bottom: 8px; }
.prose .pull { margin: 30px 0; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--hair); padding: 12px 14px; text-align: left; }
.prose th { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ivory-faint); }
.prose td b { color: var(--cad-bright); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .tiers { grid-template-columns: repeat(2, 1fr); border-right: 1px solid var(--hair); border-left: 1px solid var(--hair); }
  .tier { border-right: 0; border-bottom: 1px solid var(--hair); min-height: 0; }
  .tiers .tier:nth-child(odd) { border-right: 1px solid var(--hair); }
  .work-row { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .about, .press, .contact { grid-template-columns: 1fr; }
  .about__img::after { inset: 12px -12px -12px 12px; }
  .mg-a, .mg-b, .mg-c, .mg-d, .mg-e { grid-column: span 12; aspect-ratio: 16/10; }
  .form-grid { grid-template-columns: 1fr; }
  .article-list { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .work-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step { padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__kicker, .hero h1, .hero__sub, .hero__ctas { opacity: 1; }
  .rv { opacity: 1; transform: none; }
}
