/* ============================================================
   SOUL PATCH TATTOO, MAIN STYLESHEET
   ============================================================
   Design tokens: black, parchment, signature red.
   Type stack: Rye (display), Big Shoulders Display (header),
   Spectral (body serif).
   ============================================================ */

:root {
  --ink:        #0c0a09;
  --ink-2:      #161311;
  --ink-3:      #211c19;
  --paper:      #ede4d3;
  --paper-dim:  #b8ad97;
  --paper-mute: #6b6253;
  --red:        #c42b1c;
  --red-deep:   #9a1f12;
  --red-glow:   #e84133;

  --serif: 'Spectral', Georgia, serif;
  --display: 'Rye', 'Big Shoulders Display', serif;
  --header: 'Big Shoulders Display', 'Helvetica Neue', sans-serif;

  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(196,43,28,0.04), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(196,43,28,0.03), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.75 0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 999;
  background: var(--red); color: #fff; padding: .5rem 1rem;
  font-family: var(--header); text-transform: uppercase; letter-spacing: .12em;
}
.skip-link:focus { top: 1rem; }

/* TOPBAR */
.topbar {
  background: #050403;
  border-bottom: 1px solid var(--ink-3);
  font-family: var(--header);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .65rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: .9rem;
  white-space: nowrap;
}
.topbar a {
  color: var(--paper-dim);
  transition: color .2s;
}
.topbar a:hover { color: var(--paper); }
.topbar-phone { color: var(--paper); font-weight: 700; letter-spacing: .12em; }
.topbar-phone:hover { color: var(--red-glow); }
.topbar-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--ink-3);
}
.topbar .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 8px var(--red-glow);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .35; }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,10,9,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-3);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.brand {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--paper);
  letter-spacing: .02em;
  line-height: 1;
}
.brand span { color: var(--red); }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: var(--header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--paper-dim);
  transition: color .2s;
  position: relative;
  padding: .25rem 0;
}
.nav-links a:hover { color: var(--paper); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  font-family: var(--header);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 20px -6px var(--red);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -6px var(--red);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper-mute);
}
.btn-ghost:hover { border-color: var(--paper); }

/* MOBILE MENU TOGGLE - hamburger icon (visible on mobile only) */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink-3);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background-color .2s;
}
.menu-toggle:hover { border-color: var(--paper-mute); }
.menu-toggle:active { background: var(--ink-2); }
.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
}
.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--paper);
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
/* Animated X when menu is open (body class set by JS) */
body.menu-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.menu-open .menu-toggle-bar:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE SLIDE-OUT MENU (full-screen drawer, hidden on desktop) */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-menu[aria-hidden="false"] .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(88vw, 380px);
  background: var(--ink);
  border-left: 1px solid var(--red-deep);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, .5);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* red accent bar */
  background-image: linear-gradient(180deg, var(--red) 0%, var(--red) 4px, transparent 4px);
}
.mobile-menu[aria-hidden="false"] .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--ink-3);
}
.mobile-menu-brand {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1;
}
.mobile-menu-brand span { color: var(--red); }

.mobile-menu-close {
  background: transparent;
  border: 1px solid var(--ink-3);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  padding: 0;
}
.mobile-menu-close:hover { border-color: var(--red); color: var(--red); }

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: .75rem 0;
  flex: 1;
}
.mobile-menu-list li {
  border-bottom: 1px solid var(--ink-3);
}
.mobile-menu-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--header);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background-color .15s, color .15s;
}
.mobile-menu-list a:active { background: var(--ink-2); }
.mobile-menu-list a:hover { color: var(--red); }
.mobile-menu-link-arrow {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0;
  font-weight: normal;
  transition: transform .2s;
}
.mobile-menu-list a:hover .mobile-menu-link-arrow {
  transform: translateX(4px);
}

.mobile-menu-foot {
  padding: 1.5rem;
  border-top: 1px solid var(--ink-3);
  background: var(--ink-2);
}
.mobile-menu-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 14px;
  letter-spacing: .25em;
  margin-bottom: 1rem;
}
.mobile-menu-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-menu-contact a {
  color: var(--paper);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu-contact a:hover { color: var(--red); }
.mobile-menu-contact span { color: var(--paper-mute); }

.mobile-menu-meta {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: .85rem;
  color: var(--paper-mute);
  line-height: 1.5;
  margin: 0;
}

/* Lock body scroll when menu open */
body.menu-open { overflow: hidden; }

/* HERO */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 10vw, 7rem) var(--pad) clamp(3rem, 8vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  overflow: hidden;
}
.hero-eyebrow {
  font-family: var(--header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  animation: fadeUp .8s .1s both;
}
.hero-eyebrow::before { content: '/ '; color: var(--paper-mute); }
.hero-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: .92;
  color: var(--paper);
  letter-spacing: -.005em;
  animation: fadeUp .9s .25s both;
}
.hero-title .accent { color: var(--red); }
.hero-tagline {
  max-width: 38ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.4;
  color: var(--paper);
  margin-top: .25rem;
  animation: fadeUp .9s .45s both;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.5rem;
  animation: fadeUp .9s .65s both;
}
.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  background: var(--ink-3);
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  animation: fadeUp .9s .85s both;
}
.hero-info > div { background: var(--ink); padding: 1.25rem 1.5rem; }
.hero-info .label {
  font-family: var(--header);
  font-size: 11px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--paper-mute); margin-bottom: .35rem;
}
.hero-info .value {
  font-family: var(--header);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: .04em;
  color: var(--paper);
  line-height: 1.3;
}
.hero-info a:hover { color: var(--red); }

/* SEAL */
.seal {
  position: absolute;
  top: 6%; right: -2%;
  width: clamp(180px, 24vw, 320px);
  transform: rotate(-12deg);
  opacity: .92;
  animation: fadeIn 1.4s 1s both, drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  from { transform: rotate(-12deg) translateY(0); }
  to   { transform: rotate(-9deg) translateY(-8px); }
}
.seal svg { width: 100%; height: auto; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: .92; }
}

/* SECTION SCAFFOLD */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.75rem;
  row-gap: .9rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink-3);
}
.section-num {
  font-family: var(--header);
  font-size: 13px; font-weight: 700;
  letter-spacing: .25em;
  color: var(--red);
  white-space: nowrap;
  padding-bottom: .35rem;
}
.section-title {
  font-family: var(--header);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--paper);
}
.section-sub {
  grid-column: 2;
  max-width: 60ch;
  color: var(--paper-dim);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* SPECIALTIES */
.specialties-list { display: grid; grid-template-columns: 1fr; }
.specialty {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ink-3);
  transition: padding .3s ease, background .3s ease;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.specialty:first-child { border-top: 1px solid var(--ink-3); }
.specialty:hover {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(196,43,28,0.06), transparent 60%);
}
.specialty:hover .specialty-name { color: var(--red-glow); }
.specialty::after {
  content: '→';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--paper-mute);
  font-family: var(--header);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity .25s, transform .25s;
}
.specialty:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(6px);
  color: var(--red);
}
.specialty-num {
  font-family: var(--header); font-size: 1rem;
  font-weight: 700; letter-spacing: .2em;
  color: var(--paper-mute);
}
.specialty-name {
  font-family: var(--header);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--paper);
  transition: color .25s;
}
.specialty-desc {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--paper-dim);
  max-width: 32ch; text-align: right;
}

/* EVENTS */
.events-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.event-feature {
  background: linear-gradient(135deg, #1a0d0b, var(--ink-2));
  border: 1px solid var(--red-deep);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative; overflow: hidden;
}
.event-feature::before {
  content: attr(data-big);
  position: absolute; bottom: -2rem; right: -1rem;
  font-family: var(--display);
  font-size: clamp(10rem, 22vw, 18rem);
  color: var(--red); opacity: .12;
  line-height: .85; pointer-events: none;
}
.event-tag {
  display: inline-block;
  font-family: var(--header);
  font-size: 11px; font-weight: 900;
  letter-spacing: .25em; text-transform: uppercase;
  color: #fff; background: var(--red);
  padding: .4rem .75rem; margin-bottom: 1rem;
}
.event-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: .95;
  color: var(--paper);
  margin-bottom: 1rem;
  position: relative; z-index: 2;
}
.event-date {
  font-family: var(--header);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--paper-dim);
  margin-bottom: 1rem;
  position: relative; z-index: 2;
}
.event-deal {
  display: inline-block;
  font-family: var(--header);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; letter-spacing: .03em;
  color: var(--red-glow);
  padding: .5rem 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  margin: 1rem 0;
  position: relative; z-index: 2;
}
.event-body {
  font-family: var(--serif);
  color: var(--paper);
  font-size: 1.05rem;
  max-width: 50ch; margin-bottom: 1.5rem;
  position: relative; z-index: 2;
}
.event-cta { position: relative; z-index: 2; }

.events-side h3 {
  font-family: var(--header);
  font-size: 12px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--ink-3);
}
.event-mini {
  padding: 1rem 0;
  border-bottom: 1px dashed var(--ink-3);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.event-mini-date {
  font-family: var(--display);
  font-size: 2rem; line-height: 1;
  color: var(--red); text-align: center;
  min-width: 3.5rem; padding-top: .15rem;
}
.event-mini-date small {
  display: block;
  font-family: var(--header);
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em;
  color: var(--paper-mute);
  margin-top: .25rem;
}
.event-mini-title {
  font-family: var(--header);
  font-weight: 700; font-size: 1rem;
  letter-spacing: .03em;
  color: var(--paper); line-height: 1.2;
}
.event-mini-desc {
  font-family: var(--serif); font-style: italic;
  font-size: .9rem; color: var(--paper-dim);
  margin-top: .25rem;
}

.archive-heading {
  font-family: var(--header);
  font-size: 12px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--red);
  margin: 3rem 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--ink-3);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.archive-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  padding: 1.25rem;
  transition: border-color .2s, transform .2s;
}
.archive-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.archive-date {
  font-family: var(--header);
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: .35rem;
}
.archive-title {
  font-family: var(--header);
  font-size: 1.1rem; font-weight: 700;
  color: var(--paper);
  letter-spacing: .02em; line-height: 1.2;
  margin-bottom: .35rem;
}
.archive-desc {
  font-family: var(--serif); font-style: italic;
  font-size: .9rem; color: var(--paper-dim);
  line-height: 1.4;
}

/* ARTISTS */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.artist-card {
  --artist-accent: var(--red);
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.artist-card::before {
  /* Diagonal grain overlay - very subtle */
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, transparent 49%, rgba(196,43,28,0.018) 50%, transparent 51%);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 1;
}
.artist-card:hover {
  border-color: var(--artist-accent);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(196,43,28,0.45);
}

/* CORNER CROP MARKS - tattoo-flash-sheet language */
.artist-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--paper-mute);
  z-index: 4;
  pointer-events: none;
  opacity: .35;
  transition: opacity .35s, border-color .35s, width .35s, height .35s;
}
.artist-corner-tl { top: 8px;    left: 8px;    border-right: 0; border-bottom: 0; }
.artist-corner-tr { top: 8px;    right: 8px;   border-left: 0;  border-bottom: 0; }
.artist-corner-bl { bottom: 8px; left: 8px;    border-right: 0; border-top: 0; }
.artist-corner-br { bottom: 8px; right: 8px;   border-left: 0;  border-top: 0; }
.artist-card:hover .artist-corner {
  opacity: 1;
  border-color: var(--artist-accent);
  width: 22px;
  height: 22px;
}

/* FEATURED CARD - magazine spread */
.artist-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  background:
    radial-gradient(circle at 20% 20%, rgba(196,43,28,0.10), transparent 55%),
    linear-gradient(135deg, var(--ink-2), #150a08);
  border-color: var(--red-deep);
  box-shadow: 0 30px 60px -30px rgba(196, 43, 28, .35);
}
.artist-card.featured .artist-portrait {
  aspect-ratio: 1/1;
  border-right: 1px solid var(--red-deep);
}
.artist-card.featured .artist-info {
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}
.artist-card.featured .artist-name {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -.01em;
}
.artist-card.featured .artist-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 55ch;
  color: var(--paper);
}

/* PORTRAIT */
.artist-portrait {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  overflow: hidden;
  z-index: 2;
}
.artist-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .5s ease;
  filter: saturate(0.85) contrast(1.05);
}
.artist-card:hover .artist-portrait img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.08);
}
.artist-portrait .artist-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 11rem);
  color: var(--artist-accent);
  opacity: .35;
  line-height: 1;
}

/* Veil: gradient overlay on the portrait, gives the photo more weight */
.artist-portrait-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,10,9,0.65) 100%);
  pointer-events: none;
  transition: opacity .35s;
}
.artist-card:hover .artist-portrait-veil { opacity: .8; }

/* INFO COLUMN */
.artist-info {
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* META STRIP - horizontal pipe of years / EST. / role */
.artist-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--ink-3);
}
.artist-meta-bit { white-space: nowrap; }
.artist-meta-num {
  color: var(--artist-accent);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
  margin-right: .15rem;
}
.artist-meta-sep {
  color: var(--ink-3);
  font-weight: 400;
}

/* NAME - display font even on regular cards */
.artist-name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: normal;
  line-height: 1;
  letter-spacing: -.005em;
  color: var(--paper);
  text-transform: none;
  margin: 0;
}
.artist-name a { color: inherit; transition: color .25s; }
.artist-card:hover .artist-name a { color: var(--artist-accent); }

/* SPECIALTY TAGS */
.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.artist-tag {
  font-family: var(--header);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper-dim);
  padding: .25rem .55rem;
  border: 1px solid var(--ink-3);
  background: rgba(255,255,255,0.02);
  transition: border-color .25s, color .25s;
}
.artist-card:hover .artist-tag {
  border-color: rgba(196,43,28,0.35);
  color: var(--paper);
}

/* BIO */
.artist-bio {
  font-family: var(--serif);
  color: var(--paper-dim);
  font-size: .98rem;
  line-height: 1.6;
  margin: 0;
}

/* ACTIONS ROW */
.artist-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--ink-3);
}
.artist-handle {
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--paper-dim);
  transition: color .2s;
}
.artist-handle:hover { color: var(--artist-accent); }

.artist-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--paper-mute);
  transition: color .25s, gap .25s;
}
.artist-arrow-mark {
  transition: transform .25s ease;
}
.artist-card:hover .artist-arrow {
  color: var(--artist-accent);
  gap: .55rem;
}
.artist-card:hover .artist-arrow-mark {
  transform: translateX(4px);
}


/* ARTIST PROFILE PAGE */
.artist-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.artist-hero-portrait {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
  border: 1px solid var(--red-deep);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.artist-hero-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.artist-hero-portrait .artist-monogram {
  font-family: var(--display);
  font-size: clamp(8rem, 16vw, 14rem);
  color: var(--red);
  opacity: .35;
  line-height: 1;
}
/* Crop marks specific to hero portrait - sized larger and positioned outside */
.artist-hero-portrait .artist-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--red);
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: none;
}
.artist-hero-portrait .artist-corner-tl { top: -10px; left: -10px;  border-right: 0; border-bottom: 0; }
.artist-hero-portrait .artist-corner-tr { top: -10px; right: -10px; border-left: 0;  border-bottom: 0; }
.artist-hero-portrait .artist-corner-bl { bottom: -10px; left: -10px;  border-right: 0; border-top: 0; }
.artist-hero-portrait .artist-corner-br { bottom: -10px; right: -10px; border-left: 0;  border-top: 0; }

/* Profile page uses the .artist-meta-strip from card CSS - applies cleanly */
.artist-hero .artist-meta-strip {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  font-size: 12px;
}
.artist-hero .artist-meta-num {
  font-size: 14px;
}

.artist-hero-name {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.artist-hero-bio {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--paper);
  max-width: 55ch;
  margin-bottom: 1.5rem;
}
/* Profile tags get a slightly more prominent treatment than card tags */
.artist-hero .artist-tags {
  margin-bottom: 1.75rem;
}
.artist-hero .artist-tag {
  font-size: 11px;
  padding: .4rem .8rem;
  border-color: var(--paper-mute);
}
.artist-contacts {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--header);
  font-size: 14px; font-weight: 700;
  letter-spacing: .1em;
}
.artist-contacts a { color: var(--paper); transition: color .2s; }
.artist-contacts a:hover { color: var(--red); }

/* VISIT */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.visit-info dt {
  font-family: var(--header);
  font-size: 11px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--red);
  margin-top: 1.5rem;
}
.visit-info dt:first-child { margin-top: 0; }
.visit-info dd {
  font-family: var(--header);
  font-size: 1.15rem; font-weight: 500;
  color: var(--paper);
  margin-top: .25rem;
  line-height: 1.5;
}
.visit-info dd.serif {
  font-family: var(--serif);
  font-weight: 400;
}
.visit-info dd a { transition: color .2s; }
.visit-info dd a:hover { color: var(--red); }

/* MAP - pizazzy tattoo-flash-sheet treatment */
.map-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: .85rem;
}
.map-banner {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .5rem 1.25rem;
  background: var(--ink-2);
  border: 1px solid var(--red-deep);
  position: relative;
}
.map-banner::before,
.map-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--red);
  transform: translateY(-50%);
}
.map-banner::before { left: -10px; }
.map-banner::after  { right: -10px; }
.map-banner-text {
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: .04em;
  color: var(--paper);
}
.map-banner-mark {
  font-family: var(--header);
  font-size: 1.1rem;
  color: var(--red);
  line-height: 1;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ink-2);
  border: 2px solid var(--ink-3);
  outline: 1px solid var(--red-deep);
  outline-offset: 6px;
  overflow: visible;
  box-shadow: 0 30px 60px -30px rgba(196, 43, 28, .35);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(.85) contrast(1.05);
}

/* L-shaped corner brackets, sit just outside the inner border */
.map-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  z-index: 2;
  pointer-events: none;
}
.map-corner-tl { top: -12px; left: -12px;  border-right: 0; border-bottom: 0; }
.map-corner-tr { top: -12px; right: -12px; border-left: 0;  border-bottom: 0; }
.map-corner-bl { bottom: -12px; left: -12px;  border-right: 0; border-top: 0; }
.map-corner-br { bottom: -12px; right: -12px; border-left: 0;  border-top: 0; }

/* Compass / address mark below the frame */
.map-compass {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: .65rem;
  width: 100%;
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.map-compass-line {
  flex: 1;
  height: 1px;
  background: var(--ink-3);
}
.map-compass-mark {
  white-space: nowrap;
  color: var(--paper-dim);
}

/* AFTERCARE PAGE */
.aftercare-prose {
  max-width: 70ch;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--paper);
}
.aftercare-prose h2 {
  font-family: var(--header);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--paper);
  margin: 3rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--red);
}
.aftercare-prose h3 {
  font-family: var(--header);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  margin: 2rem 0 .75rem;
}
.aftercare-prose p { margin-bottom: 1.25rem; }
.aftercare-prose ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding-left: 0;
}
.aftercare-prose li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .75rem;
}
.aftercare-prose li::before {
  content: '▸';
  position: absolute; left: 0; top: 0;
  color: var(--red);
  font-weight: bold;
}
.aftercare-prose .danger {
  background: linear-gradient(135deg, #1a0d0b, var(--ink-2));
  border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.aftercare-prose .danger h3 { margin-top: 0; }
.aftercare-prose strong { color: var(--paper); font-weight: 600; }

/* FAQ PAGE */
.faq-group {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ink-3);
}
.faq-group h2 {
  font-family: var(--header);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.faq-item {
  border-top: 1px solid var(--ink-3);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--ink-3); }
.faq-q {
  font-family: var(--header);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--paper);
  margin-bottom: .5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-q::after {
  content: '+';
  font-family: var(--header);
  font-size: 1.5rem;
  color: var(--red);
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--paper-dim);
  line-height: 1.65;
  padding-top: .5rem;
  max-width: 65ch;
}

/* FOOTER */
footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: #050403;
  border-top: 1px solid var(--ink-3);
  padding: clamp(3rem, 5vw, 4.5rem) var(--pad) 1.5rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer-col-brand { padding-right: 1rem; }
.footer-brand {
  font-family: var(--display);
  font-size: 2.5rem; line-height: 1;
  color: var(--paper);
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--red); }
.footer-tag {
  font-style: italic;
  color: var(--paper-dim);
  max-width: 38ch;
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.footer-social a {
  color: var(--paper);
  transition: color .2s;
}
.footer-social a:hover { color: var(--red); }
.footer-social-sep {
  width: 1px; height: 12px;
  background: var(--ink-3);
}
footer h4 {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--ink-3);
}
footer ul { list-style: none; }
footer li {
  font-family: var(--header);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .04em;
  margin-bottom: .55rem;
  color: var(--paper-dim);
  line-height: 1.5;
}
footer li a {
  color: var(--paper-dim);
  transition: color .2s;
}
footer li a:hover { color: var(--paper); }
.footer-bottom {
  max-width: var(--max);
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--header);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.footer-tagline {
  font-style: italic;
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--paper-dim);
}

/* REWARDS */
.reward-grid {
  display: grid;
  gap: 1.5rem;
}
.reward-grid-1 { grid-template-columns: minmax(0, 720px); justify-content: center; }
.reward-grid-2 { grid-template-columns: repeat(2, 1fr); }
.reward-grid-many { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.reward-card {
  background: linear-gradient(135deg, var(--ink-2), #1a0d0b 80%, var(--ink-2));
  border: 1px solid var(--red-deep);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.reward-card::before {
  content: '★';
  position: absolute;
  bottom: -3rem;
  right: -1rem;
  font-size: clamp(10rem, 18vw, 16rem);
  color: var(--red);
  opacity: .08;
  line-height: .85;
  pointer-events: none;
  font-family: var(--display);
}
/* REWARD HEADER (replaces old reward-card-head) */
.reward-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  border-bottom: 1px solid var(--ink-3);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.reward-header-left {
  min-width: 0;
}
.reward-header-mark {
  width: 64px;
  height: 64px;
  border: 2px solid var(--red-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.4);
  flex-shrink: 0;
  position: relative;
}
.reward-header-mark::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
}
.reward-mono {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
}
.reward-eyebrow {
  display: block;
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.reward-card-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: .35rem;
  letter-spacing: -.005em;
}
.reward-tagline {
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.reward-desc {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--paper);
  margin-bottom: 1.75rem;
  max-width: 60ch;
}

/* REWARD SECTIONS - "Reward Tiers" and "How It Works" */
.reward-section {
  position: relative; z-index: 2;
  margin-bottom: 1.75rem;
}
.reward-section:last-of-type {
  margin-bottom: 1.5rem;
}
.reward-section-label {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--ink-3);
  display: inline-block;
  padding-right: 1.5rem;
}

.reward-tiers {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--ink-3);
}
.reward-tier {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: .85rem 1.1rem;
  border-bottom: 1px dashed var(--ink-3);
  transition: background .2s, padding-left .2s;
}
.reward-tier:last-child { border-bottom: 0; }
.reward-tier:hover {
  background: rgba(196,43,28,0.08);
  padding-left: 1.5rem;
}
.reward-points {
  font-family: var(--header);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .03em;
  color: var(--red-glow);
  min-width: 5ch;
  text-align: right;
}
.reward-points::after {
  content: ' pts';
  font-size: .6em;
  font-weight: 500;
  color: var(--paper-mute);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.reward-name {
  font-family: var(--header);
  font-weight: 500;
  font-size: 1rem;
  color: var(--paper);
  letter-spacing: .02em;
}

/* RULES - structured definition list */
.reward-rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--ink-3);
  margin: 0;
  padding: 0;
}
.reward-rule {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: .75rem 1.1rem;
  border-bottom: 1px dashed var(--ink-3);
  align-items: baseline;
}
.reward-rule:last-child { border-bottom: 0; }
.reward-rule dt {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin: 0;
}
.reward-rule dd {
  font-family: var(--serif);
  font-size: .98rem;
  color: var(--paper);
  margin: 0;
}
.reward-cta {
  position: relative; z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* FOLLOW THE WORK (editorial row list) */
.follow-list {
  border-top: 1px solid var(--ink-3);
}
.follow-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 2fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--ink-3);
  color: inherit;
  cursor: pointer;
  transition: padding-left .25s ease, background .25s ease;
  position: relative;
}
.follow-row:hover {
  padding-left: 1.25rem;
  background: linear-gradient(90deg, rgba(196,43,28,0.06), transparent 70%);
}
.follow-row:hover .follow-name { color: var(--red-glow); }
.follow-row:hover .follow-arrow { transform: translateX(6px); }

.follow-name {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -.005em;
  transition: color .25s ease;
}
.follow-handle {
  font-family: var(--header);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--paper-dim);
}
.follow-cta {
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}
.follow-arrow {
  display: inline-block;
  margin-left: .25rem;
  transition: transform .25s ease;
}
.follow-row-pending {
  cursor: default;
  opacity: .9;
}
.follow-row-pending:hover { padding-left: 0; background: none; }
.follow-row-pending .follow-name { color: var(--paper-dim); }
.follow-row-pending .follow-handle {
  font-style: italic;
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0;
  color: var(--paper-mute);
}
.follow-row-pending .follow-cta {
  color: var(--paper-dim);
}

.follow-row-solo {
  border-top: 1px solid var(--ink-3);
}

.follow-aside {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-family: var(--header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.follow-aside-label {
  color: var(--paper-mute);
  letter-spacing: .25em;
  font-size: 11px;
}
.follow-aside a {
  color: var(--paper);
  position: relative;
  transition: color .2s;
}
.follow-aside a::after {
  content: ' ↗';
  font-size: .8em;
  color: var(--paper-mute);
}
.follow-aside a:hover { color: var(--red); }

/* STYLE PAGES (and other content pages) */
.prose {
  max-width: 70ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--paper);
}
.prose p { margin-bottom: 1.25rem; }
.prose em { color: var(--paper); font-style: italic; }
.prose p:last-child { margin-bottom: 0; }

/* ABOUT PAGE - centered editorial layout that reads like a magazine spread */
.about-section .section-head {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}
.about-section .section-head .section-num {
  padding-bottom: 0;
}
.about-section .section-sub {
  grid-column: 1;
  margin: 0 auto;
}
.about-section .prose {
  text-align: left;  /* prose stays readable left-aligned, but centered as a block */
}
.about-cta {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ink-3);
}
.about-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.about-cta .btn { margin: .25rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.col-heading {
  font-family: var(--header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--ink-3);
}
.bullet-list {
  list-style: none;
  padding-left: 0;
}
.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .75rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--paper);
  line-height: 1.55;
}
.bullet-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
}

.info-block {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-left: 3px solid var(--red);
}
.info-row {
  padding: 1.5rem clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 1px solid var(--ink-3);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}
.info-row:last-child { border-bottom: 0; }
.info-label {
  font-family: var(--header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.2;
}
.info-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--paper);
  line-height: 1.6;
  margin: 0;
}

/* IN-SHOP FINDS / PARTNERS */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.partner-card {
  --partner-accent: var(--red);
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  position: relative;
}
.partner-card:hover {
  border-color: var(--partner-accent);
  transform: translateY(-3px);
}
.partner-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ink-2), #1a0d0b);
  border-color: var(--red-deep);
  box-shadow: 0 30px 60px -30px rgba(196, 43, 28, .25);
}
.partner-card.featured .partner-mark {
  aspect-ratio: 4/5;
}

.partner-mark {
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  border-right: 1px solid var(--ink-3);
  padding: 2rem 1rem;
  aspect-ratio: 1/1;
}
.partner-mark::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60%;
  height: 60%;
  border: 2px solid var(--partner-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: .15;
  pointer-events: none;
}
.partner-monogram {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--partner-accent);
  letter-spacing: -.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.partner-category {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--paper-mute);
  position: relative;
  z-index: 1;
  text-align: center;
}

.partner-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.partner-card.featured .partner-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.partner-name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -.005em;
  margin-bottom: .35rem;
}
.partner-card.featured .partner-name {
  font-size: clamp(2rem, 4vw, 3rem);
}
.partner-tagline {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--partner-accent);
  margin-bottom: 1rem;
}
.partner-desc {
  font-family: var(--serif);
  color: var(--paper-dim);
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 55ch;
}
.partner-pickup {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--paper-dim);
  padding: .75rem 1rem;
  background: rgba(0,0,0,.25);
  border-left: 2px solid var(--partner-accent);
  margin-bottom: 1rem;
}
.partner-pickup-label {
  font-family: var(--header);
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
  margin-right: .5rem;
}
.partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: auto;
}
.partner-link {
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--partner-accent);
  transition: color .2s, transform .2s;
}
.partner-link:hover { color: var(--paper); }
.partner-link:hover .partner-arrow { transform: translateX(4px); }
.partner-arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.partner-link-secondary {
  color: var(--paper-dim);
  letter-spacing: .15em;
}
.partner-link-secondary:hover { color: var(--paper); }

/* FILTER BOARD - Find Your Artist */
.filter-board {
  position: relative;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink-3);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--ink-3);
  color: var(--paper-dim);
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .65rem 1.1rem;
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .15s ease;
  position: relative;
}
.filter-btn:hover {
  border-color: var(--paper-mute);
  color: var(--paper);
  transform: translateY(-1px);
}
.filter-btn.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 6px 16px -8px rgba(196,43,28,.7);
}

.filter-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  position: relative;
  min-height: 220px;
}
.filter-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--paper-mute);
  font-size: 1.1rem;
}
.filter-results.is-empty .filter-empty { display: block; }

.filter-chip {
  display: grid;
  grid-template-columns: 90px 1fr;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  color: inherit;
  overflow: hidden;
  position: relative;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease, opacity .35s ease;
}
.filter-chip:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(196,43,28,.45);
}
.filter-chip.is-hidden {
  display: none;
}

.filter-chip-portrait {
  display: block;
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.filter-chip-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85);
  transition: filter .3s, transform .5s;
}
.filter-chip:hover .filter-chip-portrait img {
  filter: saturate(1.05);
  transform: scale(1.05);
}
.filter-chip-monogram {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--red);
  opacity: .35;
  line-height: 1;
}
.filter-chip-body {
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  justify-content: center;
}
.filter-chip-name {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--paper);
}
.filter-chip-meta {
  font-family: var(--header);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
}
.filter-chip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  margin-top: .15rem;
}
.filter-chip-tag {
  font-family: var(--header);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding: .15rem .4rem;
  border: 1px solid var(--ink-3);
}
.filter-chip-years {
  display: inline-block;
}

/* TAP-TO-COPY ADDRESS */
.address-copy {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: 1.5;
  transition: color .25s;
}
.address-copy:hover { color: var(--red-glow); }
.address-text {
  display: block;
  border-bottom: 1px dashed var(--ink-3);
  padding-bottom: .35rem;
  transition: border-color .25s;
}
.address-copy:hover .address-text { border-bottom-color: var(--red); }
.address-hint, .address-copied {
  display: inline-block;
  font-family: var(--header);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-top: .5rem;
  transition: opacity .25s;
}
.address-hint { color: var(--paper-mute); }
.address-copied {
  color: var(--red-glow);
  position: absolute;
  bottom: 0; left: 0;
  opacity: 0;
}
.address-copy.is-copied .address-hint { opacity: 0; }
.address-copy.is-copied .address-copied { opacity: 1; }
.address-copy.is-copied .address-text {
  border-bottom-color: var(--red);
  color: var(--red-glow);
}

/* ABOUT PAGE - story stack */
.story-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.story-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.story-block-reverse { grid-template-columns: 1.6fr 1fr; }
.story-block-reverse .story-portrait { order: 2; }
.story-block-reverse .story-body { order: 1; }

.story-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
  border: 1px solid var(--red-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: filter .5s, transform .8s;
}
.story-block:hover .story-portrait img {
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.03);
}
.story-portrait .artist-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--red);
  z-index: 3;
  pointer-events: none;
  opacity: 1;
}
.story-portrait .artist-corner-tl { top: -10px; left: -10px;  border-right: 0; border-bottom: 0; }
.story-portrait .artist-corner-tr { top: -10px; right: -10px; border-left: 0;  border-bottom: 0; }
.story-portrait .artist-corner-bl { bottom: -10px; left: -10px;  border-right: 0; border-top: 0; }
.story-portrait .artist-corner-br { bottom: -10px; right: -10px; border-left: 0;  border-top: 0; }
.story-monogram {
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 10rem);
  color: var(--red);
  opacity: .35;
  line-height: 1;
}

.story-eyebrow {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: .75rem;
}
.story-name {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.story-text {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--paper);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}
.story-link {
  display: inline-block;
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red-deep);
  padding-bottom: .35rem;
  transition: color .25s, border-color .25s, gap .25s;
}
.story-link:hover {
  color: var(--red-glow);
  border-bottom-color: var(--red);
}

/* COMING SOON REWARD CARD */
.reward-card-coming-soon {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      135deg,
      var(--ink-2) 0,
      var(--ink-2) 18px,
      rgba(196,43,28,0.025) 18px,
      rgba(196,43,28,0.025) 19px
    );
  border-color: var(--ink-3);
}
.reward-card-coming-soon .reward-eyebrow {
  color: var(--paper-mute);
}
.reward-card-coming-soon .reward-card-title {
  color: var(--paper);
}
.reward-card-coming-soon .reward-tagline {
  color: var(--paper-dim);
  font-style: italic;
}

/* The big stamp graphic in the corner */
.reward-stamp {
  position: absolute;
  top: 1.25rem;
  right: -1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.5rem;
  border: 3px solid var(--red);
  border-radius: 4px;
  transform: rotate(8deg);
  background: rgba(12,10,9,.55);
  box-shadow: 0 0 0 1px var(--red-deep) inset;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(196,43,28,.3));
}
.reward-stamp::before {
  /* Thin double border inside */
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--red);
  pointer-events: none;
}
.reward-stamp-line {
  font-family: var(--header);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
}
.reward-stamp-line:first-child {
  margin-bottom: .15rem;
}

/* Big monogram in middle of card replacing the tier list */
.reward-coming-soon-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 2.5rem 1rem;
  margin: 1rem 0;
  border-top: 1px dashed var(--ink-3);
  border-bottom: 1px dashed var(--ink-3);
  position: relative;
}
.reward-coming-monogram {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--red);
  opacity: .35;
  line-height: 1;
}
.reward-coming-label {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* SHOP MERCH */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.merch-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  position: relative;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  overflow: hidden;
}
.merch-card::before {
  /* Subtle red haze on hover from top-right */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(196,43,28,0.08), transparent 50%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.merch-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(196,43,28,.4);
}
.merch-card:hover::before { opacity: 1; }

.merch-card .artist-corner {
  border-color: var(--paper-mute);
  opacity: .35;
}
.merch-card:hover .artist-corner {
  opacity: 1;
  border-color: var(--red);
}

.merch-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.25rem;
  color: var(--red);
  opacity: .9;
  transition: transform .35s, opacity .35s;
}
.merch-card:hover .merch-icon {
  transform: scale(1.05);
  opacity: 1;
}
.merch-icon svg {
  width: 100%;
  height: 100%;
}

.merch-name {
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--paper);
  margin-bottom: .5rem;
  letter-spacing: -.005em;
}
.merch-tagline {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.merch-detail {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--paper-dim);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 32ch;
}

.merch-availability {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--ink-3);
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.merch-availability-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
.merch-availability-text {
  white-space: nowrap;
}

.merch-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--red);
  background: var(--ink-2);
  font-family: var(--serif);
  font-style: italic;
  color: var(--paper-dim);
  font-size: .98rem;
  line-height: 1.6;
}
.merch-note a {
  color: var(--paper);
  border-bottom: 1px solid var(--red-deep);
  transition: color .2s;
}
.merch-note a:hover {
  color: var(--red);
}

/* INSTAGRAM BUTTON + LIGHTBOX */
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: 0;
  padding: .55rem .95rem;
  color: #fff;
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, filter .25s;
  position: relative;
}
.ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(220, 39, 67, .55);
  filter: saturate(1.15);
}
.ig-btn-compact {
  padding: .4rem .7rem;
  font-size: 10px;
  letter-spacing: .12em;
}
.ig-btn-icon {
  display: inline-flex;
}
.ig-btn-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 18px;
  padding: 0 .3rem;
  background: rgba(0,0,0,.35);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

/* LIGHTBOX */
.ig-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.ig-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.ig-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(6px);
}
.ig-lightbox-frame {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--red-deep);
  width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8), 0 0 0 1px rgba(196, 43, 28, .15);
  transform: scale(.96) translateY(10px);
  transition: transform .3s ease;
}
.ig-lightbox.is-open .ig-lightbox-frame {
  transform: scale(1) translateY(0);
}

.ig-lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--ink-3);
}
.ig-lightbox-title-wrap {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.ig-lightbox-eyebrow {
  font-family: var(--header);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
}
.ig-lightbox-title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1;
  color: var(--paper);
  margin: 0;
}
.ig-lightbox-handle {
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--paper-dim);
  margin-top: .15rem;
}
.ig-lightbox-handle:hover { color: var(--red); }

.ig-lightbox-close {
  background: transparent;
  border: 1px solid var(--ink-3);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper-dim);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s, color .2s, transform .2s;
}
.ig-lightbox-close:hover {
  border-color: var(--red);
  color: var(--paper);
  transform: rotate(90deg);
}

.ig-lightbox-grid {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  background: var(--ink-2);
}
.ig-embed-wrap {
  background: #fff;
  position: relative;
  min-height: 600px;
}
.ig-embed-wrap.is-video {
  min-height: 780px;  /* Reels are 9:16, need taller frame for full video + caption */
}
.ig-embed {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
}
.ig-embed-wrap.is-video .ig-embed {
  height: 780px;
}

.ig-lightbox-foot {
  padding: 1rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--ink-3);
  background: var(--ink);
}
.ig-lightbox-profile-link {
  display: inline-block;
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
  padding: .65rem 1.5rem;
  border: 1px solid var(--red);
  transition: background .25s, color .25s;
}
.ig-lightbox-profile-link:hover {
  background: var(--red);
  color: var(--paper);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; padding-right: 0; max-width: 60ch; }
  .ig-lightbox-frame { width: min(94vw, 900px); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  /* Hide the desktop BOOK NOW button on mobile - it lives in the slide-out menu now */
  .nav-book { display: none; }
  /* Show hamburger button */
  .menu-toggle { display: flex; }
  /* Tighten nav padding so brand and hamburger sit comfortably */
  .nav-inner {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: .85rem var(--pad);
  }
  .brand { font-size: 1.4rem; }

  .hero-info { grid-template-columns: 1fr; }
  .specialty { grid-template-columns: 50px 1fr; gap: 1rem; }
  .specialty-desc { grid-column: 1 / -1; text-align: left; margin-top: .5rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
  .artist-card.featured { grid-column: span 1; }
  .artist-card.featured .artist-portrait { aspect-ratio: 4/5; }
  .seal { width: 130px; top: 2%; right: -10px; }
  .events-grid { grid-template-columns: 1fr; }
  .artist-hero { grid-template-columns: 1fr; }
  .reward-grid-2 { grid-template-columns: 1fr; }
  .reward-grid-many { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; gap: .5rem; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card,
  .partner-card.featured {
    grid-template-columns: 1fr;
  }
  .partner-mark {
    aspect-ratio: 16/9;
    border-right: 0;
    border-bottom: 1px solid var(--ink-3);
  }
  .merch-grid { grid-template-columns: 1fr; }
  .story-block,
  .story-block-reverse {
    grid-template-columns: 1fr;
  }
  .story-block-reverse .story-portrait { order: 0; }
  .story-block-reverse .story-body { order: 0; }

  /* Featured artist card stacks vertically on tablet/mobile */
  .artist-card.featured {
    grid-template-columns: 1fr;
  }
  .artist-card.featured .artist-portrait {
    aspect-ratio: 4/5;
    border-right: 0;
    border-bottom: 1px solid var(--red-deep);
  }
  .artists-grid { grid-template-columns: 1fr; }

  /* Topbar collapses gracefully on tablet/mobile */
  .topbar-inner { gap: .75rem; flex-wrap: wrap; justify-content: center; }
  .topbar-left, .topbar-right { gap: .65rem; flex-wrap: wrap; justify-content: center; }

  /* IG Lightbox tablet-down adjustments */
  .ig-lightbox-frame {
    width: 95vw;
    max-height: 92vh;
  }
  .ig-lightbox-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .ig-embed-wrap {
    min-height: 500px;
  }
  .ig-embed-wrap.is-video {
    min-height: 680px;
  }
  .ig-embed {
    height: 500px;
  }
  .ig-embed-wrap.is-video .ig-embed {
    height: 680px;
  }

  /* Filter board chip narrower portrait on small */
  .filter-chip {
    grid-template-columns: 80px 1fr;
  }
  .filter-results {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col-brand { padding-right: 0; }
  .section-head { grid-template-columns: 1fr; gap: .5rem; }
  .section-sub { grid-column: 1; }

  /* On small phones, hide the address part of topbar to keep it on one line */
  .topbar-left > span:nth-child(n+4) { display: none; }
  .topbar-left > .topbar-sep:nth-child(3) { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }

  /* Seal hidden on small phones (decorative, room is tight) */
  .seal { width: 88px; right: 4px; top: 4px; opacity: .7; }

  /* Follow row stacks on mobile so nothing pushes off screen */
  .follow-row {
    grid-template-columns: 1fr auto;
    gap: .35rem 1rem;
    padding: 1.25rem .25rem;
  }
  .follow-row:hover { padding-left: .25rem; }
  .follow-name { grid-column: 1; grid-row: 1; }
  .follow-handle { grid-column: 1; grid-row: 2; }
  .follow-cta { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 10px; letter-spacing: .15em; }

  /* TAP TARGETS - all interactive elements at least 44px tall on small screens */
  .btn { min-height: 44px; padding-top: .9rem; padding-bottom: .9rem; }
  .filter-btn { min-height: 44px; padding-top: .9rem; padding-bottom: .9rem; }
  .ig-btn { min-height: 38px; }
  .nav-link { padding: .85rem 0; }
  .footer-link { padding: .35rem 0; display: inline-block; }

  /* REWARD CARDS - mobile compact */
  .reward-card {
    padding: 1.25rem 1.1rem;
  }
  .reward-header {
    grid-template-columns: 1fr;
    gap: .85rem;
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
  }
  .reward-header-mark {
    width: 52px;
    height: 52px;
    align-self: flex-start;
    order: -1;  /* mark goes above title on mobile */
  }
  .reward-mono { font-size: 1.4rem; }
  .reward-card-title { font-size: 1.4rem; }
  .reward-rule {
    grid-template-columns: 1fr;
    gap: .15rem;
    padding: .75rem .95rem;
  }
  .reward-rule dt {
    color: var(--red);
    font-size: 10px;
  }
  .reward-tier {
    grid-template-columns: 4ch 1fr;
    gap: .85rem;
    padding: .7rem .9rem;
  }
  .reward-tier:hover {
    padding-left: .9rem;  /* disable shift on touch */
  }

  /* Coming Soon cards - stamp shrinks */
  .reward-stamp {
    top: .85rem;
    right: -.5rem;
    padding: .55rem 1rem;
  }
  .reward-stamp-line {
    font-size: 11px;
    letter-spacing: .2em;
  }
  .reward-coming-soon-mark {
    padding: 1.5rem .5rem;
    margin: .75rem 0;
  }

  /* MERCH CARDS - tighter on phones */
  .merch-card {
    padding: 1.5rem 1.25rem;
  }
  .merch-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }
  .merch-name { font-size: 1.5rem; }

  /* TAP-TO-COPY tap target */
  .address-copy {
    min-height: 44px;
    padding: .25rem 0;
  }

  /* IG Lightbox phone adjustments */
  .ig-lightbox-frame {
    width: 100vw;
    max-height: 100vh;
    border: 0;
  }
  .ig-lightbox-head {
    padding: 1rem 1.1rem;
    flex-wrap: wrap;
  }
  .ig-lightbox-title { font-size: 1.2rem; }
  .ig-embed-wrap {
    min-height: 480px;
  }
  .ig-embed-wrap.is-video {
    min-height: 620px;
  }
  .ig-embed {
    height: 480px;
  }
  .ig-embed-wrap.is-video .ig-embed {
    height: 620px;
  }
  .ig-lightbox-foot {
    padding: .9rem 1rem;
  }
  .ig-lightbox-profile-link {
    width: 100%;
    text-align: center;
    padding: .9rem 1rem;
  }

  /* ARTIST CARDS - cleaner stacking */
  .artist-info {
    padding: 1.25rem 1.1rem;
  }
  .artist-name { font-size: 1.5rem; }
  .artist-card.featured .artist-name { font-size: 2rem; }
  .artist-actions {
    flex-wrap: wrap;
    gap: .65rem;
  }

  /* PARTNER CARDS */
  .partner-card .partner-body {
    padding: 1.25rem 1.1rem;
  }
  .partner-name { font-size: 1.4rem; }
  .partner-card.featured .partner-name { font-size: 1.85rem; }

  /* HERO DOWNSIZED */
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* SECTION TITLES */
  .section-title { font-size: clamp(2rem, 9vw, 3rem); }

  /* STORY BLOCKS */
  .story-name { font-size: 1.7rem; }

  /* MAP FRAME */
  .map-frame { padding: 1rem; }
  .map-banner { font-size: 11px; padding: .35rem .6rem; }
}

@media (max-width: 380px) {
  /* Very small phones (iPhone SE 1st gen etc.) */
  :root { --pad: 1rem; }
  .seal { display: none; }
  .filter-bar { gap: .4rem; }
  .filter-btn { padding: .65rem .85rem; font-size: 10px; letter-spacing: .1em; }
  .artist-tag { font-size: 9px; padding: .2rem .45rem; }
  .merch-card { padding: 1.25rem 1rem; }
  .reward-card { padding: 1rem .9rem; }
  .follow-aside { gap: 1rem; font-size: 12px; }
  .follow-aside-label { width: 100%; }
  .ig-embed-wrap { min-height: 420px; }
  .ig-embed-wrap.is-video { min-height: 540px; }
  .ig-embed { height: 420px; }
  .ig-embed-wrap.is-video .ig-embed { height: 540px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   LATEST WORK FEEDS (homepage 3x3 + profile 2x3)
   ============================================================
   Lazy-loaded IG embeds. Native loading="lazy" on iframes means
   the embed only downloads when scrolled into viewport, keeping
   initial page weight small even with 9 cells on the homepage.
*/

/* HOMEPAGE FEED - one row per artist */
.latest-feed {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.latest-row {
  display: grid;
  gap: 1rem;
}
.latest-row-head {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem;
  justify-content: space-between; align-items: baseline;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--ink-3);
}
.latest-row-title {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .85rem;
}
.latest-row-name {
  font-family: var(--header);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper);
}
.latest-row-handle {
  font-family: var(--header);
  font-size: 12px; font-weight: 700;
  letter-spacing: .15em;
  color: var(--paper-mute);
  text-decoration: none;
  transition: color .2s;
}
.latest-row-handle:hover { color: var(--red); }
.latest-row-link {
  font-family: var(--header);
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  transition: gap .2s;
}
.latest-row-link:hover { color: var(--red-glow); }

.latest-row-cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.latest-cell {
  aspect-ratio: 1 / 1;
  background: #fff;  /* IG embed assumes white bg */
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-3);
}
.latest-cell-empty {
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border: 1px dashed var(--ink-3);
  aspect-ratio: 1 / 1;
}
.latest-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.latest-feed-divider {
  height: 1px;
  background: var(--ink-3);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

/* PROFILE PAGE FEED - 3 cols x 2 rows */
.profile-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.profile-cell {
  aspect-ratio: 1 / 1;
  background: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-3);
}
.profile-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.profile-feed-action {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* TABLET: 2 cells per row, hide 3rd to keep grid balanced */
@media (max-width: 900px) {
  .latest-row-cells {
    grid-template-columns: repeat(2, 1fr);
  }
  .latest-row-cells .latest-cell:nth-child(n+3) {
    display: none;
  }
  .profile-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE: 1 cell per artist (3 total on homepage) to keep page short.
   IG embeds need ~300px wide minimum to render well, single column gives
   them the full mobile width. */
@media (max-width: 600px) {
  .latest-row-cells {
    grid-template-columns: 1fr;
  }
  .latest-row-cells .latest-cell:nth-child(n+2) {
    display: none;
  }
  .latest-row-head {
    padding-bottom: .65rem;
  }
  .profile-feed {
    grid-template-columns: 1fr;
  }
  .profile-feed .profile-cell:nth-child(n+4) {
    display: none;  /* show only 3 on phone */
  }
}

/* ============================================================
   FRIENDS OF THE SHOP - LOCAL RECOMMENDATIONS
   ============================================================
   Compact card grid showing local businesses Dano recommends.
   Different visual treatment from .partner-card (in-shop merch
   sellers) - this is purely referral, no transaction.
*/

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.rec-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.4rem 1.5rem;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  transition: border-color .25s, transform .25s;
}
.rec-card:hover {
  border-color: var(--red-deep);
  transform: translateY(-2px);
}

.rec-monogram {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -.02em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, .08);
}

.rec-body { min-width: 0; }

.rec-eyebrow-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .85rem;
  margin-bottom: .35rem;
}
.rec-category {
  font-family: var(--header);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
}
.rec-distance {
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--paper-mute);
}

.rec-name {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: .2rem;
}

.rec-owner {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--paper-dim);
  margin-bottom: .15rem;
}

.rec-address {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: .85rem;
}

.rec-note {
  font-family: var(--serif);
  font-size: .98rem;
  line-height: 1.55;
  color: var(--paper);
  margin-bottom: 1rem;
}

.rec-actions {
  display: flex; flex-wrap: wrap; gap: .35rem .9rem;
  padding-top: .85rem;
  border-top: 1px solid var(--ink-3);
}
.rec-link {
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: .25rem 0;
  transition: color .2s;
}
.rec-link:hover { color: var(--red); }

@media (max-width: 900px) {
  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .rec-card {
    padding: 1.1rem 1.1rem;
    gap: .85rem;
  }
  .rec-monogram {
    width: 44px; height: 44px;
    font-size: 1.15rem;
  }
  .rec-name { font-size: 1.25rem; }
  .rec-actions { gap: .25rem .75rem; }
}

/* ============================================================
   STYLE BREAKDOWN - on artist profile pages
   ============================================================
*/
.style-breakdown {
  display: grid;
  gap: 1rem;
}
.style-breakdown-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  align-items: baseline;
}
.style-breakdown-name {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -.01em;
}
.style-breakdown-desc {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--paper-dim);
}

@media (max-width: 700px) {
  .style-breakdown-row {
    grid-template-columns: 1fr;
    gap: .65rem;
    padding: 1.1rem 1.1rem;
  }
  .style-breakdown-name {
    font-size: 1.25rem;
  }
}

/* ============================================================
   REVIEWS - homepage feed + per-artist
   ============================================================
*/

/* Aggregate rating chip at top of homepage reviews section */
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-left: 3px solid var(--red);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.reviews-aggregate-stars {
  font-size: 1.6rem;
  letter-spacing: .15em;
  line-height: 1;
}
.reviews-aggregate-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-family: var(--header);
}
.reviews-aggregate-text strong {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper);
}
.reviews-aggregate-text span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--paper-mute);
  font-size: .92rem;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
}

/* Stars */
.review-star-filled { color: var(--red); }
.review-star-empty { color: var(--ink-3); }

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.reviews-grid-artist {
  grid-template-columns: repeat(2, 1fr);
}

/* Card */
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.review-card:hover {
  border-color: var(--red-deep);
  transform: translateY(-2px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -.25rem;
  left: 1rem;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  opacity: .35;
  pointer-events: none;
}

.review-stars {
  font-size: 1.05rem;
  letter-spacing: .15em;
  margin-bottom: .85rem;
  line-height: 1;
}

.review-text {
  margin: 0;
  flex: 1;
}
.review-text p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--paper);
  font-style: italic;
}

.review-foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ink-3);
}
.review-author {
  display: block;
  font-family: var(--header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: .35rem;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
  font-family: var(--serif);
  font-size: .85rem;
  color: var(--paper-mute);
  font-style: italic;
}
.review-piece { color: var(--red); font-style: normal; font-family: var(--header); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: .15rem .45rem; border: 1px solid var(--red-deep); }
.review-artist-link a { color: var(--paper-dim); text-decoration: none; transition: color .2s; }
.review-artist-link a:hover { color: var(--red); }
.review-date { color: var(--paper-mute); }
.review-source { color: var(--paper-mute); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid-artist { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-aggregate { padding: 1rem 1.1rem; flex-direction: column; align-items: flex-start; gap: .65rem; }
  .review-card { padding: 1.25rem 1.1rem 1rem; }
  .review-card::before { font-size: 3rem; }
  .review-text p { font-size: .98rem; }
}

/* ============================================================
   ARTIST PAGE - cohesive editorial layout
   ============================================================
*/

/* Centered section heads (used on artist page + about page) */
.section-head-centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}
.section-head-centered .section-num { padding-bottom: 0; }
.section-head-centered .section-sub { grid-column: 1; margin: 0 auto; }

/* All artist page sections share this so spacing feels intentional */
.artist-page .artist-section { padding-top: clamp(3.5rem, 6vw, 5rem); }
.artist-page .artist-section + .artist-section { padding-top: 0; }

/* BOOKING BLOCK - clean unified two-column action card */
.book-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  padding: 2rem;
  max-width: 880px;
  margin: 0 auto;
}
.book-block-actions {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.book-block-btn {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: .15rem;
  text-align: left !important;
  padding: 1rem 1.25rem !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
.book-block-btn-label {
  font-family: var(--header);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.book-block-btn-detail {
  font-family: var(--serif);
  font-style: italic;
  font-size: .88rem;
  letter-spacing: 0;
  text-transform: none;
  opacity: .85;
  font-weight: normal;
}
.book-block-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
  border-left: 1px solid var(--ink-3);
}
.book-block-meta-row {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.book-block-meta-label {
  font-family: var(--header);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
}
.book-block-meta-value {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--paper);
}

/* Footer CTA */
.artist-foot-cta {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--ink-3);
}
.artist-foot-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--paper-dim);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 800px) {
  .book-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .book-block-meta {
    padding-left: 0;
    padding-top: 1.25rem;
    border-left: 0;
    border-top: 1px solid var(--ink-3);
  }
}

@media (max-width: 600px) {
  .book-block { padding: 1.25rem; }
  .book-block-btn { padding: .9rem 1rem !important; }
}

/* ============================================================
   ARTIST HERO - integrated booking design
   ============================================================
   The hero now contains everything: portrait, meta, name, bio,
   specialty tags, a polished booking action group, and finally
   a thin secondary social-strip. No more separate booking section.
*/

.artist-hero-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Booking block, integrated into hero */
.hero-book {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-3);
  position: relative;
}
.hero-book::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--red);
}

.hero-book-label {
  display: block;
  font-family: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

/* Action buttons row - phone primary, email/dm secondary */
.hero-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1.5rem;
}

.hero-book-btn {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .65rem;
  align-items: center;

  padding: .8rem 1.1rem;
  background: transparent;
  border: 1px solid var(--paper-mute);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, background-color .2s, transform .2s, color .2s;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 280px;
  position: relative;
}
.hero-book-btn:hover {
  border-color: var(--red);
  background: rgba(196, 43, 28, 0.06);
  transform: translateY(-1px);
  color: var(--paper);
}

.hero-book-btn svg {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .2s;
}
.hero-book-btn:hover svg {
  transform: scale(1.1);
}

.hero-book-btn-label {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.2;
}
.hero-book-btn-detail {
  grid-row: 2;
  grid-column: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--paper-dim);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
  word-break: break-word;
}

/* Primary Call button gets the red treatment */
.hero-book-btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}
.hero-book-btn-primary:hover {
  background: var(--red-glow, #e8463a);
  border-color: var(--red-glow, #e8463a);
  color: var(--paper);
}
.hero-book-btn-primary svg {
  color: var(--paper);
}
.hero-book-btn-primary .hero-book-btn-detail {
  color: rgba(237, 228, 211, 0.85);
}

/* Foot info row - shop, hours, booking note */
.hero-book-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 1rem 1.25rem;
  background: var(--ink-2);
  border-left: 2px solid var(--red);
}
.hero-book-foot-bit {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--paper);
  line-height: 1.4;
}
.hero-book-foot-bit a {
  color: var(--paper);
  text-decoration: none;
  transition: color .2s;
  border-bottom: 1px dotted transparent;
}
.hero-book-foot-bit a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.hero-book-foot-label {
  font-family: var(--header);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
}

/* Secondary social strip (Facebook, Threads, TikTok) */
.hero-social-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-3);
  font-family: var(--header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
}
.hero-social-strip-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.hero-social-strip a {
  color: var(--paper-dim);
  text-decoration: none;
  transition: color .2s;
}
.hero-social-strip a:hover { color: var(--red); }

/* Hide the old contacts strip on artist pages now that hero handles it */
.artist-hero .artist-contacts { display: none; }

/* Push hero margin so the section flow underneath feels grounded */
.artist-hero { padding-bottom: clamp(2rem, 4vw, 3.5rem); }

@media (max-width: 800px) {
  .hero-book-btn { min-width: 160px; flex: 1 1 160px; }
  .hero-book-foot { gap: 1rem 1.5rem; }
}

@media (max-width: 600px) {
  .hero-book-actions { flex-direction: column; gap: .5rem; }
  .hero-book-btn { max-width: none; min-width: 0; width: 100%; }
  .hero-book-foot {
    flex-direction: column;
    gap: .75rem;
    padding: .85rem 1rem;
  }
  .hero-social-strip { gap: .85rem; }
  .hero-social-strip-label { width: 100%; margin-bottom: -.35rem; }
}
