/* =========================================================================
   style.css — Kemisetso Tattoo Studio
   Dark editorial studio aesthetic: immersive near-black canvas, oversized
   poster typography, hairline borders and hard-edge accents, grain texture.
   Cream "flash sheet" surfaces are used sparingly for cards pinned on the
   dark ground. Built to work with either the current protea logo or a new
   mark — logos always sit on a small cream plate so a white-background PNG
   never breaks against the dark surfaces.
   ========================================================================= */

:root {
  /* --- Color tokens --- */
  --black: #0A0908;
  --black-soft: #16130F;    /* card / raised surface on the dark canvas */
  --black-softer: #201B15;  /* hover state for dark surfaces */
  --cream: #F3EEDF;
  --cream-dim: #C9C2AC;
  --cream-warm: #EAE2CB;
  --red: #C22A26;
  --red-deep: #8E1F1C;
  --gold: #B4924F;
  --green: #52734A;
  --ink: #17140F;            /* body text on cream surfaces */
  --line: rgba(243, 238, 223, 0.14);  /* hairline border on dark */
  --line-strong: rgba(243, 238, 223, 0.28);

  /* --- Pain chart scale --- */
  --pain-least: #6E8C6A;
  --pain-painful: #E4D6A3;
  --pain-more: #D9884C;
  --pain-most: var(--red);
  --pain-neutral: #D9D2C0;

  /* --- Type tokens --- */
  --font-hero: 'Anton', sans-serif;       /* oversized poster headline */
  --font-display: 'Oswald', sans-serif;   /* condensed caps, labels, sub-headings */
  --font-body: 'Karla', sans-serif;       /* clean, legible body text */
  --font-script: 'Caveat', cursive;       /* hand-inked accent, used sparingly */

  /* --- Layout tokens --- */
  --max-width: 1180px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Paper-grain texture: a tiny SVG noise pattern layered under everything at low
   opacity, so the dark canvas reads as inked/printed rather than a flat digital fill. */
body {
  font-family: var(--font-body);
  color: var(--cream);
  background-color: var(--black);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.95 0 0 0 0 0.93 0 0 0 0 0.87 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  line-height: 1.6;
}

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

/* --- Ornamental section divider: a thin line / mark / thin line --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 320px;
  margin: 0 auto;
  padding: 2.5rem 0;
}
.ornament__line {
  height: 1px;
  width: 90px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}
.ornament__mark {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Reusable "eyebrow" section heading, styled like a stamped label */
.section__eyebrow {
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  margin-bottom: 2.75rem;
  position: relative;
}
.section__eyebrow::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 0.9rem auto 0;
}
.section__eyebrow--dark { color: var(--ink); }
.section__eyebrow__row { display: inline-flex; align-items: center; gap: 0.65rem; }
.studio-flower { color: var(--gold); flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn--primary {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
  box-shadow: 4px 4px 0 var(--gold);
}
.btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--gold);
}
.btn--primary:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--gold);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 4px 4px 0 rgba(243, 238, 223, 0.25);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(243, 238, 223, 0.25);
}
.btn--ghost:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(243, 238, 223, 0.25);
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: 100%;
  margin: 0;
  padding: 0.75rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 0.75rem; }
/* Cream plate behind the logo so a white-background PNG always reads cleanly
   against the dark nav, regardless of which logo file is dropped in. */
.nav__logo-plate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.nav__logo { width: 100%; height: 100%; object-fit: cover; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav__links {
  display: flex;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav__links a {
  color: var(--cream);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav__links a:hover { color: var(--gold); border-color: var(--red); }

/* --- Mobile hamburger toggle --- */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile dropdown panel --- */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 0.5rem 1.5rem 1rem;
}
.nav__mobile.nav__mobile--open { display: flex; }
.nav__mobile a {
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: none; }

/* --- Floating WhatsApp button --- */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  z-index: 50;
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* --- Map embed in the footer --- */
.contact__map {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
}
.contact__map iframe {
  width: 100%;
  height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: grayscale(60%) invert(92%) contrast(90%); /* dark-mode map to match the footer */
}

/* =========================================================================
   HERO — full-bleed cinematic video
   ========================================================================= */
.hero {
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
/* The video is a direct child of the full-width .hero so it spans edge-to-edge. */
.hero > .hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(35%) contrast(1.05);
  z-index: 0;
  pointer-events: none;
}
/* Dark scrim so the headline stays legible over the footage, heaviest at the
   bottom where the CTA row sits. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.35) 40%, rgba(10,9,8,0.85) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(10,9,8,0.6) 100%);
  pointer-events: none;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-hero);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0.01em;
  font-size: clamp(2.8rem, 9vw, 6.4rem);
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero__title-accent { color: var(--red); }
.hero__script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--cream-dim);
  margin: 1.25rem 0 0.75rem;
}
.hero__sub {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 auto 2.5rem;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 20px;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.about {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  text-align: center;
}
.about__text { font-size: 1.2rem; color: var(--cream-dim); }
.about__text em { font-style: normal; color: var(--red); font-weight: 600; }
.about__script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* =========================================================================
   THE SPACE — real studio photo, feathered at the edges via a mask so it
   dissolves into the surrounding dark canvas instead of sitting as a hard
   rectangle
   ========================================================================= */
.studio-space {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  padding: 6rem 1.5rem;
  text-align: center;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.studio-space__photo {
  /* Landscape source + object-fit:cover, so the photo fills the section
     edge-to-edge (element box == full section box, matching the visible
     photo exactly) — the mask below fades directly to the real edges with
     no letterbox mismatch to correct for. */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: contrast(1.05);
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 50%, black 45%, transparent 96%);
  mask-image: radial-gradient(ellipse 70% 75% at 50% 50%, black 45%, transparent 96%);
}
.studio-space__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,9,8,0.2) 0%, rgba(10,9,8,0.5) 55%, var(--black) 100%);
  pointer-events: none;
}
.studio-space__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.studio-space__text { color: var(--cream-dim); font-size: 1.05rem; max-width: 46ch; margin: 0 auto 2rem; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }

/* =========================================================================
   SERVICES — flash-sheet cards pinned on the dark canvas
   ========================================================================= */
.services {
  padding: 5rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.services__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--black);
  padding: 2.25rem;
  position: relative;
  z-index: 1;
  transition: background 0.2s ease, transform 0.25s ease;
}
.service-card:hover {
  background: var(--black-soft);
  transform: scale(1.05);
  z-index: 2;
}
.service-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.service-card__title {
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0.6rem 0 0.75rem;
}
.service-card__desc { color: var(--cream-dim); font-size: 0.98rem; }

/* =========================================================================
   PROCESS — numbered steps
   ========================================================================= */
.process {
  background: var(--black-soft);
  padding: 5rem 1.5rem;
}
.process__row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process__step { text-align: center; }
.process__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-family: var(--font-hero);
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.process__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.process__desc { font-size: 0.92rem; color: var(--cream-dim); }

/* =========================================================================
   PAIN GUIDE — tattoo pain chart, framed for legibility on the dark canvas
   ========================================================================= */
.pain-guide {
  padding: 5rem 1.5rem;
  text-align: center;
  background-color: var(--black-soft);
  background-image:
    radial-gradient(circle at 12% 15%, rgba(194,42,38,0.14), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(82,115,74,0.16), transparent 48%);
}
.pain-guide__sub {
  color: var(--cream-dim);
  max-width: 52ch;
  margin: -1.5rem auto 2.5rem;
  font-size: 1.02rem;
}
.pain-guide__diagram {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.5));
}
.pz-least { fill: var(--pain-least); }
.pz-painful { fill: var(--pain-painful); }
.pz-more { fill: var(--pain-more); }
.pz-most { fill: var(--pain-most); }
.pz-neutral { fill: var(--pain-neutral); }
.pain-guide__diagram rect,
.pain-guide__diagram ellipse { stroke: var(--black); stroke-width: 1.5; }
.pain-guide__leader { stroke: var(--line-strong); stroke-width: 1.2; }
.pain-guide__label text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  fill: var(--cream);
}
.pain-guide__label--left text { text-anchor: end; }
.pain-guide__label--right text { text-anchor: start; }
.pain-guide__legend-label text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  fill: var(--cream-dim);
}

/* =========================================================================
   GALLERY — full-bleed portfolio grid of real work
   ========================================================================= */
.gallery { padding: 5rem 0; }
.gallery .section__eyebrow { padding: 0 1.5rem; }
.gallery__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: -1.5rem auto 2.5rem;
  padding: 0 1.5rem;
}
.gallery__filter-btn {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.gallery__filter-btn:hover { color: var(--cream); border-color: var(--gold); }
.gallery__filter-btn.is-active { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.gallery__frame--hidden { display: none; }
.gallery__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 0;
}
.gallery__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--black-soft);
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery__frame:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
}
.gallery__frame--feature {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__frame--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.gallery__frame--tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}
.gallery__grid:not(.is-expanded) .gallery__frame--extra { display: none; }
.gallery__more { text-align: center; margin: 2.75rem 1.5rem 0; }
.gallery__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15) brightness(0.98);
  transition: transform 0.5s ease;
}
.gallery__frame:hover img { transform: scale(1.06); }
.gallery__frame--contain img { object-fit: contain; }
.gallery__frame--contain:hover img { transform: scale(1.03); }
.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(to top, rgba(10,9,8,0.9), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery__frame:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* =========================================================================
   LIGHTBOX — full-screen gallery viewer
   ========================================================================= */
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 8, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  padding: 2rem;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure {
  max-width: min(90vw, 900px);
  max-height: 86vh;
  text-align: center;
}
.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 76vh;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.15) brightness(0.98);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox__caption {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.lightbox__close,
.lightbox__nav {
  position: fixed;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

@media (max-width: 640px) {
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
  .lightbox__close { top: 0.75rem; right: 0.75rem; }
}

/* =========================================================================
   ARTIST — single-artist spotlight card
   ========================================================================= */
.artist-feature { padding: 1rem 1.5rem 5rem; }
.artist-feature__card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--black-soft);
  border: 1px solid var(--line);
  padding: 3.25rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.75rem;
  align-items: center;
}
.artist-feature__photo-col { display: flex; justify-content: center; }
.artist-feature__photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  outline: 1px dashed var(--line);
  outline-offset: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}
.artist-feature__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.15) brightness(0.98); }
.artist-feature__info { text-align: left; }
.artist-feature__name {
  font-family: var(--font-hero);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.artist-feature__specialty {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.artist-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.artist-feature__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
}
.artist-feature__bio { font-size: 1.02rem; color: var(--cream-dim); margin-bottom: 1.5rem; }
.artist-feature__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.artist-feature__social {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--red);
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.artist-feature__social:hover { border-color: var(--red); }

@media (max-width: 720px) {
  .artist-feature__card { grid-template-columns: 1fr; text-align: center; padding: 2.25rem; }
  .artist-feature__info { text-align: center; }
  .artist-feature__tags, .artist-feature__actions { justify-content: center; }
}

/* =========================================================================
   REVIEWS
   ========================================================================= */
.testimonials { padding: 1rem 1.5rem 5rem; text-align: center; }
.testimonials .testimonials__grid { max-width: var(--max-width); margin: 0 auto; }

/* =========================================================================
   CONTACT / FOOTER
   ========================================================================= */
.contact {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  color: var(--cream);
  padding: 4rem 1.5rem 2rem;
}
.contact__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}
.contact__col--brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact__logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  background: var(--cream);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 3px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact__logo-plate:hover {
  border-color: var(--gold);
  transform: scale(1.04);
}
.contact__logo { width: 100%; height: 100%; object-fit: cover; }
.contact__tagline {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold);
}
.contact__heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.contact__col p { font-size: 0.92rem; color: var(--cream-dim); margin-bottom: 0.4rem; }
.contact__col a:hover { color: var(--gold); }
.contact__col p.contact__note { color: var(--red); font-weight: 600; margin-top: 0.6rem; }
.contact__cta { margin-top: 0.75rem; }
.contact__fine-print {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--cream-dim);
  text-align: center;
}

/* =========================================================================
   SHARED SUBPAGE STYLES — About, Artists, Reviews, Aftercare, Terms
   ========================================================================= */
.page-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 1.5rem;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-hero);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.page-hero__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 0.9rem auto 0;
}
.page-hero__sub { color: var(--cream-dim); font-size: 0.95rem; }
.page-hero__sub code { background: var(--black-soft); padding: 0.1rem 0.4rem; border-radius: 3px; color: var(--gold); }

.page-section { padding: 1.5rem 1.5rem 4rem; }
.page-section__inner { max-width: var(--max-width); margin: 0 auto; }
.page-section__inner--narrow { max-width: 720px; }
.page-section__text { font-size: 1.05rem; color: var(--cream-dim); margin-bottom: 1.25rem; }
.page-section__text--center { text-align: center; }
.page-section__text em { font-style: normal; color: var(--red); font-weight: 600; }
.page-section__text a { color: var(--cream); text-decoration: underline; text-decoration-color: var(--gold); }

/* --- Artists page --- */
.artists__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
}
.artist-card {
  background: var(--black);
  padding: 2.25rem;
  text-align: center;
}
.artist-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  margin: 0 auto 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-soft);
}
.artist-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-card__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.artist-card__specialty {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.artist-card__bio { font-size: 0.95rem; color: var(--cream-dim); }

/* --- Reviews page --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
}
.testimonial-card {
  background: var(--black-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card__stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.75rem;
}
.testimonial-card__quote { font-size: 0.98rem; color: var(--cream-dim); margin-bottom: 1rem; flex: 1; }
.testimonial-card__author {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}

/* --- Aftercare page --- */
.aftercare-list { counter-reset: step; list-style: none; }
.aftercare-list__item {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.5rem 3rem;
  margin-bottom: 1rem;
  border-left: 1px dashed var(--line-strong);
}
.aftercare-list__item:last-child { border-left-color: transparent; }
.aftercare-list__item::before {
  content: counter(step);
  position: absolute;
  left: -19px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.aftercare-list__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.aftercare-list__desc { font-size: 0.98rem; color: var(--cream-dim); }
.aftercare-warning {
  background: var(--black-soft);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}
.aftercare-warning__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.aftercare-warning p { color: var(--cream-dim); }

/* --- Terms / Privacy page --- */
.legal-note {
  background: var(--black-soft);
  border-left: 3px solid var(--red);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  border-radius: 2px;
}
.legal-section { margin-bottom: 1.75rem; }
.legal-section__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.legal-section__text { font-size: 0.98rem; color: var(--cream-dim); }
.legal-updated { font-size: 0.85rem; color: var(--cream-dim); margin-top: 2rem; }

@media (max-width: 800px) {
  .artists__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   FAQ — accordion built on native <details>/<summary>, no JS required
   ========================================================================= */
.faq { padding: 1rem 1.5rem 5rem; }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}
.faq__question {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--red);
  margin-left: 1rem;
  transition: transform 0.15s ease;
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer { margin-top: 0.75rem; font-size: 0.98rem; color: var(--cream-dim); }

/* =========================================================================
   ARTFUL SUBPAGE BACKGROUNDS — About / Aftercare / Terms / Privacy
   Each page gets a fixed, low-opacity backdrop: two soft colour glows plus a
   hand-drawn tattoo-flash-style line-art motif, so the large empty stretches
   on these text-heavy pages read as designed rather than blank. Sits behind
   all in-flow content (z-index: -1) so text contrast is unaffected.
   ========================================================================= */
.artful-page { position: relative; }
.artful-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

/* About — botanical flourish, echoes the studio's "creating legacy" story */
.artful-page--about::before {
  background-image:
    radial-gradient(circle at 12% 15%, rgba(194,42,38,0.14), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(82,115,74,0.16), transparent 48%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 400'%3E%3Cg fill='none' stroke='rgba(180,146,79,0.5)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M150 380 C150 300 140 220 150 140 C155 100 170 70 150 20'/%3E%3Cpath d='M150 320 C110 300 90 270 70 260'/%3E%3Cpath d='M150 300 C190 280 210 250 230 240'/%3E%3Cpath d='M150 240 C115 225 95 200 80 190'/%3E%3Cpath d='M150 220 C185 205 205 180 220 170'/%3E%3Ccircle cx='150' cy='60' r='18'/%3E%3Ccircle cx='128' cy='75' r='14'/%3E%3Ccircle cx='172' cy='75' r='14'/%3E%3Ccircle cx='150' cy='95' r='14'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 0 0, 0 0, 92% 8%;
  background-size: auto, auto, 340px;
}
@media (max-width: 900px) { .artful-page--about::before { background-position: 0 0, 0 0, 78% 4%; background-size: auto, auto, 220px; } }

/* Aftercare — same botanical flourish and shading as About */
.artful-page--aftercare::before {
  background-image:
    radial-gradient(circle at 12% 15%, rgba(194,42,38,0.14), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(82,115,74,0.16), transparent 48%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 400'%3E%3Cg fill='none' stroke='rgba(180,146,79,0.5)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M150 380 C150 300 140 220 150 140 C155 100 170 70 150 20'/%3E%3Cpath d='M150 320 C110 300 90 270 70 260'/%3E%3Cpath d='M150 300 C190 280 210 250 230 240'/%3E%3Cpath d='M150 240 C115 225 95 200 80 190'/%3E%3Cpath d='M150 220 C185 205 205 180 220 170'/%3E%3Ccircle cx='150' cy='60' r='18'/%3E%3Ccircle cx='128' cy='75' r='14'/%3E%3Ccircle cx='172' cy='75' r='14'/%3E%3Ccircle cx='150' cy='95' r='14'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 0 0, 0 0, 92% 8%;
  background-size: auto, auto, 340px;
}
@media (max-width: 900px) { .artful-page--aftercare::before { background-position: 0 0, 0 0, 78% 4%; background-size: auto, auto, 220px; } }

/* Terms — same botanical flourish as About, for a consistent studio motif */
.artful-page--terms::before {
  background-image:
    radial-gradient(circle at 90% 18%, rgba(180,146,79,0.14), transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(194,42,38,0.10), transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 400'%3E%3Cg fill='none' stroke='rgba(180,146,79,0.5)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M150 380 C150 300 140 220 150 140 C155 100 170 70 150 20'/%3E%3Cpath d='M150 320 C110 300 90 270 70 260'/%3E%3Cpath d='M150 300 C190 280 210 250 230 240'/%3E%3Cpath d='M150 240 C115 225 95 200 80 190'/%3E%3Cpath d='M150 220 C185 205 205 180 220 170'/%3E%3Ccircle cx='150' cy='60' r='18'/%3E%3Ccircle cx='128' cy='75' r='14'/%3E%3Ccircle cx='172' cy='75' r='14'/%3E%3Ccircle cx='150' cy='95' r='14'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 0 0, 0 0, 90% 10%;
  background-size: auto, auto, 320px;
}
@media (max-width: 900px) { .artful-page--terms::before { background-position: 0 0, 0 0, 82% 4%; background-size: auto, auto, 210px; } }

/* Privacy — padlock, security and confidentiality */
.artful-page--privacy::before {
  background-image:
    radial-gradient(circle at 85% 15%, rgba(82,115,74,0.14), transparent 45%),
    radial-gradient(circle at 12% 88%, rgba(180,146,79,0.12), transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 340'%3E%3Cg fill='none' stroke='rgba(180,146,79,0.5)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='70' y='150' width='160' height='130' rx='14'/%3E%3Cpath d='M100 150 L100 100 C100 65 125 40 150 40 C175 40 200 65 200 100 L200 150'/%3E%3Ccircle cx='150' cy='205' r='16'/%3E%3Cline x1='150' y1='221' x2='150' y2='245'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 0 0, 0 0, 8% 8%;
  background-size: auto, auto, 280px;
}
@media (max-width: 900px) { .artful-page--privacy::before { background-position: 0 0, 0 0, -4% 4%; background-size: auto, auto, 190px; } }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .process__row { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__frame--feature { grid-column: span 2; grid-row: span 1; aspect-ratio: 2 / 1; }
  .gallery__frame--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
}
@media (max-width: 480px) {
  .contact__inner { grid-template-columns: 1fr; }
}

/* =========================================================================
   SCROLL REVEAL — sections/cards fade + rise into place as they enter view
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fade-only variant for elements that already use `transform` for their own
   hover interaction (e.g. gallery tiles lift on hover) — avoids the reveal's
   transform transition silently overriding the hover one. */
.reveal.reveal--fade {
  transform: none;
  transition: opacity 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.reveal--fade.reveal--visible {
  opacity: 1;
}

/* =========================================================================
   CUSTOM CURSOR — gold ring + red dot, desktop pointer devices only.
   Gated behind a JS-added body class so a JS failure never hides the
   native cursor.
   ========================================================================= */
@media (hover: hover) and (pointer: fine) {
  body.cursor-ready { cursor: none; }
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready .btn,
  body.cursor-ready summary { cursor: none; }
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot {
  background: var(--red);
  transition: opacity 0.2s ease, transform 0.1s ease;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease, left 0.12s ease-out, top 0.12s ease-out;
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }
.cursor-ring.cursor-ring--active {
  width: 56px;
  height: 56px;
  border-color: var(--red);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .hero__scroll span { animation: none; }
  .gallery__frame img { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
