/* ============================================================
   SACRED PAIN TATTOO — Design System
   Realism tattoo studio · Dark editorial · Black & Grey luxury
   ============================================================ */

/*
  Art context: David Reyes — Black & Grey Realism / Color Realism (61k+ IG).
  Studio positioning: Premium body art, payment plans, multi-artist.
  Design direction: High-contrast, cinematic, gallery-like. Texturized darkness.
  Fonts: Bebas Neue (hero impact) + Cormorant Garamond (editorial serif) + Inter (body).
  Palette: near-black warm base · antique amber gold · deep crimson accent.
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Warm near-blacks — skin-toned warmth to complement ink */
  --black:   #070608;
  --dark:    #0e0c0d;
  --surface: #181416;
  --surface2:#211c1e;

  /* Borders */
  --border:       rgba(255,248,240,0.08);
  --border-gold:  rgba(185,138,55,0.42);
  --border-warm:  rgba(255,248,240,0.13);

  /* Text */
  --text:    #f4f0ea;
  --muted:   rgba(244,240,234,0.58);
  --muted2:  rgba(244,240,234,0.35);

  /* Antique amber gold — aged, not flashy */
  --gold:    #b98a37;
  --gold-lt: #d4a84e;
  --gold-dk: #7d5c1e;

  /* Deep crimson — iconic in tattoo, used sparingly */
  --red:     #9c2525;
  --red-lt:  #c43030;

  /* Typography — three levels */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container: 1140px;

  /* Sharper corners = more studio/industrial feel */
  --r:    10px;
  --r-sm:  6px;

  --shadow:       0 24px 72px rgba(0,0,0,0.72);
  --shadow-gold:  0 0 44px rgba(185,138,55,0.15);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.55);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Focus states (accessibility / Apple HIG) ────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: rgba(185,138,55,0.30); color: var(--text); }

/* Film grain overlay — adds tactile, printed-art quality */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Skip link ───────────────────────────────────────────── */
.skip-link {
  position: absolute; left: 12px; top: 12px;
  padding: 8px 14px; background: #000; border: 1px solid var(--border);
  border-radius: 8px; transform: translateY(-200%); z-index: 9999;
  transition: transform 0.15s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ── Typography ──────────────────────────────────────────── */

/*
  .display / .h1  — Bebas Neue: max impact, hero headlines, all-caps punch
  .h2 / .h3       — Cormorant Garamond: editorial serif, high contrast, gallery feel
  body            — Inter: clean, readable at any size
*/

.display {
  font-family: var(--font-display);
  font-size: clamp(68px, 9.5vw, 140px);
  line-height: 0.90;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 90px);
  line-height: 0.93;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Cormorant Garamond: high-contrast serif — pairs perfectly with Black & Grey Realism */
.h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.5px;
}
.h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

/* Small Bebas labels for stats/numbers — preserving the display DNA */
.stat-label {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--gold);
}

.kicker {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.lead {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
}
.muted { color: var(--muted2); font-size: 13px; }

/* ── Buttons ─────────────────────────────────────────────── */
/*
  Sharp corners (border-radius: 2px) → studio/industrial aesthetic.
  Tattoo studios use hard edges, not pill shapes.
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1px solid var(--border-warm);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  text-decoration: none;
  border-color: rgba(255,248,240,0.28);
  background: rgba(255,248,240,0.06);
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--gold);
  color: #0a0608;
  border-color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: #0a0608;
  box-shadow: 0 4px 20px rgba(185,138,55,0.30);
}
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(185,138,55,0.10);
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  box-shadow: 0 4px 20px rgba(185,138,55,0.15);
}

/* ── Pill / badge ─────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 2px;
  background: rgba(185,138,55,0.10);
  border: 1px solid rgba(185,138,55,0.30);
  color: var(--gold-lt);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Gold line divider ───────────────────────────────────── */
.gold-line {
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: none;
  margin: 16px 0;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--border-warm);
}
.card-gold {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.card-body { padding: 24px; }

/* ── Grid helpers ────────────────────────────────────────── */
.grid { display: grid; gap: 16px; }
@media (min-width: 480px)  { .grid { gap: 20px; } }
@media (min-width: 480px)  { .sm\:cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .sm\:cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px)  { .md\:cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px)  { .md\:cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px)  { .md\:cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1060px) { .lg\:cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* ── Section spacing ─────────────────────────────────────── */
.section      { padding: 80px 0; }
.section-sm   { padding: 48px 0; }
.section-lg   { padding: 120px 0; }
@media (max-width: 640px) {
  .section    { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .section-lg { padding: 60px 0; }
  .container  { padding: 0 16px; }
}

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-track {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  background: var(--surface2);
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  padding: 0 30px;
}
.marquee-inner span.sep {
  color: var(--muted2);
  padding: 0 6px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Service card image overlay ──────────────────────────── */
.service-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.3s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

/* ── Artist card ─────────────────────────────────────────── */
.artist-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.artist-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.artist-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--border-gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.artist-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.artist-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* ── Review card ─────────────────────────────────────────── */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: border-color 0.25s;
}
.review-card:hover { border-color: var(--border-warm); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.review-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0;
}
.review-author { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── Booking form ────────────────────────────────────────── */
.form-field {
  display: grid;
  gap: 5px;
}
.form-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255,248,240,0.035);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(185,138,55,0.05);
  box-shadow: 0 0 0 3px rgba(185,138,55,0.12);
}
.form-input::placeholder { color: var(--muted2); }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.form-check input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); }

/* ── Section divider ─────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  border: none;
}

/* ── Responsive utilities ────────────────────────────────── */
.hide-mobile  { display: none; }
@media (min-width: 880px) {
  .hide-mobile  { display: revert; }
  .hide-desktop { display: none !important; }
}

/* ── Scroll fade-in animation ────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Italic serif accent — for testimonials/pull quotes ─── */
.serif-italic {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}

/* ── Text gold accent ────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-gold-lt { color: var(--gold-lt); }
.text-muted { color: var(--muted); }
.text-muted2 { color: var(--muted2); }

/* ── Surface variants ────────────────────────────────────── */
.bg-surface  { background: var(--surface); }
.bg-surface2 { background: var(--surface2); }
.bg-dark     { background: var(--dark); }

/* ── Smooth page load ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
main { animation: fadeUp 0.5s ease both; }

/* ── Google badge / trust stamp ──────────────────────────── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.trust-badge:hover {
  border-color: var(--border-gold);
  background: rgba(185,138,55,0.05);
  text-decoration: none;
}
.trust-badge-stars { color: #f4b400; font-size: 15px; letter-spacing: 1px; }
.trust-badge-score {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  line-height: 1;
}
.trust-badge-meta {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Hours / info bar ────────────────────────────────────── */
.info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding: 20px 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.info-item svg { color: var(--gold); flex-shrink: 0; }
@media (max-width: 640px) {
  .info-bar { flex-direction: column; gap: 12px; padding: 16px 0; }
  .info-item { font-size: 12px; }
}
.info-item strong { color: var(--text); font-weight: 600; }
