/* ==========================================================================
   Tattoo Power — ink on skin
   Palette: true black ground, warm graphite surfaces, grey wash, bone text,
   one accent: skin under ink.
   ========================================================================== */

:root {
  --ink: #000000;
  --graphite: #1c1b19;
  --graphite-2: #2a2825;
  --wash: #8a8680;
  --wash-2: #56534e;
  --bone: #ede6da;
  --skin: #c89b7b;
  --skin-deep: #8e5f45;

  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 88px);
  --measure: 62ch;
  --nav-h: 76px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t: 320ms;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* section scrolling on the home page: one screen per section, native snap */
html.snap { scroll-snap-type: y mandatory; }
.screen { scroll-snap-align: start; scroll-snap-stop: always; min-height: 100svh; box-sizing: border-box; }
@media (max-width: 860px), (max-height: 620px) {
  html.snap { scroll-snap-type: y proximity; }
  .screen { scroll-snap-stop: normal; min-height: 0; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

:focus-visible { outline: 2px solid var(--skin); outline-offset: 4px; }

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

.skip {
  position: absolute; left: var(--gutter); top: -60px;
  background: var(--bone); color: var(--ink);
  padding: 10px 14px; z-index: 100;
}
.skip:focus { top: 12px; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
.section__title {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: .95;
  letter-spacing: -.015em;
  color: var(--bone);
}

.link {
  position: relative;
  color: var(--skin);
  padding-bottom: 2px;
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 100% 1px;
  transition: background-size var(--t) var(--ease-out);
}
.link:hover { background-size: 0 1px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 26px;
  font-weight: 500; font-size: 15px; letter-spacing: .01em;
  border-radius: 999px;
  transition: background-color var(--t), color var(--t), border-color var(--t), transform var(--t) var(--ease-out);
  white-space: nowrap;
}
.btn--solid { background: var(--skin); color: var(--ink); }
.btn--solid:hover { background: var(--bone); }
.btn--ghost { color: var(--bone); border: 1px solid var(--wash-2); }
.btn--ghost:hover { border-color: var(--bone); }
.btn:active { transform: scale(.97); }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 var(--gutter);
  transition: background-color var(--t), backdrop-filter var(--t), height var(--t);
}
.nav.is-scrolled {
  height: 64px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: .01em;
}
.nav__mark { width: 28px; height: 28px; color: var(--bone); }
.nav__links { display: flex; gap: 34px; font-size: 15px; font-weight: 500; }
.nav__links a { color: var(--wash); transition: color var(--t); }
.nav__links a:hover { color: var(--bone); }
.nav__tools { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.nav__cta { min-height: 42px; padding: 0 20px; font-size: 14px; }

.lang { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.lang__btn { color: var(--wash); padding: 6px 2px; transition: color var(--t); }
.lang__btn[aria-pressed="true"] { color: var(--bone); }
.lang__btn:hover { color: var(--skin); }
.lang__sep { width: 1px; height: 12px; background: var(--wash-2); }

.burger {
  display: none; width: 44px; height: 44px; position: relative; margin-right: -10px;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--bone);
  transition: transform var(--t) var(--ease-out), top var(--t) var(--ease-out);
}
.burger span:first-child { top: 18px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21.5px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21.5px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 40;
  background: var(--ink);
  padding: calc(var(--nav-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.menu nav { display: grid; gap: 6px; }
.menu nav a {
  font-family: var(--display); font-size: clamp(44px, 12vw, 72px); line-height: 1.05; font-weight: 500;
  color: var(--bone);
}
.menu .btn { align-self: flex-start; margin-top: 24px; }
.menu__foot { color: var(--wash); font-size: 15px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   Hero: pinned opener. The portrait grows to full-bleed while it develops
   from stencil to finished piece; the wordmark recedes.
   -------------------------------------------------------------------------- */
.hero { position: relative; }
.hero__pin { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: var(--ink); }

.hero__media {
  position: absolute; inset: 0; z-index: 1; margin: 0;
  clip-path: inset(14% 5% 14% 55%);
}
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 22%;
  transform: scale(1.06);
  will-change: transform;
}
.hero__stencil { z-index: 1; will-change: opacity; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 2; opacity: var(--scrim, 0);
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.72) 100%);
}
.hero__caption {
  position: absolute; right: var(--gutter); bottom: 28px; width: min(280px, 40vw); z-index: 3;
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding-top: 12px; font-size: 12px; letter-spacing: .06em; color: var(--wash);
}
.hero__caption span:nth-child(2) { text-align: center; }
.hero__caption span:nth-child(3) { text-align: right; }
.hero__caption span.is-on { color: var(--skin); }
.hero__progress { position: absolute; top: 0; left: 0; height: 1px; width: 100%; background: rgba(255,255,255,.18); }
.hero__progress::after {
  content: ""; position: absolute; inset: 0; background: var(--skin);
  transform-origin: left; transform: scaleX(var(--p, 0));
}

.hero__front {
  position: absolute; inset: 0; z-index: 2;
  padding: calc(var(--nav-h) + clamp(16px, 4vh, 48px)) var(--gutter) 40px;
  display: grid; grid-template-rows: auto 1fr; align-content: start;
  pointer-events: none;
}
.hero__front a { pointer-events: auto; }
.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96;
  font-size: clamp(76px, 15.5vw, 236px);
  line-height: .82;
  letter-spacing: -.03em;
  will-change: transform, opacity;
}
.hero__line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__word { display: inline-block; will-change: transform; }
.hero__word--power { margin-left: .12em; color: var(--wash); font-style: italic; font-weight: 400; }
.hero__copy { align-self: end; max-width: 34ch; }
.hero__lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.45; color: var(--bone); font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }


/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--graphite-2);
  border-bottom: 1px solid var(--graphite-2);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 36px;
  font-family: var(--display); font-size: clamp(22px, 2.6vw, 34px); font-weight: 400;
  color: var(--wash);
  animation: marquee 32s linear infinite;
  padding-right: 36px;
}
.marquee__track i { width: 6px; height: 6px; border-radius: 50%; background: var(--skin); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Statement
   -------------------------------------------------------------------------- */
.statement { padding: calc(var(--nav-h) + 4vh) var(--gutter) 0; display: grid; grid-template-rows: 1fr auto; align-items: center; }
.statement .marquee { margin: 0 calc(-1 * var(--gutter)); }
.statement__text {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 62px);
  line-height: 1.14;
  font-weight: 400;
  max-width: 24ch;
  color: var(--bone);
}
.statement__text .w { color: var(--wash-2); transition: color 120ms linear; }
.statement__text .w.is-on { color: var(--bone); }

/* --------------------------------------------------------------------------
   Work
   -------------------------------------------------------------------------- */
.section__head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.work { padding: 0 var(--gutter) clamp(96px, 12vw, 180px); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--wash); border: 1px solid var(--graphite-2);
  transition: color var(--t), border-color var(--t), background-color var(--t);
}
.chip:hover { color: var(--bone); border-color: var(--wash-2); }
.chip.is-active { color: var(--ink); background: var(--bone); border-color: var(--bone); }

.work__more { margin-top: clamp(40px, 6vw, 80px); font-size: 16px; }

/* --------------------------------------------------------------------------
   Artist
   -------------------------------------------------------------------------- */
.artist {
  padding: calc(var(--nav-h) + 3vh) var(--gutter) 5vh;
  background: var(--graphite);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  grid-template-areas: "photo text" "photo facts";
  gap: 3vh clamp(32px, 5vw, 96px);
  align-items: center; align-content: center;
}
.artist__photo { grid-area: photo; overflow: hidden; max-height: 82vh; }
.artist__photo img { width: 100%; height: 100%; max-height: 82vh; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.artist__text { grid-area: text; }
.artist .facts { grid-area: facts; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.artist__text { display: grid; gap: 16px; max-width: var(--measure); }
.artist__text .section__title { margin-bottom: 8px; }
.artist__lead { font-family: var(--display); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25; }
.artist__text p:not(.artist__lead) { color: var(--wash); font-size: 17px; max-width: 58ch; }

.facts { border-top: 1px solid var(--wash-2); margin-top: clamp(8px, 2vw, 26px); }
.facts__row {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--graphite-2);
  font-size: 15px;
}
.facts dt { color: var(--wash); }
.facts dd { color: var(--bone); font-weight: 500; }

/* --------------------------------------------------------------------------
   Process — the needle line draws as you scroll
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Home: specialties (accordion strips)
   -------------------------------------------------------------------------- */
.section__title--sm { font-size: clamp(30px, 3.6vw, 54px); }
.spec { padding: calc(var(--nav-h) + 2vh) var(--gutter) 4vh; display: grid; align-content: center; gap: 0; }
.spec__lead {
  font-family: var(--display); font-size: clamp(18px, 1.8vw, 26px); line-height: 1.3;
  max-width: 40ch; margin: 14px 0 clamp(20px, 3vh, 40px);
}
.strips { display: flex; gap: 6px; height: min(60svh, 680px); min-height: 380px; }
.strip-item {
  position: relative; flex: 1 1 0; min-width: 0; overflow: hidden; background: var(--graphite);
  transition: flex 800ms var(--ease-out);
  color: var(--bone);
}
.strip-item.is-open { flex: 3.4 1 0; }
.strip-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(.5); transform: scale(1.06);
  transition: filter 800ms var(--ease-out), transform 1400ms var(--ease-out);
}
.strip-item.is-open img { filter: grayscale(1) brightness(.78); transform: scale(1); }
.strip-item__body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(18px, 2.4vw, 32px);
  display: grid; gap: 10px; justify-items: start;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.85));
}
.strip-item__title {
  font-family: var(--display); font-weight: 500; font-size: clamp(22px, 2.4vw, 34px); line-height: 1.05;
  white-space: nowrap;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.strip-item.is-open .strip-item__title { writing-mode: horizontal-tb; transform: none; white-space: normal; }
.strip-item__text, .strip-item__link {
  opacity: 0; transform: translateY(10px); max-width: 44ch;
  transition: opacity 500ms var(--ease-out) 250ms, transform 500ms var(--ease-out) 250ms;
}
.strip-item__text { color: var(--bone); font-size: 15px; line-height: 1.5; }
.strip-item__link { color: var(--skin); font-size: 14px; font-weight: 500; }
.strip-item.is-open .strip-item__text, .strip-item.is-open .strip-item__link { opacity: 1; transform: none; }
.strip-item:focus-visible { outline: 2px solid var(--skin); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Selected work: horizontal reel (native scroller, wheel moves it sideways)
   -------------------------------------------------------------------------- */
.reel { position: relative; }
.reel__pin {
  height: 100svh; min-height: 560px; display: flex; align-items: stretch;
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity; scrollbar-width: none;
  padding-top: var(--nav-h); overscroll-behavior-x: contain;
}
.reel__pin::-webkit-scrollbar { display: none; }
.reel__track {
  display: flex; align-items: center; gap: clamp(24px, 4vw, 64px);
  height: 100%; padding: 0 var(--gutter);
}
.reel__track::after { content: ""; flex: 0 0 var(--gutter); }
.reel__intro { flex: 0 0 auto; width: min(34vw, 480px); display: grid; gap: 20px; scroll-snap-align: start; }
.reel__intro p { color: var(--wash); max-width: 30ch; }
.reel__item { flex: 0 0 auto; display: grid; gap: 12px; color: var(--bone); scroll-snap-align: center; }
.reel__img { display: block; overflow: hidden; background: var(--graphite); }
.reel__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease-out); }
.reel__item:hover .reel__img img { transform: scale(1.04); }
.reel__item--0 .reel__img { width: min(28vw, 400px); aspect-ratio: 3 / 4; max-height: 66svh; }
.reel__item--1 .reel__img { width: min(38vw, 580px); aspect-ratio: 4 / 3; max-height: 60svh; }
.reel__item--1 { align-self: flex-end; padding-bottom: 8vh; }
.reel__item--2 .reel__img { width: min(24vw, 360px); aspect-ratio: 1; }
.reel__item--2 { align-self: flex-start; padding-top: 6vh; }
.reel__cap { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.reel__cap span { font-weight: 500; }
.reel__cap small { color: var(--wash); font-size: 14px; }
.reel__more {
  flex: 0 0 auto; width: min(30vw, 420px); aspect-ratio: 1; scroll-snap-align: end;
  display: grid; align-content: center; justify-items: start; gap: 8px; padding: 32px;
  border: 1px solid var(--wash-2); color: var(--wash); transition: border-color var(--t), color var(--t);
}
.reel__more:hover { border-color: var(--skin); color: var(--bone); }
.reel__more-n { font-family: var(--display); font-size: clamp(64px, 8vw, 120px); line-height: .9; color: var(--bone); }

.process { padding: calc(var(--nav-h) + 3vh) var(--gutter) 6vh; display: grid; align-content: center; gap: clamp(28px, 5vh, 64px); }
.steps { position: relative; padding-top: 36px; }
.steps__line {
  position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--skin);
  transform-origin: left; transform: scaleX(0);
}
.steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 48px); }
.step { display: grid; gap: 12px; align-content: start; }
.step__n {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 18px;
  background: var(--ink); color: var(--wash); border: 1px solid var(--wash-2);
  transition: color var(--t), border-color var(--t);
}
.step.is-on .step__n { color: var(--skin); border-color: var(--skin); }
.step h3 { font-family: var(--display); font-weight: 500; font-size: clamp(22px, 2vw, 30px); line-height: 1.05; }
.step p { color: var(--wash); font-size: 15px; }

.process__more { margin-top: clamp(40px, 5vw, 64px); }

.reviews {
  display: grid; align-content: center;
  padding: calc(var(--nav-h) + 3vh) var(--gutter) 6vh;
  border-top: 1px solid var(--graphite-2);
}
.reviews__head {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px; align-items: start;
  margin-bottom: clamp(28px, 5vh, 64px);
}
.quotes { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.quotes--full { display: block; columns: 2; column-gap: clamp(32px, 5vw, 80px); }
.quote { break-inside: avoid; margin: 0 0 clamp(32px, 4vw, 56px); padding-left: 20px; border-left: 1px solid var(--skin-deep); }
.quote p { font-size: 16px; line-height: 1.6; color: var(--bone); }
.quote--lead p { font-family: var(--display); font-size: clamp(20px, 1.9vw, 26px); line-height: 1.32; font-weight: 400; }
.quote footer { margin-top: 12px; font-size: 14px; color: var(--wash); }
.quote footer::before { content: "— "; }
.reviews__verify { margin-top: 8px; }
.reviews--page { padding: 0 var(--gutter) clamp(96px, 12vw, 180px); border-top: 0; min-height: 0; }

/* --------------------------------------------------------------------------
   Ratings
   -------------------------------------------------------------------------- */
.ratings { display: grid; gap: 0; }
.rating a {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--graphite-2);
  transition: color var(--t);
}
.rating:first-child a { border-top: 1px solid var(--graphite-2); }
.rating a:hover .rating__src { color: var(--skin); }
.rating__score { font-family: var(--display); font-size: clamp(44px, 5vw, 72px); line-height: 1; font-weight: 500; }
.rating__score small { font-size: .38em; color: var(--wash); margin-left: 2px; font-weight: 400; }
.rating__src { font-size: 18px; font-weight: 500; transition: color var(--t); }
.rating__n { color: var(--wash); font-size: 15px; text-align: right; }

/* --------------------------------------------------------------------------
   Contact / booking
   -------------------------------------------------------------------------- */
.contact {
  padding: calc(var(--nav-h) + 3vh) var(--gutter) 6vh;
  background: var(--graphite);
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(40px, 8vw, 140px);
  align-content: center;
}
.contact__info { display: grid; gap: 18px; align-content: start; }
.contact__info > p { color: var(--wash); max-width: 42ch; }
.contact__phone {
  font-family: var(--display); font-size: clamp(30px, 3.6vw, 52px); line-height: 1; letter-spacing: -.01em;
  color: var(--bone); transition: color var(--t);
}
.contact__phone:hover { color: var(--skin); }
.contact__addr { font-style: normal; line-height: 1.7; color: var(--wash); }
.contact__addr span:first-child { color: var(--bone); }
.contact__social { display: flex; flex-wrap: wrap; gap: 20px; font-size: 15px; font-weight: 500; }
.contact__social a { color: var(--skin); }
.contact__social a:hover { color: var(--bone); }
.contact__camino {
  display: flex; gap: 16px; align-items: center; margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--graphite-2);
  color: var(--wash); font-size: 14px; max-width: 52ch;
}
.contact__camino img { width: 56px; height: 56px; object-fit: cover; flex: none; filter: grayscale(1); }
.contact__camino strong { color: var(--bone); font-weight: 500; }
.map { aspect-ratio: 16 / 10; max-width: 100%; background: var(--graphite-2); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) invert(.92) contrast(.9) brightness(.9); }

.form { display: grid; gap: 18px; align-content: center; }
.form__intro { color: var(--wash); max-width: 42ch; }
.hp { position: absolute; left: -9999px; }
.field { display: grid; gap: 8px; font-size: 14px; color: var(--wash); }
.field input, .field textarea {
  font: inherit; font-size: 16px; color: var(--bone);
  background: transparent; border: 0; border-bottom: 1px solid var(--wash-2);
  padding: 10px 0; border-radius: 0; resize: vertical;
  transition: border-color var(--t);
}
.field input::placeholder, .field textarea::placeholder { color: var(--wash-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--skin); }
.form .btn { justify-self: start; margin-top: 8px; }
.form__status { font-size: 15px; color: var(--skin); min-height: 1.4em; }
.form__status.is-error { color: #e3a08a; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  scroll-snap-align: end;
  padding: clamp(48px, 6vw, 80px) var(--gutter) 40px;
  border-top: 1px solid var(--graphite-2);
  font-size: 14px; color: var(--wash);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer__col p { margin: 0 0 6px; }
.footer__col strong { color: var(--bone); font-weight: 500; }
.footer__col address { font-style: normal; line-height: 1.7; }
.footer__col a:hover { color: var(--skin); }
.footer__brand { font-family: var(--display); font-size: 26px; color: var(--bone); margin-bottom: 8px !important; }
.footer__tag { max-width: 28ch; }
.footer__social { display: flex; flex-wrap: wrap; gap: 14px; color: var(--skin); margin-top: 10px !important; }
.footer__meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--graphite-2);
}
.footer__meta a:hover { color: var(--skin); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
}

@media (max-width: 860px) {
  .hero__media { clip-path: inset(58% 0 0 0); }
  .hero__media img { object-position: 50% 15%; }
  .hero__title { font-size: clamp(60px, 16vw, 150px); }
  .hero__front { grid-template-rows: auto auto; }
  .hero__copy { align-self: start; margin-top: 20px; }
  .hero__caption { left: var(--gutter); right: var(--gutter); width: auto; bottom: 16px; }

  .statement { padding-top: calc(var(--nav-h) + 24px); min-height: 0; grid-template-rows: auto auto; gap: 40px; }

  .reel__pin { height: auto; min-height: 0; display: block; -webkit-overflow-scrolling: touch; padding: calc(var(--nav-h) + 8px) 0 32px; }
  .reel__track { align-items: flex-start; height: auto; }
  .reel__intro { width: 76vw; scroll-snap-align: start; }
  .reel__item, .reel__more { scroll-snap-align: start; align-self: flex-start; padding: 0; }
  .reel__item--0 .reel__img, .reel__item--1 .reel__img, .reel__item--2 .reel__img { width: 74vw; aspect-ratio: 4 / 5; max-height: none; }
  .reel__more { width: 60vw; }

  .strips { flex-direction: column; height: auto; min-height: 0; }
  .strip-item { flex: 0 0 auto; height: 72px; transition: height 600ms var(--ease-out); }
  .strip-item.is-open { flex: 0 0 auto; height: 380px; }
  .strip-item__title { writing-mode: horizontal-tb; transform: none; white-space: normal; font-size: 22px; }
  .strip-item__body { padding: 18px 20px; }

  .artist { grid-template-columns: 1fr; grid-template-areas: "text" "photo" "facts"; padding-top: calc(var(--nav-h) + 24px); padding-bottom: 64px; }
  .artist__photo { max-width: 440px; }
  .artist .facts { grid-template-columns: 1fr; }

  .process, .reviews, .spec { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 64px; }
  .steps { padding-top: 0; padding-left: 24px; }
  .steps__line { top: 0; bottom: 0; left: 0; right: auto; width: 1px; height: auto; transform-origin: top; transform: scaleY(0); }
  .steps__list { grid-template-columns: 1fr; gap: 28px; }
  .contact, .quotes { grid-template-columns: 1fr; }
  .contact { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 64px; }
  .rating__n { text-align: left; grid-column: 2; }
  .rating a { grid-template-columns: auto 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .facts__row { grid-template-columns: 1fr; gap: 4px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Portfolio
   -------------------------------------------------------------------------- */
.pf { padding: calc(var(--nav-h) + clamp(32px, 6vw, 80px)) var(--gutter) clamp(96px, 12vw, 180px); }
.pf__head { max-width: 60ch; margin-bottom: clamp(32px, 4vw, 56px); }
.pf__lead { color: var(--wash); margin-top: 20px; font-size: 17px; }
.filters--sticky {
  position: sticky; top: 64px; z-index: 5;
  padding: 14px 0; margin-bottom: clamp(24px, 3vw, 40px);
  background: rgba(0,0,0,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  align-items: center;
}
.filters__count { margin-left: auto; font-size: 13px; color: var(--wash-2); white-space: nowrap; }

.masonry { columns: 4; column-gap: clamp(14px, 2vw, 28px); }
.tile { break-inside: avoid; margin: 0 0 clamp(20px, 2.6vw, 36px); }
.tile.is-hidden { display: none; }
.tile__btn { display: block; width: 100%; position: relative; overflow: hidden; background: var(--graphite); cursor: pointer; }
.tile__btn img { width: 100%; display: block; transition: transform 900ms var(--ease-out), opacity var(--t); }
.tile__btn:hover img { transform: scale(1.03); }
.tile__btn:focus-visible { outline: 2px solid var(--skin); outline-offset: 3px; }
.tile__multi {
  position: absolute; right: 10px; top: 10px; padding: 3px 8px; border-radius: 999px;
  background: rgba(0,0,0,.65); color: var(--bone); font-size: 12px; font-weight: 500;
}
.tile figcaption { display: flex; justify-content: space-between; gap: 12px; padding-top: 10px; font-size: 14px; }
.tile figcaption span { color: var(--bone); font-weight: 500; }
.tile figcaption small { color: var(--wash-2); font-size: 13px; flex: none; }
.tile.is-target .tile__btn { outline: 2px solid var(--skin); outline-offset: 4px; }
.pf__foot { margin-top: clamp(32px, 5vw, 64px); }

@media (max-width: 1200px) { .masonry { columns: 3; } }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.94); }
.lb__body {
  height: 100%; display: grid; grid-template-columns: minmax(0, 7fr) minmax(320px, 4fr);
}
.lb__media { position: relative; display: grid; place-items: center; padding: clamp(16px, 4vw, 56px); min-height: 0; }
.lb__media img { max-width: 100%; max-height: calc(100vh - 2 * clamp(16px, 4vw, 56px) - 64px); object-fit: contain; }
.lb__thumbs { display: flex; gap: 8px; margin-top: 12px; }
.lb__thumbs:empty { display: none; }
.lb__thumbs button { width: 56px; height: 56px; overflow: hidden; opacity: .5; border: 1px solid transparent; transition: opacity var(--t); }
.lb__thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb__thumbs button.is-on { opacity: 1; border-color: var(--skin); }
.lb__text {
  padding: clamp(56px, 8vh, 96px) clamp(24px, 3vw, 48px) 40px; overflow: auto;
  border-left: 1px solid var(--graphite-2); display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.lb__meta { font-size: 13px; color: var(--wash-2); }
.lb__title { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.05; }
.lb__desc { color: var(--wash); font-size: 16px; line-height: 1.6; max-width: 48ch; }
.lb__by { font-size: 13px; color: var(--wash-2); }
.lb__text .btn { margin-top: 12px; }
.lb__close, .lb__nav {
  position: absolute; z-index: 2; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--bone); background: rgba(255,255,255,.06);
  transition: background-color var(--t);
}
.lb__close:hover, .lb__nav:hover { background: rgba(255,255,255,.14); }
.lb__close { top: 16px; right: 16px; }
.lb__nav { top: 50%; transform: translateY(-50%); }
.lb__nav--prev { left: 16px; }
.lb__nav--next { right: calc(min(36.4%, 100% - 320px) + 16px); }
body.lb-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about {
  padding: calc(var(--nav-h) + clamp(32px, 6vw, 80px)) var(--gutter) clamp(64px, 8vw, 120px);
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  grid-template-areas: "head head" "photo photo" "body facts";
  gap: clamp(32px, 5vw, 80px) clamp(40px, 6vw, 120px);
}
.about__head { grid-area: head; max-width: 70ch; }
.about__lead { font-family: var(--display); font-size: clamp(20px, 2.2vw, 30px); line-height: 1.3; margin-top: 24px; }
.about__photo { grid-area: photo; }
.about__photo img { width: 100%; max-height: 70vh; object-fit: cover; object-position: center 30%; filter: grayscale(1); }
.about__body { grid-area: body; max-width: var(--measure); display: grid; gap: 18px; }
.about__body h2 { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 2.8vw, 38px); line-height: 1.1; margin-top: 24px; }
.about__body h2:first-child { margin-top: 0; }
.about__body p { color: var(--wash); }
.about__list { display: grid; gap: 10px; color: var(--wash); padding-left: 0; }
.about__list strong { color: var(--bone); font-weight: 500; }
.about__press { display: grid; border-top: 1px solid var(--graphite-2); }
.about__press li { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--graphite-2); color: var(--bone); font-size: 15px; }
.about__press li a { color: var(--skin); }
.about__press small { color: var(--wash-2); flex: none; }
.about__facts { grid-area: facts; position: sticky; top: 96px; display: grid; gap: 28px; align-content: start; }
.about__facts .btn { justify-self: start; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq {
  padding: calc(var(--nav-h) + clamp(32px, 6vw, 80px)) var(--gutter) clamp(96px, 12vw, 180px);
  display: grid; grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr); gap: clamp(40px, 6vw, 120px);
  grid-template-areas: "head head" "list cta";
  align-items: start;
}
.faq__head { grid-area: head; max-width: 60ch; }
.faq__lead { color: var(--wash); margin-top: 20px; font-size: 17px; }
.faq__list { grid-area: list; border-top: 1px solid var(--wash-2); }
.faq__item { border-bottom: 1px solid var(--graphite-2); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0; font-family: var(--display); font-size: clamp(20px, 1.9vw, 26px); font-weight: 500; line-height: 1.2;
  transition: color var(--t);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--skin); }
.faq__item summary i { flex: none; width: 28px; height: 28px; position: relative; }
.faq__item summary i::before, .faq__item summary i::after {
  content: ""; position: absolute; background: var(--skin); transition: transform var(--t) var(--ease-out);
}
.faq__item summary i::before { left: 6px; right: 6px; top: 13.5px; height: 1px; }
.faq__item summary i::after { top: 6px; bottom: 6px; left: 13.5px; width: 1px; }
.faq__item[open] summary i::after { transform: scaleY(0); }
.faq__item p { color: var(--wash); padding: 0 48px 24px 0; max-width: 62ch; }
.faq__cta { grid-area: cta; position: sticky; top: 96px; display: grid; gap: 12px; justify-items: start; padding: 28px; background: var(--graphite); }
.faq__cta p { color: var(--bone); margin-bottom: 8px; }

/* --------------------------------------------------------------------------
   Tributes (Homenagens): editorial, image-led
   -------------------------------------------------------------------------- */
.thero {
  padding: calc(var(--nav-h) + clamp(24px, 5vw, 64px)) var(--gutter) clamp(64px, 8vw, 120px);
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: center;
  min-height: 100svh;
}
.thero__lead { color: var(--wash); font-size: clamp(17px, 1.3vw, 20px); line-height: 1.55; max-width: 44ch; margin-top: 24px; }
.thero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.thero__media { position: relative; aspect-ratio: 5 / 6; }
.thero__a, .thero__b { position: absolute; display: block; overflow: hidden; background: var(--graphite); }
.thero__a { inset: 0 18% 8% 0; }
.thero__b { right: 0; bottom: 0; width: 46%; aspect-ratio: 1; box-shadow: -24px -24px 0 var(--ink); }
.thero__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease-out); }
.thero__a:hover img, .thero__b:hover img { transform: scale(1.04); }
.thero__cap { position: absolute; left: 0; bottom: -32px; font-size: 13px; color: var(--wash-2); }

.tmethod {
  padding: clamp(64px, 8vw, 120px) var(--gutter);
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 5vw, 80px); align-items: start;
  border-top: 1px solid var(--graphite-2);
}
.tmethod__intro { position: sticky; top: 96px; display: grid; gap: 18px; }
.tmethod__intro p { color: var(--wash); max-width: 40ch; }
.bento { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: auto auto; gap: 6px; }
.bento__photo { grid-row: 1 / 3; position: relative; display: block; overflow: hidden; background: var(--graphite); min-height: 420px; }
.bento__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease-out); }
.bento__photo:hover img { transform: scale(1.04); }
.bento__photo span { position: absolute; left: 20px; bottom: 16px; font-size: 13px; color: var(--bone); text-shadow: 0 1px 8px rgba(0,0,0,.8); }
.bento__cell { background: var(--graphite); padding: clamp(20px, 2.4vw, 32px); display: grid; gap: 10px; align-content: start; }
.bento__cell b { font-family: var(--display); font-weight: 400; font-size: 14px; color: var(--skin); }
.bento__cell h3 { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 1.7vw, 26px); line-height: 1.1; }
.bento__cell p { color: var(--wash); font-size: 14px; line-height: 1.55; }

.tgroups { padding: 0 var(--gutter); display: grid; gap: clamp(64px, 8vw, 120px); border-top: 1px solid var(--graphite-2); padding-top: clamp(64px, 8vw, 120px); }
.tgroup { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.tgroup__head { position: sticky; top: 96px; display: grid; gap: 14px; }
.tgroup__head h2 { font-family: var(--display); font-weight: 500; font-size: clamp(30px, 3.4vw, 52px); line-height: 1.02; }
.tgroup__head p { color: var(--wash); max-width: 36ch; }
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(160px, auto); grid-auto-flow: dense; gap: 6px; }
.mosaic__item { position: relative; display: block; overflow: hidden; background: var(--graphite); aspect-ratio: 4 / 5; }
.mosaic__item--lg { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1000ms var(--ease-out), filter var(--t); filter: grayscale(.35); }
.mosaic__item:hover img { transform: scale(1.04); filter: grayscale(0); }
.mosaic__item span {
  position: absolute; left: 12px; right: 12px; bottom: 10px; font-size: 13px; color: var(--bone);
  opacity: 0; transform: translateY(6px); transition: opacity var(--t), transform var(--t); text-shadow: 0 1px 8px rgba(0,0,0,.9);
}
.mosaic__item:hover span { opacity: 1; transform: none; }

.tnames {
  margin-top: clamp(64px, 8vw, 120px); padding: clamp(64px, 8vw, 120px) var(--gutter); background: var(--graphite);
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: center;
}
.tnames__text { display: grid; gap: 18px; max-width: 56ch; }
.tnames__text > p { color: var(--wash); }
.tnames__way { padding-top: 18px; border-top: 1px solid var(--wash-2); display: grid; gap: 8px; }
.tnames__way h3 { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.15; }
.tnames__way p { color: var(--wash); font-size: 15px; }
.triptych { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 1fr; gap: 0; min-height: 560px; }
.triptych__item { position: relative; display: block; overflow: hidden; background: var(--ink); }
.triptych__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1000ms var(--ease-out); }
.triptych__item:hover img { transform: scale(1.04); }
.triptych__item span { position: absolute; left: 14px; bottom: 12px; font-size: 13px; color: var(--bone); text-shadow: 0 1px 8px rgba(0,0,0,.9); }
.triptych__item--0 { grid-column: 1 / 7; grid-row: 1 / 3; aspect-ratio: 3 / 4; }
.triptych__item--1 { grid-column: 6 / 13; grid-row: 2 / 4; aspect-ratio: 4 / 5; box-shadow: -14px -14px 0 var(--graphite); z-index: 1; }
.triptych__item--2 { grid-column: 8 / 13; grid-row: 1 / 2; aspect-ratio: 1; margin-bottom: 14px; }

.tband { position: relative; min-height: 70svh; display: grid; align-items: end; padding: clamp(48px, 8vw, 120px) var(--gutter); overflow: hidden; }
.tband__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: grayscale(1) brightness(.42); }
.tband::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.85)); }
.tband__text { position: relative; z-index: 1; display: grid; gap: 16px; max-width: 60ch; }
.tband__text p { color: var(--bone); font-size: 17px; }

@media (max-width: 860px) {
  .thero, .tmethod, .tgroup, .tnames { grid-template-columns: 1fr; }
  .thero { min-height: 0; }
  .thero__media { aspect-ratio: 4 / 5; max-width: 480px; }
  .tmethod__intro, .tgroup__head { position: static; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__photo { grid-column: 1 / -1; grid-row: auto; min-height: 320px; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic__item span { opacity: 1; transform: none; }
  .triptych { min-height: 0; grid-template-columns: 1fr 1fr; gap: 6px; }
  .triptych__item { grid-column: auto !important; grid-row: auto !important; box-shadow: none; margin: 0 !important; aspect-ratio: 4 / 5; }
  .triptych__item--0 { grid-column: 1 / -1 !important; }
  .about__photo, .about__facts { position: static; }
  .lb__body { grid-template-columns: 1fr; grid-template-rows: auto auto; overflow: auto; }
  .lb__media { max-height: 60vh; }
  .lb__text { padding: 20px var(--gutter) 40px; border-left: 0; }
  .lb__nav--next { right: 16px; }
  .method__row { grid-template-columns: 1fr; gap: 6px; }
  .faq { grid-template-columns: 1fr; grid-template-areas: "head" "list" "cta"; }
  .faq__cta { position: static; }
  .about { grid-template-columns: 1fr; grid-template-areas: "head" "photo" "body" "facts"; }
  .quotes, .quotes--full { columns: 1; }
  .reviews__head { grid-template-columns: 1fr; }
  .filters--sticky { top: 56px; }
}
@media (max-width: 560px) {
  .masonry { columns: 2; }
  .lb__nav { display: none; }
  .bento { grid-template-columns: 1fr; }
}

/* Section pager (home) */
.pager { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 40; display: grid; gap: 10px; }
.pager a { display: block; width: 22px; height: 2px; background: var(--wash-2); transition: background-color var(--t), width var(--t); }
.pager a:hover { background: var(--bone); }
.pager a.is-on { background: var(--skin); width: 34px; }
.pager a span { position: absolute; left: -9999px; }
@media (max-width: 860px) { .pager { display: none; } }

/* --------------------------------------------------------------------------
   Page transitions + subpage heads + reveals
   -------------------------------------------------------------------------- */
.veil { position: fixed; inset: 0; z-index: 100; background: var(--ink); pointer-events: none; display: none; }
html.js .veil { display: block; }
html.js .veil.is-done { display: none; }

.page-head .section__title { overflow: hidden; line-height: 1.02; padding-bottom: .14em; margin-bottom: -.14em; }
.page-head .section__title .hw { display: inline-block; will-change: transform; }
.page-head > p { will-change: transform, opacity; }

[data-reveal] > * { will-change: transform, opacity; }

.masonry { columns: 3; column-gap: clamp(16px, 2.4vw, 32px); }
.tile { margin-bottom: clamp(24px, 3vw, 40px); }
.tile.is-hidden, .tile.is-later { display: none; }
.pf__more { display: flex; align-items: center; gap: 20px; margin-top: clamp(24px, 4vw, 48px); }
.pf__more[hidden] { display: none; }
.pf__more small { color: var(--wash); font-size: 14px; }
@media (max-width: 1200px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hero__media { clip-path: none; }
  .hero__media img { transform: none; }
  .hero__stencil { display: none; }
  .strip-item, .strip-item img, .strip-item__text, .strip-item__link { transition: none; }
  .veil { display: none !important; }
}
