/* ==========================================================================
   InkSquad Studio - Phoenix AZ
   Design tokens derived from the shop itself: ink black, the gold from the
   shop logo, and the purple of thermal stencil paper.
   Built by Stream Fusion Web.
   ========================================================================== */

:root {
  /* Colour */
  --ink:        #0b0b0c;
  --ink-2:      #131317;
  --ink-3:      #1d1d23;
  --ink-line:   #2b2b33;
  --bone:       #efe9dc;
  --bone-2:     #ddd3c0;
  --bone-line:  #cbc0a9;
  --gold:       #c2ab6f;
  --gold-hi:    #e6d3a0;
  --gold-dim:   #6b5a2e;
  --stencil:    #6e5aa8;
  --stencil-hi: #a992e0;
  --muted:      #918c83;
  --muted-dark: #8a847a;

  /* Type */
  --display: "Staatliches", "Haettenschweiler", "Impact", sans-serif;
  --body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Space */
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --band: clamp(4rem, 9vw, 7.5rem);
  --radius: 3px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --------------------------------------------------------------- reset -- */

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.012em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }

:focus-visible {
  outline: 3px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-family: var(--display);
  font-size: 1.05rem;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

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

/* ------------------------------------------------------------ structure -- */

.wrap {
  width: min(1220px, 100% - (var(--gut) * 2));
  margin-inline: auto;
}

.wrap--narrow { width: min(760px, 100% - (var(--gut) * 2)); }

.band { padding-block: var(--band); position: relative; }
.band--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

/* Bone sections: the "flash paper" pinned to the ink wall */
.band--bone {
  background: var(--bone);
  color: var(--ink);
  position: relative;
}
.band--bone::before,
.band--bone::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0 14px, transparent 14px 26px);
  opacity: 0.55;
}
.band--bone::before { top: 0; }
.band--bone::after { bottom: 0; }

.band--ink2 { background: var(--ink-2); }

.band--bone h1, .band--bone h2, .band--bone h3 { color: var(--ink); }
.band--bone .kicker { color: var(--gold-dim); }
.band--bone .lede { color: #3a362f; }

/* ----------------------------------------------------------- typography -- */

.kicker {
  font-family: var(--display);
  font-size: clamp(0.82rem, 0.78rem + 0.2vw, 0.95rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.kicker--center { justify-content: center; }
.kicker--center::after { display: none; }

.h-xl { font-size: clamp(3rem, 1.4rem + 7.4vw, 6.75rem); }
.h-lg { font-size: clamp(2.4rem, 1.5rem + 4vw, 4.25rem); }
.h-md { font-size: clamp(1.85rem, 1.35rem + 2.1vw, 2.85rem); }
.h-sm { font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.7rem); }

.gold { color: var(--gold); }
.outline-word {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  paint-order: stroke fill;
}

.lede {
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.55;
  color: #c9c3b8;
  max-width: 56ch;
}
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.center .kicker { justify-content: center; }
.center .kicker::after { display: none; }

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              transform 0.2s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

.btn--fill { background: var(--gold); color: var(--ink); }
.btn--fill:hover { background: var(--gold-hi); border-color: var(--gold-hi); color: var(--ink); }

.btn--bone { border-color: var(--ink); color: var(--ink); }
.btn--bone:hover { background: var(--ink); color: var(--bone); }

.btn--stencil { border-color: var(--stencil-hi); color: var(--stencil-hi); }
.btn--stencil:hover { background: var(--stencil); border-color: var(--stencil); color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.center .btn-row { justify-content: center; }

/* --------------------------------------------------------------- header -- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-line);
}

.head-in {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.75rem;
}

.brand { display: block; margin-right: auto; flex-shrink: 0; }
.brand img { width: clamp(128px, 17vw, 172px); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.85rem); }

.nav a {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.18s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { right: 0; }
.nav a[aria-current="page"] { color: var(--gold); }
.nav a[aria-current="page"]::after { right: 0; }

.head-cta { flex-shrink: 0; padding: 0.7rem 1.4rem; font-size: 1rem; }

.burger {
  display: none;
  width: 2.9rem; height: 2.9rem;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  color: var(--bone);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 20px; height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .head-cta { display: none; }
  .nav {
    position: fixed;
    inset: 4.75rem 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--ink-line);
    padding: 0.5rem var(--gut) 1.75rem;
    transform: translateY(-120%);
    transition: transform 0.3s var(--ease);
    max-height: calc(100vh - 4.75rem);
    overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a {
    font-size: 1.6rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--ink-line);
  }
  .nav a::after { display: none; }
  .nav .btn {
    margin-top: 1.25rem;
    border-bottom: 2px solid var(--gold);
    justify-content: center;
  }
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90ch 60ch at 12% 22%, rgba(194, 171, 111, 0.1), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy h1 { margin-bottom: 1.4rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ink-line);
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--display);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Pinned photo stack - the flash-sheet signature */
.pinstack { position: relative; }

.pin {
  position: relative;
  border: 10px solid var(--bone);
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.62);
  overflow: hidden;
}
.pin img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.pin--a { transform: rotate(-2.2deg); }
.pin--b {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: 46%;
  transform: rotate(4.5deg);
  border-width: 8px;
  z-index: 2;
}
.pin--b img { aspect-ratio: 1 / 1; }

.tape {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 92px; height: 28px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(194, 171, 111, 0.42);
  border-left: 2px dashed rgba(11, 11, 12, 0.25);
  border-right: 2px dashed rgba(11, 11, 12, 0.25);
  z-index: 3;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .pinstack { max-width: 26rem; margin-inline: auto; }
  .pin--b { width: 44%; right: -4%; bottom: -8%; }
}

/* -------------------------------------------------- specials: signature -- */

.tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.ticket {
  position: relative;
  background: var(--bone);
  color: var(--ink);
  padding: 2.5rem 1.85rem 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

/* perforated ticket edge */
.ticket::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 3.4rem;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--bone-line) 0 7px, transparent 7px 14px);
}
.ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--bone-line);
  border-radius: var(--radius);
  pointer-events: none;
}
.ticket:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5); }

.ticket-no {
  position: absolute;
  top: 0.9rem;
  right: 1.35rem;
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--stencil);
  opacity: 0.28;
  z-index: -1;
}

.ticket-tag {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stencil);
  margin-bottom: 1.9rem;
}

.ticket h3 { font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.1rem); margin-bottom: 0.8rem; }
.ticket p { color: #3a362f; font-size: 1rem; }

.ticket-foot {
  margin-top: auto;
  padding-top: 1.4rem;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--bone-line);
}

.ticket--soon { background: var(--ink-3); color: var(--bone); }
.ticket--soon::after { border-color: var(--ink-line); }
.ticket--soon::before {
  background: repeating-linear-gradient(90deg, var(--ink-line) 0 7px, transparent 7px 14px);
}
.ticket--soon p { color: #b4aea3; }
.ticket--soon .ticket-tag { color: var(--stencil-hi); }
.ticket--soon .ticket-no { color: var(--stencil-hi); opacity: 0.24; }
.ticket--soon .ticket-foot { color: var(--gold); border-top-color: var(--ink-line); }

.stamp {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stencil);
  border: 2px solid var(--stencil);
  border-radius: 2px;
  padding: 0.3rem 0.85rem;
  transform: rotate(-3deg);
}
.ticket--soon .stamp { color: var(--stencil-hi); border-color: var(--stencil-hi); }

/* --------------------------------------------------------------- squad -- */

.squad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.artist {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.artist:hover { border-color: var(--gold-dim); transform: translateY(-4px); }

.artist-img { position: relative; background: var(--ink-3); }
.artist-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.artist-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.85), transparent 48%);
}

.artist-body { padding: 1.5rem 1.5rem 1.75rem; }
.artist-body h3 { font-size: 1.75rem; margin-bottom: 0.35rem; }

.handle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-decoration: none;
  word-break: break-all;
}
.handle:hover { color: var(--gold-hi); text-decoration: underline; text-underline-offset: 3px; }
.handle svg { width: 17px; height: 17px; flex-shrink: 0; }

.artist p { font-size: 0.97rem; color: #a9a49a; margin-top: 0.9rem; margin-bottom: 0; }

/* ------------------------------------------------------------- services -- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

.svc {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.svc:hover { border-color: var(--gold); transform: translateY(-4px); }
.svc img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; opacity: 0.85; transition: opacity 0.3s var(--ease), transform 0.5s var(--ease); }
.svc:hover img { opacity: 1; transform: scale(1.04); }
.svc-body { padding: 1.5rem 1.5rem 1.75rem; }
.svc-body h3 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.svc-body p { font-size: 0.97rem; color: #a9a49a; margin: 0 0 1rem; }
.svc-more {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-more::after { content: " \2192"; }

.band--bone .svc { background: #fff; border-color: var(--bone-line); }
.band--bone .svc:hover { border-color: var(--gold-dim); }
.band--bone .svc-body p { color: #4a453d; }
.band--bone .svc-more { color: var(--gold-dim); }

/* ---------------------------------------------------------------- lists -- */

.checks { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 0.9rem; }
.checks li {
  position: relative;
  padding-left: 2rem;
  margin: 0;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
.checks strong { color: var(--bone); }
.band--bone .checks strong { color: var(--ink); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--top { align-items: start; }

.figure {
  border: 8px solid var(--bone);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.figure img { width: 100%; object-fit: cover; }
.figure--tall img { aspect-ratio: 4 / 5; }
.figure--wide img { aspect-ratio: 3 / 2; }
.band--bone .figure { border-color: var(--ink); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22); }

.plain-figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--bone-line); }
.plain-figure img { width: 100%; }

/* ---------------------------------------------------------- style cards -- */

.styles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.25rem;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}
.style {
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}
.style img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.style-body { padding: 1.35rem 1.4rem 1.5rem; }
.style-body h3 { font-size: 1.4rem; margin-bottom: 0.45rem; color: var(--gold); }
.style-body p { font-size: 0.95rem; color: #a9a49a; margin: 0; }

/* ---------------------------------------------------------------- steps -- */

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: clamp(2.25rem, 5vw, 3.25rem) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 3.6rem;
  margin: 0;
  border-top: 2px solid var(--ink-line);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.1rem; left: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}
.steps h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.steps p { font-size: 0.97rem; color: #a9a49a; margin: 0; }
.band--bone .steps li { border-top-color: var(--bone-line); }
.band--bone .steps li::before { color: var(--gold-dim); }
.band--bone .steps p { color: #4a453d; }

/* -------------------------------------------------------------- gallery -- */

.work {
  columns: 3;
  column-gap: 1rem;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}
@media (max-width: 900px) { .work { columns: 2; } }
@media (max-width: 520px) { .work { columns: 1; } }

.work figure {
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  background: var(--ink-2);
}
.work img {
  width: 100%;
  transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.92);
}
.work figure:hover img { transform: scale(1.035); filter: saturate(1.05); }

/* ------------------------------------------------------------------ faq -- */

.faq { margin-top: clamp(2rem, 4vw, 3rem); display: grid; gap: 0.85rem; }
.faq details {
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  background: var(--ink-2);
  padding: 0 1.4rem;
}
.faq summary {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  letter-spacing: 0.02em;
  padding: 1.2rem 2rem 1.2rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--bone);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { color: var(--gold); }
.faq-a { padding: 0 0 1.35rem; color: #a9a49a; font-size: 0.99rem; }
.faq-a p:last-child { margin-bottom: 0; }

.band--bone .faq details { background: #fff; border-color: var(--bone-line); }
.band--bone .faq summary { color: var(--ink); }
.band--bone .faq-a { color: #4a453d; }

/* ------------------------------------------------------------------ cta -- */

.cta {
  position: relative;
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60ch 40ch at 50% 120%, rgba(194, 171, 111, 0.14), transparent 70%);
}
.cta .wrap { position: relative; }

/* ---------------------------------------------------------------- visit -- */

.visit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.info-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 1.85rem;
}
.info-card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.info-card a { color: var(--bone); text-decoration: none; border-bottom: 1px solid var(--gold-dim); }
.info-card a:hover { color: var(--gold); }
.info-card address { font-style: normal; }

.map {
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  background: var(--ink-2);
}
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(0.35) contrast(1.05); }

/* --------------------------------------------------------------- footer -- */

.site-foot {
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.96rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

.foot-brand img { width: 158px; margin-bottom: 1.25rem; }
.foot-brand p { color: var(--muted); max-width: 34ch; }

.foot-col h4 {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.foot-col li { margin: 0; }
.foot-col a { color: #b4aea3; text-decoration: none; transition: color 0.18s var(--ease); }
.foot-col a:hover { color: var(--gold); }

.socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.socials a {
  width: 2.6rem; height: 2.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  color: var(--muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.socials a:hover { color: var(--gold); border-color: var(--gold-dim); }
.socials svg { width: 19px; height: 19px; }

.foot-base {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--ink-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-dark);
  font-size: 0.9rem;
}
.foot-base a { color: var(--muted); text-decoration: none; }
.foot-base a:hover { color: var(--gold); }
.foot-base nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ----------------------------------------------------------- page intro -- */

.page-head {
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80ch 50ch at 18% 0%, rgba(194, 171, 111, 0.1), transparent 64%);
}
.page-head .wrap { position: relative; }
.page-head h1 { margin-bottom: 1.25rem; }

.crumbs {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 1.5rem;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 0.5rem; color: var(--gold-dim); }

/* ---------------------------------------------------------------- forms -- */

.form { display: grid; gap: 1.1rem; margin-top: 2rem; }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--bone);
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------- motion -- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .pin--a, .pin--b, .tape, .stamp { transform: none; }
}

@media print {
  .site-head, .site-foot, .btn-row, .map { display: none; }
  body { background: #fff; color: #000; }
}

/* Header CTA: phone on desktop, Book Now inside the mobile drawer ---------- */
.nav-cta { display: none; }
@media (max-width: 900px) { .nav-cta { display: inline-flex; } }

/* Artist cards without a portrait: the number carries the card -------------- */
.artist--plain {
  position: relative;
  padding-top: 1.1rem;
  overflow: hidden;
}
.artist-no {
  position: absolute;
  top: -0.6rem;
  right: 0.9rem;
  font-family: var(--display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.13;
  pointer-events: none;
}
.artist--plain .artist-body { padding-top: 1.75rem; }
.artist--plain .artist-body h3 { font-size: 2.1rem; }

.ticket-foot a { color: inherit; text-decoration: none; border-bottom: 2px solid var(--gold); }
.ticket-foot a:hover { color: var(--gold-dim); }
.ticket--soon .ticket-foot a:hover { color: var(--gold-hi); }

/* Small utilities ---------------------------------------------------------- */
.note {
  border-left: 3px solid var(--gold);
  background: var(--ink-2);
  padding: 1.15rem 1.4rem;
  margin: 2rem 0 0;
  font-size: 0.99rem;
  color: #b4aea3;
}
.band--bone .note { background: #fff; border-left-color: var(--gold-dim); color: #4a453d; }

.rule-list { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 1rem; }
.rule-list li {
  margin: 0;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  background: var(--ink-2);
}
.rule-list strong { display: block; font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.04em; color: var(--gold); margin-bottom: 0.3rem; }
.band--bone .rule-list li { background: #fff; border-color: var(--bone-line); }
.band--bone .rule-list strong { color: var(--gold-dim); }

.prose h2 { margin-top: 2.75rem; margin-bottom: 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.7rem; color: var(--gold); font-size: 1.4rem; }
.prose ul { margin-bottom: 1.4rem; }

/* `.nav a` outranks `.btn` on specificity, so the drawer CTA needs its own
   rules or it inherits bone text on gold and the nav link sizing. ---------- */
.nav a.btn { color: var(--gold); }
.nav a.btn--fill { color: var(--ink); }
.nav a.btn--fill:hover { color: var(--ink); }

@media (max-width: 900px) {
  .nav a.btn {
    font-size: 1.15rem;
    padding: 0.95rem 1.9rem;
    border: 2px solid var(--gold);
  }
}


/* `.band--bone h3` was repainting the dark ticket's heading ink-on-ink and
   making it invisible. The dark ticket keeps its own text colours. --------- */
.band--bone .ticket--soon h3 { color: var(--bone); }
.band--bone .ticket--soon p { color: #b4aea3; }
.band--bone .ticket--soon .ticket-foot { color: var(--gold); }

/* `-webkit-text-stroke` is what makes the outlined word legible. Without it,
   transparent fill would render nothing at all. ---------------------------- */
@supports not (-webkit-text-stroke: 1px currentColor) {
  .outline-word { color: var(--gold); -webkit-text-stroke: 0; }
}

/* Dark cards sitting inside a bone band must keep their own text colours.
   `.band--bone h3` is broad enough to repaint them ink-on-ink otherwise. --- */
.band--bone .artist h3 { color: var(--bone); }
.band--bone .artist p { color: #a9a49a; }
.band--bone .artist .handle { color: var(--gold); }

/* The stamp sits on dark backgrounds, so it needs the lighter stencil tone.
   The dark variant is only correct on bone. ------------------------------- */
.stamp { color: var(--stencil-hi); border-color: var(--stencil-hi); }
.band--bone .stamp { color: var(--stencil); border-color: var(--stencil); }

/* ------------------------------------------------------- piercing prices -- */

.prices {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  display: grid;
  /* 26rem caps this at two columns on desktop, which reads like a price
     board rather than a three-across table. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr));
  gap: 0 clamp(2rem, 5vw, 4.5rem);
}

.prices li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--bone-line);
}

.p-name {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  letter-spacing: 0.03em;
  color: var(--ink);
  white-space: nowrap;
}

/* Dotted leader, the way a price board actually reads */
.p-dots {
  flex: 1;
  height: 0;
  border-bottom: 2px dotted var(--bone-line);
  transform: translateY(-0.25em);
  min-width: 1.5rem;
}

.p-cost {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.1rem + 0.45vw, 1.45rem);
  color: var(--gold-dim);
  white-space: nowrap;
}

.price-foot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.price-box {
  background: #fff;
  border: 1px solid var(--bone-line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.price-box h3 {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.price-box p { font-size: 0.97rem; color: #4a453d; }

.addon {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bone-line);
  font-size: 0.99rem;
  color: #3a362f;
}
.addon:last-of-type { border-bottom: 0; }
.addon b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--gold-dim);
}

/* --------------------------------------------------------- weekly board -- */

.week {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

.day {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.75rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.day:hover { border-color: var(--gold-dim); transform: translateY(-4px); }

.day-name {
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stencil-hi);
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--ink-line);
}

.day-deal { margin-bottom: 1.1rem; }
.day-deal:last-child { margin-bottom: 0; }
.day-deal b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.4rem + 0.9vw, 2rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.day-deal span { font-size: 0.97rem; color: #a9a49a; }

.band--bone .day { background: #fff; border-color: var(--bone-line); }
.band--bone .day-name { color: var(--stencil); border-bottom-color: var(--bone-line); }
.band--bone .day-deal b { color: var(--gold-dim); }
.band--bone .day-deal span { color: #4a453d; }

.foot-tag {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ---------------------------------------------------- embedded book form -- */

/* The form renders inside a cross-origin iframe, so its interior cannot be
   styled from here. A bone card around it makes a light form read as a
   deliberate paper panel on the ink wall rather than an accident. */
.form-embed {
  background: var(--bone);
  border: 1px solid var(--bone-line);
  border-radius: var(--radius);
  padding: clamp(0.5rem, 1.5vw, 1rem);
  margin-top: 2rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
/* No height rules here: the embed script sets the height itself, and a
   min-height would leave dead space when it shrinks the frame. */
.form-embed iframe { display: block; width: 100%; border: 0; }

.form-note { margin-top: 1.1rem; }
.form-note a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dim); }
.form-note a:hover { color: var(--gold-hi); }

/* The chat launcher sits bottom-right on every page. Keep the last footer
   row clear of it on small screens. */
@media (max-width: 640px) {
  .site-foot { padding-bottom: 5.5rem; }
}
