/* =============================================================
   Tattoo City Ink — production stylesheet
   Rebuilt from the design handoff README + `Tattoo City Ink.dc.html`.
   Dark theme only. Purple #5F4691 is the ONLY accent; photography is
   the only full-colour element. Border-radius 0 everywhere except
   chips/pills (999px) and the two circular dots.
   ============================================================= */

:root {
  --ink: #17130E;        /* surface-0, page ground */
  --surface-1: #1B1611;  /* alternating sections, panels, cards */
  --surface-2: #1F1A14;  /* image wells */
  --bone: #ECE2CD;       /* text, primary button fill, slip paper */
  --accent: #5F4691;     /* THE only accent */
  --accent-lift: #A78BD0;/* purple passing contrast on dark, script */
  --blush: #E8B4C4;      /* error text only */

  --gutter: clamp(18px, 4vw, 64px);
  --section-pad: clamp(64px, 8vw, 132px);

  --font-display: 'Big Shoulders Display', Impact, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-script: 'Sacramento', cursive;
}

/* ---------- base ---------- */
/* NOTE: no global border-box reset — the design (and its wrap points,
   e.g. the about fact strip at 1440) was authored against default
   content-box sizing. Keep it that way for pixel fidelity. */
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: var(--accent-lift); text-decoration: none; }
a:hover { color: var(--bone); }
::selection { background: var(--accent); color: var(--bone); }
input, button, textarea { font-family: inherit; }
p { text-wrap: pretty; }

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

/* Invisible 44px hit-area expansion for small text controls — the spec's
   44px minimum target is non-negotiable, the visuals must not change. */
.hit-44 { position: relative; }
.hit-44::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 44px;
  transform: translateY(-50%);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  background: var(--accent);
  color: var(--bone);
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.skip-link:focus { top: 12px; color: var(--bone); }

.container { max-width: 1360px; margin: 0 auto; }

/* ---------- keyframes (the stencil transfer is the only motion idea) ---------- */
@keyframes tci-trace { to { stroke-dashoffset: 0; } }
@keyframes tci-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tci-slip {
  from { opacity: 0; transform: translateY(26px) rotate(-6deg); }
  to   { opacity: 1; transform: translateY(0) rotate(-2.2deg); }
}
@keyframes tci-stamp {
  0%   { opacity: 0; transform: rotate(-24deg) scale(2.1); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: rotate(-11deg) scale(1); }
}

/* ---------- fixed overlays ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 70; pointer-events: none;
}
.progress__bar {
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.grain {
  position: fixed; inset: 0; z-index: 65;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

/* ---------- sticky nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(23,19,14,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236,226,205,.10);
}
.nav__inner {
  padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.nav__brand { display: flex; align-items: center; gap: 11px; color: var(--bone); }
.nav__brand:hover { color: var(--bone); }
/* Supplied logo PNG has an opaque background — hexagon-clipped as a
   workaround until a transparent PNG/SVG arrives from the client. */
.logo-hex {
  object-fit: contain; display: block;
  clip-path: polygon(50% 1%, 99% 26%, 99% 74%, 50% 99%, 1% 74%, 1% 26%);
}
.nav__logo { width: 38px; height: 38px; }
.nav__wordmark {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .24em;
  text-transform: uppercase; white-space: nowrap;
}
.nav__right { display: flex; align-items: center; gap: clamp(12px, 2vw, 30px); }
.nav__links { display: flex; align-items: center; gap: clamp(12px, 2vw, 30px); }
.nav__link {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(236,226,205,.62);
}
.nav__link:hover { color: var(--bone); }
.nav__book {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--accent);
  background: rgba(95,70,145,.22);
  padding: 9px 15px;
  white-space: nowrap;
}
.nav__book:hover { background: var(--accent); color: var(--bone); }

/* ---------- mobile menu ---------- */
.nav__burger {
  display: none;
  cursor: pointer;
  background: none; border: none;
  padding: 11px; /* 22px icon + 2×11 = real 44×44 tap target */
  color: var(--bone);
}
.nav__burger .burger__x { display: none; }
.nav__burger.is-open .burger__ic { display: none; }
.nav__burger.is-open .burger__x { display: block; }
.nav__burger svg { display: block; }

/* z-index 59: under the sticky header (60) so the burger stays clickable,
   under the grain (65) so the paper texture reads on the overlay too. */
.mobile-menu {
  position: fixed; inset: 0; z-index: 59;
  background: var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: calc(63px + clamp(28px, 8vh, 64px)) clamp(18px, 6vw, 32px)
           calc(clamp(28px, 4vh, 36px) + env(safe-area-inset-bottom, 0px));
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__mark {
  position: absolute; right: -28%; top: 16%;
  width: min(78vw, 340px); height: auto;
  opacity: .5; pointer-events: none;
}
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__link {
  display: flex; align-items: baseline; gap: 14px;
  padding: clamp(10px, 2vh, 16px) 0;
  border-bottom: 1px solid rgba(236,226,205,.10);
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(44px, 13vw, 60px);
  line-height: .9;
  color: var(--bone);
}
.mobile-menu__link:hover { color: var(--bone); }
.mobile-menu__num {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .24em;
  color: var(--accent-lift);
}
.mobile-menu__book {
  margin-top: clamp(22px, 5vh, 40px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--accent);
  background: rgba(95,70,145,.22);
  padding: 17px 18px;
}
.mobile-menu__book:hover { background: var(--accent); color: var(--bone); }
.mobile-menu__foot {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(236,226,205,.55);
}
html.menu-locked, html.menu-locked body { overflow: hidden; }

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__inner { flex-wrap: nowrap; }
  /* full-height 44px CTA on touch (desktop keeps the design-spec 9px pad) */
  .nav__book { padding: 15px 15px; }
}
@media (max-width: 370px) {
  .nav__wordmark { display: none; } /* logo carries the brand on tiny screens */
}
@media (min-width: 641px) {
  .mobile-menu { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(86vh, 860px);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(236,226,205,.10);
}
.hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: min(66%, 1040px); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media::before, .hero__media::after, .hero__fade-top {
  content: ''; position: absolute; pointer-events: none;
}
/* horizontal blend into the ink field */
.hero__media::before {
  inset: 0;
  background: linear-gradient(90deg, #17130E 0%, rgba(23,19,14,.95) 13%, rgba(23,19,14,.66) 32%, rgba(23,19,14,.2) 62%, rgba(23,19,14,0) 88%);
}
/* bottom 32% */
.hero__media::after {
  left: 0; right: 0; bottom: 0; height: 32%;
  background: linear-gradient(0deg, #17130E 0%, rgba(23,19,14,0) 100%);
}
/* top 18% */
.hero__fade-top {
  left: 0; right: 0; top: 0; height: 18%;
  background: linear-gradient(180deg, rgba(23,19,14,.75) 0%, rgba(23,19,14,0) 100%);
}
.hero__mark {
  position: absolute; left: 46%; top: 50%;
  transform: translate(-30%, -50%);
  width: clamp(300px, 38vw, 580px); height: auto;
  opacity: .72; pointer-events: none;
}
.hero__rail {
  position: absolute; left: clamp(6px, 1.4vw, 26px); top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none; z-index: 3;
}
.hero__rail-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(236,226,205,.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero__rail-line {
  width: 1px; height: clamp(44px, 8vh, 92px);
  background: linear-gradient(180deg, rgba(236,226,205,.4), rgba(236,226,205,0));
}
.hero__rail-dot { width: 9px; height: 9px; border: 1px solid rgba(236,226,205,.35); border-radius: 50%; }

.hero__content {
  position: relative; z-index: 2;
  flex: 1 1 auto; max-width: min(100%, 860px);
  padding: clamp(52px, 7vw, 104px) clamp(18px, 4vw, 56px) clamp(44px, 5vw, 84px) clamp(44px, 5.5vw, 92px);
  display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 34px);
}
.hero__overline {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(236,226,205,.5);
}
.hero__overline-rule { width: 26px; height: 1px; background: var(--accent); display: block; }
.hero__overline-text { white-space: nowrap; }

.hero__title-row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: clamp(8px, 1.6vw, 26px); }
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  line-height: .8; letter-spacing: -.015em;
  font-size: clamp(62px, 10.6vw, 172px);
}
.hero__title span { display: block; }
.hero__title .is-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.02; color: var(--accent-lift);
  transform: rotate(-7deg);
  margin-bottom: clamp(14px, 2vw, 34px);
  white-space: nowrap;
  text-shadow: 0 2px 22px rgba(23,19,14,.9);
}
.hero__script span { display: block; }
.hero__script span + span { padding-left: clamp(16px, 2.4vw, 42px); }

.hero__sub {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 300; line-height: 1.55; letter-spacing: .01em;
  color: rgba(236,226,205,.76);
  max-width: 32ch;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(20px, 3vw, 46px);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone);
  padding: 16px 20px;
}
.cta--primary { border: 1px solid rgba(236,226,205,.5); background: rgba(236,226,205,.05); }
.cta--primary:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.cta--ghost { border: 1px solid rgba(236,226,205,.24); }
.cta--ghost:hover { border-color: var(--bone); color: var(--bone); }

.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(12px, 2.2vw, 30px);
  padding-top: clamp(2px, 1vw, 10px);
}
.trust-item { display: flex; align-items: center; gap: 11px; color: inherit; }
.trust-item svg { flex: 0 0 auto; }
.trust-item__label {
  display: flex; flex-direction: column; gap: 5px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  line-height: 1.2;
}
.trust-item__label .t1 { color: rgba(236,226,205,.78); }
.trust-item__label .t2 { color: rgba(236,226,205,.42); }
a.trust-item:hover .t1 { color: var(--bone); }
a.trust-item:hover .t2 { color: rgba(236,226,205,.7); }
.trust-sep { width: 1px; height: 32px; background: rgba(236,226,205,.16); }

/* ---------- work strip + testimonial ---------- */
.strip {
  padding: clamp(16px, 2vw, 26px) var(--gutter) clamp(20px, 2.4vw, 30px);
  border-bottom: 1px solid rgba(236,226,205,.10);
}
.strip__inner { display: flex; flex-direction: column; gap: 12px; }
.strip__row { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
.strip__tiles {
  flex: 2 1 520px; min-width: min(100%, 240px);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.strip__tile {
  flex: 1 1 120px; min-width: 110px;
  aspect-ratio: 5 / 4;
  position: relative; overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(236,226,205,.08);
}
.strip__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial {
  flex: 1 1 300px; min-width: min(100%, 260px);
  border: 1px solid rgba(236,226,205,.14);
  background: var(--surface-1);
  padding: 20px 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.testimonial__glyph {
  font-family: var(--font-body); font-weight: 600;
  font-size: 40px; line-height: .72;
  color: var(--accent); flex: 0 0 auto;
}
.testimonial__body { display: flex; flex-direction: column; gap: 11px; }
.testimonial__quote {
  font-size: 15px; font-weight: 300; line-height: 1.55;
  color: rgba(236,226,205,.84);
  text-wrap: pretty;
}
.testimonial__by {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(236,226,205,.45);
}
.strip__caption {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(236,226,205,.35);
}

/* ---------- discipline marquee ---------- */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(236,226,205,.10);
  padding: 16px 0;
}
.marquee__track {
  display: flex; width: max-content;
  animation: tci-marq 34s linear infinite;
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: .01em;
  color: rgba(236,226,205,.34);
  white-space: nowrap;
}
.marquee__track > span { padding-right: 26px; }
.marquee__track .dot { color: var(--accent); }

/* ---------- shared section chrome ---------- */
.section { padding: var(--section-pad) var(--gutter); }
.section--alt { background: var(--surface-1); }
.section--bordered { border-top: 1px solid rgba(236,226,205,.10); }

.section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 26px;
}
.section-head__main { flex: 1 1 420px; min-width: min(100%, 260px); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  line-height: .84; letter-spacing: -.01em;
  font-size: clamp(46px, 6.6vw, 104px);
}
.section-head__aside {
  flex: 0 1 340px; margin: 0;
  font-size: 15.5px; font-weight: 300; line-height: 1.6;
  color: rgba(236,226,205,.6);
}

/* ---------- portfolio ---------- */
.portfolio__divider { display: block; margin: clamp(26px, 3vw, 44px) 0 clamp(18px, 2vw, 28px); }

.portfolio__bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: space-between;
  margin-bottom: clamp(20px, 2.4vw, 32px);
}
.portfolio__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 10px 17px;
  border-radius: 999px;
  border: 1px solid rgba(236,226,205,.22);
  background: transparent;
  color: rgba(236,226,205,.66);
}
.chip:hover { border-color: var(--accent); background: var(--accent); color: var(--bone); }
.chip.hit-44::after { border-radius: 999px; }
.chip.is-on, .chip[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bone);
}
.portfolio__count {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(236,226,205,.4);
  text-align: right;
}

.portfolio__grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tile {
  margin: 0;
  flex: 1 1 var(--basis, 320px);
  min-width: min(100%, 250px);
  position: relative; overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: var(--ratio, 1 / 1);
}
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px 16px 14px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(23,19,14,.9) 0%, rgba(23,19,14,0) 100%);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.tile__title {
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  font-size: 21px; line-height: 1; letter-spacing: .01em;
}
.tile__meta {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-lift);
  white-space: nowrap;
}
.tile[hidden] { display: none; }
/* optional client variant: uniform grid */
.portfolio--uniform .tile { flex-basis: 320px; aspect-ratio: 1 / 1; }

/* ---------- about ---------- */
.about__cols { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 72px); align-items: flex-start; }
.about__media { flex: 1 1 380px; min-width: min(100%, 280px); position: relative; }
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.about__photo-ph {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(236,226,205,.28);
  text-align: center;
  padding: 0 20px;
}
.about__badge {
  position: absolute; right: -10px; bottom: -22px;
  background: var(--ink);
  border: 1px solid rgba(236,226,205,.14);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(236,226,205,.6);
}
.about__text {
  flex: 1 1 460px; min-width: min(100%, 280px);
  display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 32px);
}
.about__text .eyebrow { margin-bottom: 0; }
.about__h2 { font-size: clamp(44px, 6vw, 96px); }
.about__p {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 300; line-height: 1.7;
  max-width: 52ch;
}
.about__p--strong { color: rgba(236,226,205,.78); }
.about__p--soft { color: rgba(236,226,205,.6); }
.facts {
  display: flex; flex-wrap: wrap; gap: 1px;
  background: rgba(236,226,205,.14);
  border: 1px solid rgba(236,226,205,.14);
  margin-top: 6px;
}
.facts__cell { flex: 1 1 150px; background: var(--surface-1); padding: 18px 16px; }
.facts__n {
  font-family: var(--font-display);
  font-weight: 800; font-size: 34px; line-height: 1;
  color: var(--bone);
}
.facts__l {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(236,226,205,.5);
  margin-top: 8px;
}

/* ---------- booking ---------- */
.booking { position: relative; overflow: hidden; }
.booking .section-head { gap: 24px; }
.booking__mark { position: absolute; right: -120px; top: 60px; opacity: .5; pointer-events: none; }
.booking__wrap { position: relative; }
.booking .section-head { margin-bottom: clamp(26px, 3vw, 44px); }
.booking .section-head__aside { flex-basis: 330px; }

.bk-panel { border: 1px solid rgba(236,226,205,.14); background: var(--surface-1); }

.bk-rail { display: flex; flex-wrap: wrap; border-bottom: 1px solid rgba(236,226,205,.14); }
.bk-rail__cell {
  flex: 1 1 160px;
  padding: 16px clamp(14px, 2vw, 26px);
  display: flex; align-items: center; gap: 12px;
  background: transparent;
  border-right: 1px solid rgba(236,226,205,.14);
}
.bk-rail__num {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .12em;
  color: rgba(236,226,205,.3);
}
.bk-rail__label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(236,226,205,.35);
}
.bk-rail__cell.is-active { background: rgba(95,70,145,.22); }
.bk-rail__cell.is-active .bk-rail__num { color: var(--accent-lift); }
.bk-rail__cell.is-active .bk-rail__label { color: var(--bone); }
.bk-rail__cell.is-done .bk-rail__num { color: var(--accent-lift); }
.bk-rail__cell.is-done .bk-rail__label { color: rgba(236,226,205,.6); }

.bk-body { padding: clamp(22px, 3vw, 44px); }
.bk-step[hidden] { display: none; }

.bk-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(236,226,205,.5);
  font-weight: 400;
}
.bk-label:focus { outline: none; }

/* step 1 — session size */
.bk-step--1 { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 30px); }
.bk-sessions { display: flex; flex-wrap: wrap; gap: 12px; }
.session-card {
  cursor: pointer; text-align: left;
  flex: 1 1 250px; min-width: min(100%, 220px);
  padding: 22px 20px;
  border: 1px solid rgba(236,226,205,.18);
  background: var(--ink);
  color: var(--bone);
  display: flex; flex-direction: column; gap: 10px;
}
.session-card:hover { border-color: rgba(236,226,205,.4); }
.session-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.session-card__name {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: 31px; line-height: 1;
}
.session-card__price {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  color: rgba(236,226,205,.6);
}
.session-card__hrs {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(236,226,205,.5);
}
.session-card__desc { font-size: 14.5px; font-weight: 300; line-height: 1.55; color: rgba(236,226,205,.68); }
.session-card.is-on { border-color: var(--accent); background: rgba(95,70,145,.22); }
.session-card.is-on .session-card__price { color: var(--accent-lift); }

.bk-style-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; padding-top: 4px; }
.bk-style-row .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip--sm { padding: 9px 16px; }

.bk-foot {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(236,226,205,.14);
  padding-top: 22px;
}
.bk-hint {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(236,226,205,.42);
}
.bk-next {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 15px 26px;
  border: none;
  background: var(--bone);
  color: var(--ink);
}
.bk-next:not(:disabled):hover { background: var(--accent); color: var(--bone); }
.bk-next:disabled {
  background: rgba(236,226,205,.12);
  color: rgba(236,226,205,.35);
  cursor: default;
}

/* step 2 — diary */
.bk-step--2 { display: flex; flex-direction: column; gap: clamp(18px, 2.2vw, 28px); }
.bk-step__head {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.bk-back {
  cursor: pointer;
  background: none; border: none; padding: 0;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-lift);
}
.bk-back:hover { color: var(--bone); }
.diary {
  display: flex; flex-wrap: wrap; gap: 1px;
  background: rgba(236,226,205,.14);
  border: 1px solid rgba(236,226,205,.14);
}
.diary__day {
  flex: 1 1 150px; min-width: min(100%, 140px);
  background: var(--ink);
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.diary__date {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: 26px; line-height: 1;
}
.diary__mon {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(236,226,205,.4);
  margin-top: 5px;
}
.diary__slots { display: flex; flex-direction: column; gap: 7px; }
.slot {
  cursor: pointer; text-align: left;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  padding: 11px 12px;
  border: 1px solid rgba(236,226,205,.2);
  background: transparent;
  color: rgba(236,226,205,.82);
  display: flex; justify-content: space-between; gap: 8px;
  /* buttons are border-box in every UA stylesheet, so this IS the full
     44px touch target (spec: "Diary slot buttons are ~44px tall") */
  min-height: 44px; align-items: center;
}
.slot:hover { border-color: rgba(236,226,205,.45); }
.slot__tag { opacity: .55; }
.slot.is-on { border-color: var(--accent); background: var(--accent); color: var(--bone); }
.slot.is-gone {
  border-color: rgba(236,226,205,.08);
  color: rgba(236,226,205,.26);
  text-decoration: line-through;
  cursor: not-allowed;
}
.slot.is-gone:hover { border-color: rgba(236,226,205,.08); }
.diary__empty {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(236,226,205,.28);
}
.bk-note {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(236,226,205,.38);
}

/* step 3 — deposit */
.bk-step--3 { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 48px); }
.bk-summary-col {
  flex: 1 1 300px; min-width: min(100%, 260px);
  display: flex; flex-direction: column; gap: 16px;
}
.bk-summary { border: 1px solid rgba(236,226,205,.14); background: var(--ink); }
.bk-summary__row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(236,226,205,.09);
}
.bk-summary__k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(236,226,205,.45);
}
.bk-summary__v { font-size: 15px; font-weight: 500; text-align: right; }
.bk-summary__pay {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 18px;
  background: rgba(95,70,145,.18);
}
.bk-summary__pay-k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-lift);
}
.bk-summary__pay-v {
  font-family: var(--font-display);
  font-weight: 800; font-size: 30px; line-height: .9;
}
.bk-terms {
  margin: 0;
  font-size: 13.5px; font-weight: 300; line-height: 1.6;
  color: rgba(236,226,205,.55);
}
.bk-summary-col .bk-back { align-self: flex-start; }

.bk-form {
  flex: 1 1 320px; min-width: min(100%, 260px);
  display: flex; flex-direction: column; gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field__label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(236,226,205,.5);
}
.field input, .field textarea {
  background: var(--ink);
  border: 1px solid rgba(236,226,205,.18);
  color: var(--bone);
  padding: 15px 16px;
  font-size: 15px;
  outline: none;
  border-radius: 0;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.bk-consent {
  display: flex; gap: 11px; align-items: center;
  min-height: 44px; /* touch target */
  cursor: pointer;
  font-size: 13.5px; font-weight: 300; line-height: 1.5;
  color: rgba(236,226,205,.7);
}
.bk-consent input {
  margin: 0;
  accent-color: var(--accent);
  width: 16px; height: 16px;
  flex: 0 0 auto;
}
.bk-err {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .06em;
  color: var(--blush);
  border-left: 2px solid var(--blush);
  padding-left: 12px;
}
.bk-err:empty { display: none; }
.bk-pay {
  cursor: pointer; border: none;
  background: var(--accent); color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  padding: 18px 24px;
}
.bk-pay:hover { background: var(--bone); color: var(--ink); }
.bk-secure {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(236,226,205,.35);
  text-align: center;
}

/* step 4 — stencil slip */
.bk-step--4 {
  display: flex; flex-wrap: wrap;
  gap: clamp(26px, 3vw, 50px);
  align-items: center; justify-content: center;
  padding: clamp(10px, 2vw, 26px) 0;
}
.slip-wrap {
  flex: 0 1 470px; min-width: min(100%, 280px);
  position: relative;
  animation: tci-slip .7s cubic-bezier(.2, .75, .25, 1) both;
}
.slip {
  background: var(--bone); color: var(--ink);
  padding: 34px clamp(22px, 3vw, 38px) 38px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  clip-path: polygon(0% 1.1%, 6% 0.2%, 13% 1.3%, 20% 0.3%, 27% 1.4%, 34% 0.4%, 41% 1.2%, 48% 0.2%, 55% 1.3%, 62% 0.3%, 69% 1.4%, 76% 0.4%, 83% 1.1%, 90% 0.2%, 97% 1.3%, 100% 0.5%, 100% 98.9%, 94% 99.8%, 87% 98.7%, 80% 99.7%, 73% 98.6%, 66% 99.6%, 59% 98.8%, 52% 99.8%, 45% 98.7%, 38% 99.7%, 31% 98.6%, 24% 99.6%, 17% 98.9%, 10% 99.8%, 3% 98.7%, 0% 99.5%);
}
.slip__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  border-bottom: 1px dashed rgba(23,19,14,.3);
  padding-bottom: 16px;
}
.slip__micro {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(23,19,14,.55);
}
.slip__brand {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: 40px; line-height: .9;
  margin-top: 6px;
}
.slip__logo { width: 46px; height: 46px; }
.slip__row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(23,19,14,.12);
}
.slip__k {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(23,19,14,.5);
}
.slip__v { font-size: 15px; font-weight: 600; text-align: right; }
.slip__addr {
  margin-top: 22px; max-width: 60%;
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .14em; line-height: 1.8;
  text-transform: uppercase;
  color: rgba(23,19,14,.5);
}
.slip__stamp {
  position: absolute;
  right: clamp(2px, 2vw, 26px); bottom: clamp(20px, 2.6vw, 34px);
  border: 3px solid var(--accent);
  color: var(--accent);
  padding: 9px 15px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(236,226,205,.4);
  animation: tci-stamp .55s cubic-bezier(.2, .8, .3, 1) .45s both;
  opacity: 0;
}
.bk-done {
  flex: 1 1 280px; min-width: min(100%, 260px);
  display: flex; flex-direction: column; gap: 18px;
  max-width: 420px;
}
.bk-done__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent);
}
.bk-done__h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  line-height: .86;
  font-size: clamp(38px, 4.4vw, 64px);
}
.bk-done__h3:focus { outline: none; }
.bk-done__p {
  margin: 0;
  font-size: 15.5px; font-weight: 300; line-height: 1.65;
  color: rgba(236,226,205,.68);
}
.bk-done__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-another {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 20px;
  border: 1px solid rgba(236,226,205,.28);
  background: none; color: var(--bone);
}
.btn-another:hover { border-color: var(--bone); }
.btn-aftercare {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 20px;
  border: 1px solid rgba(95,70,145,.6);
  background: rgba(95,70,145,.18);
  color: var(--bone);
  display: inline-block;
}
.btn-aftercare:hover { background: var(--accent); color: var(--bone); }

/* ---------- FAQ ---------- */
.faq__cols { display: flex; flex-wrap: wrap; gap: clamp(26px, 4vw, 72px); align-items: flex-start; }
/* Sticky only when the two columns sit side by side — stacked (mobile),
   a sticky heading would slide down over the question list. */
.faq__side { flex: 1 1 300px; min-width: min(100%, 260px); }
@media (min-width: 900px) {
  .faq__side { position: sticky; top: 90px; }
}
.faq__h2 { font-size: clamp(44px, 5.6vw, 88px); }
.faq__list { flex: 1 1 520px; min-width: min(100%, 280px); border-top: 1px solid rgba(236,226,205,.16); }
.faq__item { border-bottom: 1px solid rgba(236,226,205,.16); }
.faq__q {
  cursor: pointer;
  width: 100%; text-align: left;
  background: none; border: none;
  color: var(--bone);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.faq__q-text {
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05; letter-spacing: .005em;
  color: rgba(236,226,205,.82);
}
.faq__q:hover .faq__q-text { color: var(--bone); }
.faq__item.is-open .faq__q-text { color: var(--bone); }
.faq__sign {
  font-family: var(--font-mono);
  font-size: 16px; color: var(--accent);
  flex: 0 0 auto;
}
.faq__a {
  margin: 0;
  padding: 0 0 24px;
  max-width: 60ch;
  font-size: 15.5px; font-weight: 300; line-height: 1.7;
  color: rgba(236,226,205,.68);
}
.faq__a[hidden] { display: none; }

/* ---------- festival strip ---------- */
.festival {
  border-top: 1px solid rgba(95,70,145,.5);
  border-bottom: 1px solid rgba(95,70,145,.5);
  background: rgba(95,70,145,.12);
  overflow: hidden;
}
.festival[hidden] { display: none; }
.festival__inner {
  padding: clamp(26px, 3vw, 44px) var(--gutter);
  display: flex; flex-wrap: wrap; gap: 22px;
  align-items: center; justify-content: space-between;
}
.festival__info {
  flex: 1 1 420px; min-width: min(100%, 260px);
  display: flex; flex-direction: column; gap: 10px;
}
.festival__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent-lift);
}
.festival__title {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(30px, 4vw, 58px);
  line-height: .95;
}
.festival__meta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(236,226,205,.55);
}
.festival__cta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 15px 24px;
  border: 1px solid var(--accent);
  background: rgba(95,70,145,.3);
  color: var(--bone);
  white-space: nowrap;
}
.festival__cta:hover { background: var(--accent); color: var(--bone); }

/* ---------- footer ---------- */
.footer { padding: clamp(56px, 7vw, 110px) var(--gutter) 40px; }
.footer__ghost {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(52px, 13vw, 220px);
  line-height: .8; letter-spacing: -.02em;
  color: rgba(236,226,205,.1);
}
.footer__cols {
  display: flex; flex-wrap: wrap;
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(36px, 5vw, 72px);
  padding-top: 32px;
  border-top: 1px solid rgba(236,226,205,.14);
}
.footer__col { flex: 1 1 220px; display: flex; flex-direction: column; gap: 11px; }
.footer__col--find { flex: 1 1 180px; }
.footer__col--reviews { flex: 1 1 180px; }
.footer__col--legal { flex: 0 1 200px; gap: 14px; align-items: flex-start; }
.footer__head {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(236,226,205,.4);
  margin-bottom: 4px;
}
.footer__addr { font-size: 15px; font-weight: 300; line-height: 1.6; color: rgba(236,226,205,.8); }
.footer__hours {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(236,226,205,.45);
}
.footer__link { font-size: 15px; color: var(--bone); }
.footer__link:hover { color: var(--accent-lift); }
.footer__reviews-link {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(236,226,205,.6);
}
.footer__reviews-link:hover { color: var(--bone); }
.footer__logo { width: 58px; height: 58px; }
.footer__legal {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .16em; line-height: 1.8;
  text-transform: uppercase;
  color: rgba(236,226,205,.35);
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .slip-wrap { animation: none; transform: rotate(-2.2deg); }
  .slip__stamp { animation: none; opacity: 1; transform: rotate(-11deg) scale(1); }
}
