:root {
  --ink: #0A0D12;
  --ink-raised: #12161D;
  --steel: #3E7CB1;
  --frost: #8FC8F0;
  --ember: #C8502E;
  --ember-bright: #E06A44;
  --brass: #B99A4B;
  --bone: #E7E3DA;
  --bone-dim: #9AA0A8;

  --font-display: 'Fraunces', ui-serif, serif;
  --font-body: 'Archivo', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  /* Off-screen scroll-sections still carry their GSAP entrance transform
     (e.g. slide-left/-right's +-80px) the instant the page loads, even
     while visibility:hidden -- that's enough to inflate the document's
     scrollable width past the viewport on narrower phones. overflow-x on
     body alone doesn't stop that growth on mobile Safari; it has to be on
     html too, or the fixed badge layer shows through the gap on one side. */
  overflow-x: hidden;
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse 60% 38% at 14% 6%, rgba(62, 124, 177, 0.20), transparent 62%),
    radial-gradient(ellipse 55% 42% at 88% 40%, rgba(200, 80, 46, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 46% at 12% 82%, rgba(200, 80, 46, 0.14), transparent 62%),
    var(--ink);
  background-attachment: fixed;
  color: var(--bone);
  font-family: var(--font-body);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--frost);
  outline-offset: 3px;
}

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  color: var(--bone);
}
#loader-bar {
  width: min(280px, 60vw);
  height: 1px;
  background: rgba(231, 227, 218, 0.15);
  position: relative;
}
#loader-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--steel);
  transition: width 0.15s linear;
}
#loader-percent {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(10,13,18,0.85), transparent);
}
/* Past the hero, section text can drift up near the header as it scrolls out
   (see setupSectionAnimation in app.js) -- the fade-to-transparent gradient
   doesn't fully occlude it. Once scrolled, switch to a solid fill so the nav
   always stays legible; the transparent-over-hero look is only needed at the
   very top anyway. */
.site-header.scrolled { background: var(--ink); }
.site-header nav {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-mark { display: flex; align-items: center; gap: 0.6rem; }
.nav-mark img { width: 90px; height: 90px; object-fit: contain; }
.nav-mark span {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.6rem; letter-spacing: 0.03em;
}
.nav-links { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.2rem); }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--frost); }
.nav-links a.nav-current { color: var(--frost); }
.nav-external::after { content: " \2197"; font-size: 0.85em; }
.nav-cta {
  border: 1px solid var(--ember); border-radius: 999px;
  padding: 0.5rem 1.1rem; color: var(--bone) !important;
}
.nav-cta:hover { background: var(--ember); color: var(--ink) !important; }

/* Mobile menu toggle -- hidden on desktop, shown + wired to a slide-in
   .nav-links panel at the 768px breakpoint (see js/nav.js). */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; padding: 0; margin: 0;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
  position: relative; z-index: 601;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--bone);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-scrim {
  position: fixed; inset: 0; z-index: 599;
  background: rgba(10, 13, 18, 0.7);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-scrim.nav-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero-standalone {
  position: relative; z-index: 10;
  height: 100vh; width: 100%;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem;
}
.hero-standalone .section-label {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 1.4rem;
}
.hero-heading {
  font-family: var(--font-display); font-weight: 700; font-style: normal;
  font-size: clamp(3.2rem, 12vw, 9rem);
  line-height: 0.92; letter-spacing: -0.01em;
  margin: 0; color: var(--bone);
}
.hero-heading span { display: inline-block; }
.hero-heading span:last-child { color: var(--frost); }
.hero-sub {
  font-family: var(--font-mono); font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  letter-spacing: 0.4em; color: var(--bone-dim);
  margin: 0.8rem 0 0;
}
.hero-tagline {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--bone-dim);
  max-width: 32ch; margin: 1.6rem 0 0;
}
.scroll-indicator {
  position: absolute; bottom: clamp(1.5rem, 4vh, 3rem); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--bone-dim);
}
.scroll-indicator span { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-indicator svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Badge ---------- */
.canvas-wrap {
  position: fixed; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  -webkit-perspective: 1800px;
  perspective: 1800px;
}
.badge-stage {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
}
.badge-face {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.badge-front { transform: rotateY(0deg); }
/* Local +180 cancels the stage's own +180 at the halfway point, so the back
   face reads right-side-up instead of mirrored -- not a horizontally
   flipped image, the two rotations just add up to a net 0deg. */
.badge-back { transform: rotateY(180deg); }

/* ---------- Dark overlay ---------- */
#dark-overlay {
  position: fixed; inset: 0; z-index: 2;
  background: var(--ink);
  opacity: 0; pointer-events: none;
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  position: fixed; top: 80%; left: 0; width: 100%; z-index: 4;
  transform: translateY(-50%);
  overflow: hidden; white-space: nowrap; pointer-events: none;
  opacity: 0;
}
.marquee-text {
  display: inline-block;
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: 5.5vw; letter-spacing: -0.01em; text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(231, 227, 218, 0.5);
}

/* ---------- Scroll container & sections ---------- */
#scroll-container { position: relative; height: 656vh; z-index: 3; }
.scroll-section {
  position: absolute; top: 0; left: 0; width: 100%;
}
/* The badge is a wide horizontal lockup (~1.8:1), not a tall/narrow product --
   at any scale that keeps it legible it spans most of the viewport width, so
   side-by-side left/right text zones would collide with it. Content instead
   sits in a band above or below the badge's vertical center. */
.align-top, .align-bottom {
  padding-left: clamp(1.5rem, 8vw, 9rem);
  padding-right: clamp(1.5rem, 8vw, 9rem);
}
.align-top .section-inner, .align-bottom .section-inner { max-width: 21rem; }
.align-top { align-items: flex-start; padding-top: clamp(3rem, 9vh, 6rem); }
.align-bottom { align-items: flex-end; padding-bottom: clamp(5rem, 16vh, 10rem); }
/* Mirrors the left-hand text column but on the right, for supporting imagery
   paired alongside a text section at the same enter/leave window. */
.side-right { justify-content: flex-end; }
.section-media-img {
  width: 20rem; max-width: 70vw;
  border-radius: 6px;
  border: 1px solid rgba(231, 227, 218, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
/* The portfolio image already shows desktop-side via the paired .section-media
   block (same enter/leave window as Who We Are) -- this second copy, inline
   inside Who We Are's own text, is mobile-only so the image isn't lost when
   .section-media hides on mobile (see the mobile media query below). */
.who-we-are-mobile-img { display: none; }

.section-content { display: flex; min-height: 88vh; }
.section-label {
  display: block; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 1rem; color: var(--accent, var(--steel));
}
.section-heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3.4rem); line-height: 1.08;
  margin: 0 0 1.1rem; color: var(--bone);
}
.section-body {
  font-family: var(--font-body); font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.6; color: var(--bone-dim); margin: 0;
}
.section-note {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.06em;
  color: var(--accent, var(--steel)); margin-top: 1.2rem;
}

.scroll-section:nth-of-type(1) { --accent: var(--steel); }
.scroll-section:nth-of-type(2) { --accent: #8A6E7C; }
.scroll-section:nth-of-type(3) { --accent: var(--ember); }
.scroll-section:nth-of-type(5) { --accent: var(--steel); }

/* CTA */
.section-cta {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.section-cta .section-inner { max-width: 42rem; display: flex; flex-direction: column; align-items: center; }
.cta-seal {
  width: clamp(96px, 12vw, 160px); margin-bottom: 1.6rem;
  filter: drop-shadow(0 0 28px rgba(200, 80, 46, 0.35));
}
.section-cta .section-label { color: var(--ember-bright); text-align: center; }
.cta-heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1; color: var(--bone);
  margin: 0 0 2rem;
}
.cta-links { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-button {
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  background: var(--ember); color: var(--ink);
  padding: 1rem 2.2rem; border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.cta-button:hover { background: var(--ember-bright); transform: translateY(-2px); }
.cta-phone {
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.06em;
  color: var(--bone-dim);
}
.cta-phone:hover { color: var(--frost); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; z-index: 3;
  background: var(--ink);
  padding: 3rem 1.5rem 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  text-align: center;
}
.footer-mark { width: 51px; height: 51px; object-fit: contain; opacity: 0.85; }
.site-footer p {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em;
  color: var(--bone-dim); margin: 0;
}
.footer-links { display: flex; gap: 1.2rem; margin-top: 0.2rem; }
.footer-links a {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bone-dim);
}
.footer-links a:hover { color: var(--frost); }

/* ---------- Studio Updates ---------- */
.studio-updates {
  position: relative; z-index: 3; background: var(--ink-raised);
  padding: clamp(3rem, 7vh, 5rem) clamp(1.5rem, 8vw, 9rem);
  max-width: 54rem; margin: 0 auto;
}
.studio-updates .section-label { color: var(--ember-bright); }
.studio-updates p {
  font-family: var(--font-body); font-size: 0.98rem; line-height: 1.7;
  color: var(--bone-dim); margin: 0 0 1rem;
}
.studio-updates p:last-child { margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery-section {
  position: relative; z-index: 3; background: var(--ink);
  padding: clamp(4rem, 8vh, 6rem) 0 clamp(2rem, 5vh, 3rem);
}
.gallery-label { display: block; text-align: center; }
.gallery-carousel {
  position: relative; display: flex; align-items: center; gap: 1rem;
  max-width: 76rem; margin: 1.5rem auto 0; padding: 0 clamp(1rem, 4vw, 2rem);
}
.gallery-track {
  display: flex; gap: 1rem; flex: 1;
  overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  width: calc((100% - 2rem) / 3); flex: 0 0 calc((100% - 2rem) / 3);
  aspect-ratio: 3 / 4; object-fit: cover; border-radius: 2px;
  scroll-snap-align: start;
}
.gallery-arrow {
  flex-shrink: 0; width: 2.6rem; height: 2.6rem; border-radius: 999px;
  border: 1px solid rgba(231, 227, 218, 0.25); background: transparent;
  color: var(--bone); font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.gallery-arrow:hover { border-color: var(--frost); color: var(--frost); }

/* ---------- Static pages (Booking, FAQ, Log In, Piercings) ---------- */
.static-page .site-header { background: var(--ink); }
.static-hero {
  /* Generous, viewport-independent minimum so the label/heading always clear
     the fixed header, regardless of exact window size. */
  padding: clamp(10rem, 18vh, 13rem) clamp(1.5rem, 8vw, 9rem) clamp(3rem, 6vh, 4rem);
  max-width: 48rem;
}
.static-hero .section-label { color: var(--steel); }
.static-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.05; color: var(--bone);
  margin: 0 0 1rem;
}
.static-hero p {
  font-family: var(--font-body); font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--bone-dim); line-height: 1.6; max-width: 42ch; margin: 0;
}
.static-content { padding: 0 clamp(1.5rem, 8vw, 9rem) clamp(5rem, 10vh, 7rem); max-width: 48rem; }

/* Booking */
.booking-hours { display: flex; flex-direction: column; gap: 0; margin: 0 0 3rem; }
.booking-hours-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--bone-dim); padding: 0.7rem 0;
  border-bottom: 1px solid rgba(231, 227, 218, 0.1);
}
.booking-hours-row span:first-child { color: var(--bone); flex: 0 0 auto; min-width: 9.5rem; }
.booking-hours-row span:last-child { text-align: right; line-height: 1.6; }
.booking-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 0 0 3rem; }
.booking-step { padding: 1.5rem; border: 1px solid rgba(231, 227, 218, 0.12); border-radius: 4px; }
.booking-step-num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ember-bright); letter-spacing: 0.1em; }
.booking-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--bone); margin: 0.5rem 0 0.4rem; }
.booking-step p { font-size: 0.92rem; color: var(--bone-dim); margin: 0; line-height: 1.5; }
.booking-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: auto; }

/* FAQ */
.faq-group { margin: 0 0 3rem; }
.faq-group h2 {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--steel); margin: 0 0 1.2rem;
}
.faq-item { border-bottom: 1px solid rgba(231, 227, 218, 0.12); padding: 1.1rem 0; }
.faq-item summary {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--bone); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 1.2rem;
  color: var(--bone-dim); flex-shrink: 0; transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-family: var(--font-body); font-size: 0.95rem; color: var(--bone-dim); line-height: 1.6; margin: 0.8rem 0 0; }

/* FAQ page uses the full width rather than a left-pinned column -- wider,
   centered content block; hero copy centered, answers stay left-aligned
   since centered paragraph text is harder to read. */
.faq-page .static-hero, .faq-page .static-content { max-width: 66rem; margin-left: auto; margin-right: auto; }
.faq-page .static-hero { text-align: center; }
.faq-page .static-hero p { margin-left: auto; margin-right: auto; }
@media (min-width: 900px) {
  .faq-items { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; }
  .faq-item--full { grid-column: 1 / -1; }
}

/* Booking page: wider, two-column so the Contact form sits beside the
   hours/steps text rather than stacked beneath everything. */
.booking-page .static-hero, .booking-page .static-content { max-width: 64rem; margin-left: auto; margin-right: auto; }
.booking-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: stretch; }
.booking-main { display: flex; flex-direction: column; }

/* Contact form (Booking page) */
.contact-form-section {
  margin-top: 3rem;
  padding: 1.75rem;
  border: 1px solid rgba(231, 227, 218, 0.15);
  border-radius: 6px;
}
.booking-aside .contact-form-section { margin-top: 0; }
.contact-form-section h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.6rem;
  color: var(--bone); margin: 0 0 1.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.4rem; max-width: 34rem; }
.contact-form-row { display: flex; gap: 1.4rem; }
.contact-form-row .field { flex: 1; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bone-dim);
}
.field input, .field textarea {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--bone);
  background: transparent; border: none; border-bottom: 1px solid rgba(231, 227, 218, 0.25);
  padding: 0.5rem 0.1rem; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--frost);
}
.contact-form button.cta-button { align-self: flex-start; border: none; cursor: pointer; margin-top: 0.5rem; }

/* Map (Booking page) -- nested in the aside, below the Contact form. */
.map-section {
  margin-top: 1.75rem;
  padding: 1.75rem;
  border: 1px solid rgba(231, 227, 218, 0.15);
  border-radius: 6px;
}
.map-section-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin: 0 0 1.25rem;
}
.map-section-head h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.6rem;
  color: var(--bone); margin: 0;
}
.map-embed {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(231, 227, 218, 0.12);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-directions {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--bone-dim);
}
.map-directions:hover { color: var(--frost); }

/* Artists page -- same wide, centered treatment as FAQ. */
.artists-page .static-hero, .artists-page .static-content { max-width: 66rem; margin-left: auto; margin-right: auto; }
.artists-page .static-hero { text-align: center; }
.artists-page .static-hero p { margin-left: auto; margin-right: auto; }

.instagram-follow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.75rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bone); border: 1px solid var(--steel); border-radius: 999px;
  padding: 0.7rem 1.5rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.instagram-follow:hover { background: var(--steel); color: var(--ink); }
.instagram-follow svg { width: 14px; height: 14px; flex-shrink: 0; }

.artist-list { display: flex; flex-direction: column; gap: 1.5rem; }
.artist-card {
  padding: 1.75rem;
  border: 1px solid rgba(231, 227, 218, 0.15);
  border-radius: 6px;
}
.artist-card-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.artist-role {
  display: block;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--steel); margin: 0 0 0.4rem;
}
.artist-card-head h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 2rem;
  color: var(--bone); margin: 0;
}
.artist-instagram {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--bone-dim);
}
.artist-instagram svg { width: 14px; height: 14px; flex-shrink: 0; }
.artist-instagram:hover { color: var(--frost); }
.artist-highlights {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
  margin-top: 1.5rem;
  /* Reserve real space before Instagram's JS processes the blockquotes --
     unprocessed, they collapse to ~0 height, which would cluster every
     card near the top of the page and defeat scroll-based lazy loading. */
  min-height: 500px;
}
.artist-highlights .instagram-media { margin: 0 !important; width: 100% !important; min-width: 0 !important; }
.artist-highlights blockquote.instagram-media {
  display: flex; align-items: center; justify-content: center;
  height: 500px;
  border: 1px solid rgba(231, 227, 218, 0.12);
  border-radius: 4px;
  background: var(--ink-raised);
}
.artist-highlights blockquote.instagram-media a {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--bone-dim); text-align: center; padding: 1rem;
}
.artist-highlights blockquote.instagram-media a:hover { color: var(--frost); }
@media (max-width: 600px) {
  .artist-card-head { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* Price list (Piercings page) */
.price-group { margin: 0 0 2.5rem; }
.price-group h2 {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--steel); margin: 0 0 1rem;
}
.price-row {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(231, 227, 218, 0.1);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--bone);
}
.price-row span:last-child { color: var(--bone-dim); font-family: var(--font-mono); font-size: 0.85rem; white-space: nowrap; }
.price-note {
  font-family: var(--font-body); font-size: 0.92rem; color: var(--bone-dim);
  line-height: 1.6; margin: 0 0 2.5rem;
}

/* Shop page -- same wide, centered treatment as FAQ/Artists. */
.shop-page .static-hero, .shop-page .static-content { max-width: 66rem; margin-left: auto; margin-right: auto; }
.shop-page .static-hero { text-align: center; }
.shop-page .static-hero p { margin-left: auto; margin-right: auto; }
.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.75rem;
  margin: 0 0 2rem;
}
.shop-card {
  border: 1px solid rgba(231, 227, 218, 0.15);
  border-radius: 6px;
  overflow: hidden;
}
.shop-card img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  background: var(--ink-raised);
}
.shop-card-body { padding: 1.25rem; }
.shop-card-body h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  color: var(--bone); margin: 0 0 0.5rem;
}
.shop-price {
  display: block; font-family: var(--font-mono); font-size: 0.9rem;
  color: var(--bone-dim); margin-bottom: 0.9rem;
}
.shop-enquire {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--ember-bright);
}
.shop-enquire:hover { color: var(--frost); }

/* Events page -- same wide, centered treatment as Shop/FAQ/Artists. */
.events-page .static-hero, .events-page .static-content { max-width: 66rem; margin-left: auto; margin-right: auto; }
.events-page .static-hero { text-align: center; }
.events-page .static-hero p { margin-left: auto; margin-right: auto; }
.timeline { display: flex; flex-direction: column; gap: 1.5rem; margin: 0 0 2.5rem; }
.timeline-item {
  display: flex; gap: 1.75rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(231, 227, 218, 0.15);
  border-radius: 6px;
}
.timeline-date {
  flex: 0 0 auto; min-width: 6rem;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ember-bright);
  padding-top: 0.2rem;
}
.timeline-item h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  color: var(--bone); margin: 0 0 0.5rem;
}
.timeline-item p {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--bone-dim);
  line-height: 1.6; margin: 0;
}
@media (max-width: 600px) {
  .timeline-item { flex-direction: column; gap: 0.5rem; }
  .timeline-date { min-width: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator svg { animation: none; }
  #loader { transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  #scroll-container { height: 451vh; }
  .align-top, .align-bottom { padding-left: 6vw; padding-right: 6vw; align-items: center; }
  .align-top .section-inner, .align-bottom .section-inner { max-width: 100%; }
  .section-content { text-align: center; justify-content: center; }
  .section-content .section-inner { display: flex; flex-direction: column; align-items: center; }
  .scroll-section {
    background: rgba(10, 13, 18, 0.72);
    backdrop-filter: blur(2px);
    padding-top: 3rem; padding-bottom: 3rem;
  }
  .marquee-text { font-size: 8vw; }
  .who-we-are-mobile-img { display: block; width: 100%; max-width: 22rem; margin: 1.75rem auto 0; }
  .nav-mark img { width: 52px; height: 52px; }
  .nav-mark span { font-size: 1.15rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; z-index: 600;
    width: min(78vw, 320px); height: 100vh;
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 6.5rem 2rem 2rem;
    background: var(--ink); border-left: 1px solid rgba(231, 227, 218, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.nav-open { transform: translateX(0); }
  .nav-links a {
    font-size: 0.8rem; padding: 1rem 0;
    border-bottom: 1px solid rgba(231, 227, 218, 0.08);
  }
  .nav-links a.nav-cta {
    margin-top: 1.5rem; text-align: center; border-bottom: 1px solid var(--ember);
  }
  .gallery-track img { width: 100%; flex: 0 0 100%; }
  /* Shares Who We Are's exact scroll window (see data-enter/leave in
     index.html), so on mobile -- where sections collapse to one centered
     column -- both would stack on top of each other at the same position.
     The image itself isn't lost on mobile: .who-we-are-mobile-img above is
     a second copy placed inline inside Who We Are's own text instead. */
  .section-media { display: none; }
  .booking-steps { grid-template-columns: 1fr; }
  .static-hero, .static-content { padding-left: 6vw; padding-right: 6vw; }
  .contact-form-row { flex-direction: column; gap: 1.4rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-hours-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .booking-hours-row span:first-child { min-width: 0; }
  .booking-hours-row span:last-child { text-align: left; }
}
