/* ==========================================================================
   ZIGZAG INK — Neon Memphis / 90s stylesheet
   Cream base, magenta / cyan / lime / sunshine accents, brutalist typography.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Core palette */
  --cream: #FFF3E0;
  --cream-soft: #FBE9CF;
  --cream-deep: #F5DDB8;
  --ink: #1a1a2e;
  --ink-soft: #2E1F47;
  --ink-mid: #5b5673;

  /* Neon accents */
  --magenta: #FF3D94;
  --magenta-deep: #E01F78;
  --cyan: #00D9E0;
  --cyan-deep: #00A8AD;
  --lime: #C8F84D;
  --lime-deep: #A3D028;
  --sunshine: #FFB84D;
  --peach: #FFD4B8;
  --lilac: #C8B6FF;

  /* Shadows */
  --shadow-hard: 6px 6px 0 0 var(--ink);
  --shadow-hard-lg: 10px 10px 0 0 var(--ink);
  --shadow-soft: 0 8px 24px rgba(26, 26, 46, 0.08);

  /* Type */
  --font-display: 'Archivo Black', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  /* Layout */
  --radius: 18px;
  --radius-lg: 32px;
  --border: 3px solid var(--ink);
  --border-thick: 4px solid var(--ink);

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

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.01em; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 4px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; }

.multi-line { white-space: pre-line; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 20px;
  background: var(--cream);
  box-shadow: 3px 3px 0 0 var(--ink);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  cursor: default;
}
.eyebrow:hover { transform: scale(1.08) rotate(-2deg) translate(-2px, -2px); box-shadow: 5px 5px 0 0 var(--ink); }
.eyebrow-magenta { background: var(--magenta); color: var(--cream); border-color: var(--ink); }
.eyebrow-cyan { background: var(--cyan); color: var(--ink); }
.eyebrow-lime { background: var(--lime); color: var(--ink); }
.eyebrow-cream { background: var(--cream); color: var(--ink); }

.section {
  padding: 110px 0;
  position: relative;
}
.section-alt {
  background: var(--cream-soft);
  border-top: var(--border);
  border-bottom: var(--border);
}
.section-dark {
  background: var(--ink-soft);
  color: var(--cream);
  border-top: var(--border);
  border-bottom: var(--border);
}
.section-title {
  font-size: clamp(34px, 5vw, 62px);
  max-width: 20ch;
  margin-bottom: 28px;
}
.section-sub {
  max-width: 62ch;
  font-size: 18px;
  margin: 0 0 48px;
  color: var(--ink-mid);
}
.section-dark .section-sub { color: rgba(255, 243, 224, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: var(--border-thick);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 0 var(--ink); }
.btn-primary { background: var(--magenta); color: var(--cream); }
.btn-ghost { background: var(--cream); }
.btn-big { padding: 20px 36px; font-size: 17px; }
.btn-small { padding: 10px 18px; font-size: 13px; box-shadow: 4px 4px 0 0 var(--ink); }
.btn-small:hover { box-shadow: 6px 6px 0 0 var(--ink); }

.linklike {
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.linklike:hover { color: var(--magenta); }

/* ---------- Background decorative shapes (tattoo-themed Memphis) ---------- */
.bg-shapes { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.bg-shapes .shape { position: absolute; opacity: 0.55; }
/* Floating sparkle squiggle (top-right) */
.shape-squiggle {
  top: 18%; right: -60px; width: 260px; height: 120px;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 120'><path d='M10 60 Q 40 20 70 60 T 130 60 T 190 60 T 250 60' stroke='%23FF3D94' stroke-width='6' fill='none' stroke-linecap='round'/></svg>");
}
/* Cyan dot pattern (left-mid) */
.shape-dot-grid {
  top: 60%; left: -40px; width: 180px; height: 180px;
  background-image: radial-gradient(var(--cyan) 2px, transparent 2.5px);
  background-size: 24px 24px;
  opacity: 0.4;
}
/* Lime zigzag lightning (right-mid) */
.shape-zigzag {
  top: 42%; right: -10px; width: 80px; height: 260px;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 260'><path d='M20 20 L 60 60 L 20 100 L 60 140 L 20 180 L 60 220' stroke='%23C8F84D' stroke-width='8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  opacity: 0.5;
}
/* Big peach/sunshine background blob (bottom-left) */
.shape-blob {
  bottom: 10%; left: -100px; width: 340px; height: 340px;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 340 340'><path d='M170 30 Q 280 40 300 140 Q 320 240 220 290 Q 120 330 60 250 Q 0 170 60 90 Q 100 20 170 30 Z' fill='%23FFB84D'/></svg>");
  opacity: 0.25;
}
/* Tattoo machine silhouette (top-left, decorative) */
.shape-machine {
  top: 8%; left: 4%; width: 120px; height: 120px;
  opacity: 0.35;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'><g fill='none' stroke='%231a1a2e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><rect x='32' y='28' width='40' height='28' rx='4' fill='%23FF3D94'/><circle cx='52' cy='42' r='6' fill='%23FFF3E0'/><line x1='52' y1='56' x2='52' y2='100'/><polygon points='48,100 56,100 52,108' fill='%231a1a2e'/><path d='M72 38 Q 96 38 96 60 Q 96 78 80 78' stroke-width='4'/><circle cx='80' cy='78' r='4' fill='%2300D9E0'/></g></svg>");
}
/* Small rotary tattoo machine (bottom-right) */
.shape-dagger {
  bottom: 14%; right: 6%; width: 70px; height: 160px;
  opacity: 0.4;
  transform: rotate(18deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 160'><g stroke='%231a1a2e' stroke-width='3' stroke-linejoin='round'><rect x='12' y='14' width='46' height='42' rx='6' fill='%23C8B6FF'/><circle cx='35' cy='35' r='11' fill='%23FFB84D'/><circle cx='35' cy='35' r='4' fill='%231a1a2e'/><rect x='20' y='56' width='30' height='58' fill='%23FF3D94'/><line x1='20' y1='72' x2='50' y2='72' stroke-width='2.5'/><line x1='20' y1='88' x2='50' y2='88' stroke-width='2.5'/><line x1='20' y1='104' x2='50' y2='104' stroke-width='2.5'/><rect x='25' y='114' width='20' height='10' fill='%23FFF3E0'/><line x1='35' y1='124' x2='35' y2='150' stroke-width='2.5' stroke-linecap='round'/></g></svg>");
}
/* Heart sparkle (mid-right, between sections) */
.shape-heart {
  top: 30%; left: 6%; width: 70px; height: 70px;
  opacity: 0.32;
  transform: rotate(-12deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 70'><path d='M35 60 C 0 38 0 16 16 16 C 26 16 33 22 35 28 C 37 22 44 16 54 16 C 70 16 70 38 35 60 Z' fill='%23FF3D94' stroke='%231a1a2e' stroke-width='3' stroke-linejoin='round'/></svg>");
}
/* Ink bottle (left, lower) */
.shape-inkbottle {
  top: 78%; left: 3%; width: 72px; height: 96px;
  opacity: 0.32;
  transform: rotate(-6deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 96'><g stroke='%231a1a2e' stroke-width='3' stroke-linejoin='round' stroke-linecap='round'><rect x='24' y='6' width='24' height='14' fill='%231a1a2e'/><path d='M14 28 Q 14 20 22 20 L 50 20 Q 58 20 58 28 L 62 78 Q 62 90 50 90 L 22 90 Q 10 90 10 78 Z' fill='%2300D9E0'/><path d='M18 42 L 54 42' stroke-width='2.5'/><text x='36' y='66' font-family='Archivo Black, sans-serif' font-size='14' font-weight='900' text-anchor='middle' fill='%231a1a2e'>INK</text></g></svg>");
}
/* Swallow bird (top-right-ish) */
.shape-swallow {
  top: 6%; right: 28%; width: 110px; height: 80px;
  opacity: 0.38;
  transform: rotate(-8deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 80'><g stroke='%231a1a2e' stroke-width='2.5' stroke-linejoin='round' stroke-linecap='round'><path d='M10 40 Q 30 10 60 24 Q 80 32 100 20 Q 86 50 60 44 Q 38 42 22 60 Q 14 52 10 40 Z' fill='%2300D9E0'/><path d='M60 44 L 78 70 L 68 56' fill='%2300A8AD'/><circle cx='92' cy='26' r='2.5' fill='%231a1a2e'/><path d='M98 24 L 104 22' stroke-width='2'/></g></svg>");
}
/* Anchor (mid-left) */
.shape-anchor {
  top: 52%; right: 4%; width: 86px; height: 110px;
  opacity: 0.32;
  transform: rotate(10deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86 110'><g stroke='%231a1a2e' stroke-width='3' stroke-linejoin='round' stroke-linecap='round' fill='none'><circle cx='43' cy='16' r='8' fill='%23C8B6FF'/><circle cx='43' cy='16' r='3' fill='%231a1a2e'/><line x1='43' y1='24' x2='43' y2='86'/><path d='M26 46 L 60 46' stroke-width='3.5'/><path d='M14 74 Q 22 98 43 96 Q 64 98 72 74' stroke-width='3.5'/><path d='M14 74 L 8 64 L 20 68' fill='%231a1a2e'/><path d='M72 74 L 78 64 L 66 68' fill='%231a1a2e'/></g></svg>");
}
/* Small rose (top-right under header) */
.shape-rose {
  top: 40%; right: 12%; width: 72px; height: 72px;
  opacity: 0.3;
  transform: rotate(-4deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'><g stroke='%231a1a2e' stroke-width='2.5' stroke-linejoin='round'><circle cx='36' cy='36' r='24' fill='%23FF3D94'/><path d='M20 32 Q 28 22 36 30 Q 44 22 52 32 Q 44 40 36 32 Q 28 40 20 32 Z' fill='%23E01F78'/><path d='M24 44 Q 32 36 36 42 Q 40 36 48 44 Q 40 52 36 46 Q 32 52 24 44 Z' fill='%23E01F78'/><circle cx='36' cy='38' r='5' fill='%23FFB84D'/></g></svg>");
}
/* Sparkle star (random scatter) */
.shape-star {
  top: 88%; right: 22%; width: 50px; height: 50px;
  opacity: 0.38;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'><polygon points='25,2 29,18 46,21 32,32 37,48 25,38 13,48 18,32 4,21 21,18' fill='%23FFB84D' stroke='%231a1a2e' stroke-width='2.5' stroke-linejoin='round'/></svg>");
}
/* Moth silhouette (mid-center behind content) */
.shape-moth {
  top: 26%; right: 40%; width: 70px; height: 60px;
  opacity: 0.22;
  transform: rotate(6deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 60'><g stroke='%231a1a2e' stroke-width='2.5' stroke-linejoin='round'><ellipse cx='22' cy='30' rx='14' ry='18' fill='%23C8B6FF' transform='rotate(-18 22 30)'/><ellipse cx='48' cy='30' rx='14' ry='18' fill='%23C8B6FF' transform='rotate(18 48 30)'/><line x1='35' y1='10' x2='35' y2='48' stroke-width='2.5'/><circle cx='35' cy='10' r='3' fill='%231a1a2e'/><circle cx='22' cy='30' r='2.5' fill='%231a1a2e'/><circle cx='48' cy='30' r='2.5' fill='%231a1a2e'/></g></svg>");
}
/* Needle & thread (bottom-left strip) */
.shape-needle {
  top: 12%; left: 42%; width: 120px; height: 30px;
  opacity: 0.28;
  transform: rotate(-12deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 30'><g stroke='%231a1a2e' stroke-width='2.5' stroke-linejoin='round' stroke-linecap='round'><line x1='6' y1='15' x2='96' y2='15' stroke='%23C8C8D8' stroke-width='5'/><polygon points='96,10 114,15 96,20' fill='%231a1a2e'/><circle cx='12' cy='15' r='4' fill='%231a1a2e'/><path d='M8 15 Q 2 8 -2 14' stroke='%23FF3D94' stroke-width='2' fill='none'/></g></svg>");
}
/* Lucky dice (bottom-right lower) */
.shape-dice {
  bottom: 4%; left: 34%; width: 70px; height: 70px;
  opacity: 0.32;
  transform: rotate(-10deg);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 70'><g stroke='%231a1a2e' stroke-width='2.8' stroke-linejoin='round'><rect x='8' y='8' width='54' height='54' rx='8' fill='%23FFF3E0'/><circle cx='22' cy='22' r='3.5' fill='%231a1a2e'/><circle cx='48' cy='22' r='3.5' fill='%231a1a2e'/><circle cx='35' cy='35' r='3.5' fill='%23FF3D94'/><circle cx='22' cy='48' r='3.5' fill='%231a1a2e'/><circle cx='48' cy='48' r='3.5' fill='%231a1a2e'/></g></svg>");
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
.logo-zig, .logo-zag { color: var(--ink); }
.logo-bolt { color: var(--magenta); font-size: 0.9em; transform: translateY(-1px); }
.logo-ink {
  margin-left: 6px;
  background: var(--lime);
  color: var(--ink);
  padding: 2px 8px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: rotate(-4deg);
  font-size: 0.85em;
}
.primary-nav ul {
  display: flex;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.primary-nav a { padding: 4px 2px; position: relative; }
.primary-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px;
  background: var(--magenta); transform: scaleX(0); transform-origin: left;
  transition: transform 200ms var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.lang-switcher { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}
.lang-toggle:hover { background: var(--peach); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--cream); border: var(--border-thick);
  box-shadow: var(--shadow-hard); border-radius: 12px;
  padding: 6px; min-width: 160px; z-index: 50;
  display: none;
}
.lang-menu.open { display: block; }
.lang-menu button {
  width: 100%; text-align: left; padding: 10px 12px;
  border-radius: 8px; font-family: var(--font-body); font-size: 14px;
}
.lang-menu button:hover { background: var(--lime); }
.lang-menu button[aria-checked="true"] { background: var(--magenta); color: var(--cream); }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 2px solid var(--ink); border-radius: 10px;
  background: var(--cream); padding: 10px;
  flex-direction: column; justify-content: space-between;
}
.menu-toggle span {
  display: block; height: 3px; background: var(--ink); border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-nav {
  display: none; border-top: var(--border); background: var(--cream);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 12px 8px; font-family: var(--font-display);
  font-size: 20px; border-bottom: 2px dashed var(--ink);
}
.mobile-nav .mobile-book {
  margin-top: 12px; background: var(--magenta); color: var(--cream);
  border: var(--border-thick); border-radius: 999px; text-align: center;
  padding: 14px; box-shadow: var(--shadow-hard);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: 80px 0 0; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 80px;
  position: relative;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-self: center;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
  grid-column: 1 / -1;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 3px 3px 0 0 var(--ink);
}
.chip { transition: transform 220ms var(--ease), box-shadow 220ms var(--ease); cursor: default; }
.chip-magenta { background: var(--magenta); color: var(--cream); transform: rotate(-3deg); }
.chip-cyan { background: var(--cyan); color: var(--ink); transform: rotate(2deg); }
.chip-lime { background: var(--lime); color: var(--ink); transform: rotate(-1deg); }
.chip-magenta:hover { transform: rotate(-6deg) scale(1.12) translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink); }
.chip-cyan:hover { transform: rotate(5deg) scale(1.12) translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink); }
.chip-lime:hover { transform: rotate(-4deg) scale(1.12) translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink); }

.hero-title { font-size: clamp(54px, 9vw, 128px); line-height: 0.9; letter-spacing: -0.02em; }
.hero-line { display: block; }
.hero-line-1 { color: var(--ink); }
.hero-line-2 {
  color: var(--magenta);
  font-family: var(--font-script);
  font-size: 1.1em;
  line-height: 0.9;
  transform: translateX(40px) rotate(-2deg);
  margin-top: -0.05em;
}
.hero-sub { display: none; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  position: relative;
  align-self: center;
}
.hero-svg {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(8px 8px 0 var(--ink));
}
.hero-scroll {
  position: absolute; bottom: 80px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--ink-mid);
}
.hero-scroll svg { animation: bob 2s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--cream);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-1.2deg);
  margin: 40px -20px -20px;
}
.marquee-track {
  display: inline-flex; gap: 44px;
  font-family: var(--font-display); font-size: 26px; text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p { font-size: 18px; margin: 0 0 20px; max-width: 52ch; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat {
  padding: 28px 24px;
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  background: var(--cream);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
  cursor: default;
}
.stat-1 { background: var(--magenta); color: var(--cream); transform: rotate(-2deg); }
.stat-2 { background: var(--cyan); transform: rotate(1deg) translateY(20px); }
.stat-3 { background: var(--lime); transform: rotate(2deg); }
.stat-4 { background: var(--sunshine); transform: rotate(-1deg) translateY(20px); }
.stat-1:hover { transform: rotate(-4deg) scale(1.06) translate(-2px, -4px); box-shadow: 10px 10px 0 0 var(--ink); }
.stat-2:hover { transform: rotate(3deg) translateY(16px) scale(1.06) translateX(-2px); box-shadow: 10px 10px 0 0 var(--ink); }
.stat-3:hover { transform: rotate(4deg) scale(1.06) translate(-2px, -4px); box-shadow: 10px 10px 0 0 var(--ink); }
.stat-4:hover { transform: rotate(-3deg) translateY(16px) scale(1.06) translateX(-2px); box-shadow: 10px 10px 0 0 var(--ink); }
.stat-num {
  display: block; font-family: var(--font-display); font-size: 54px; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  padding: 32px 28px;
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  background: var(--cream);
  position: relative;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.service-card:hover { transform: translate(-4px, -4px) scale(1.03) rotate(-0.6deg); box-shadow: 10px 10px 0 0 var(--ink); }
.service-card:nth-child(even):hover { transform: translate(-4px, -4px) scale(1.03) rotate(0.6deg); box-shadow: 10px 10px 0 0 var(--ink); }
.service-card::before {
  content: ''; position: absolute; top: -14px; left: 24px;
  width: 28px; height: 28px; border: 3px solid var(--ink); border-radius: 50%;
  background: var(--magenta);
}
.service-card:nth-child(2)::before { background: var(--cyan); }
.service-card:nth-child(3)::before { background: var(--lime); }
.service-card:nth-child(4)::before { background: var(--sunshine); }
.service-card:nth-child(5)::before { background: var(--lilac); }
.service-card:nth-child(6)::before { background: var(--peach); }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--ink-mid); margin: 0; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ink);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-lg);
  position: relative;
  isolation: isolate;
}
.price-row {
  background: var(--cream);
  padding: 28px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 20px;
  align-items: center;
  position: relative;
  transition: background 180ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease), z-index 0s;
}
.price-row:nth-child(odd) { background: var(--cream-soft); }
.price-row:hover {
  background: var(--lime);
  transform: scale(1.035) rotate(-0.5deg);
  box-shadow: 6px 6px 0 0 var(--ink), -6px -6px 0 0 var(--ink);
  z-index: 3;
  border-radius: 8px;
}
.price-row:nth-child(even):hover { transform: scale(1.035) rotate(0.5deg); }
.price-row:hover .price-amount { transform: scale(1.08) rotate(-3deg); }
.price-amount { transition: transform 220ms var(--ease); }
.price-label { font-family: var(--font-display); font-size: 22px; }
.price-amount {
  font-family: var(--font-display); font-size: 28px;
  color: var(--magenta);
  background: var(--cream);
  padding: 4px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  white-space: nowrap;
}
.price-note { grid-column: 1 / -1; color: var(--ink-mid); font-size: 14px; font-family: var(--font-mono); }

/* ==========================================================================
   ARTISTS
   ========================================================================== */
.artists-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px;
}
.artist-card {
  background: var(--cream);
  color: var(--ink);
  border: var(--border-thick);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  transition: transform 200ms var(--ease);
}
.artist-card:hover { transform: translateY(-8px) rotate(-1.5deg) scale(1.03); box-shadow: 10px 14px 0 0 var(--ink); }
.artist-card:nth-child(even):hover { transform: translateY(-8px) rotate(1.5deg) scale(1.03); box-shadow: 10px 14px 0 0 var(--ink); }
.artist-card { transition: transform 240ms var(--ease), box-shadow 240ms var(--ease); }
.artist-portrait {
  aspect-ratio: 1;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.artist-card:nth-child(1) .artist-portrait { background: linear-gradient(135deg, var(--magenta), var(--peach)); }
.artist-card:nth-child(2) .artist-portrait { background: linear-gradient(135deg, var(--cyan), var(--lime)); }
.artist-card:nth-child(3) .artist-portrait { background: linear-gradient(135deg, var(--sunshine), var(--magenta)); }
.artist-card:nth-child(4) .artist-portrait { background: linear-gradient(135deg, var(--lilac), var(--cyan)); }
.artist-portrait svg { width: 70%; height: 70%; }
.artist-info {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.artist-info h3 { font-size: 22px; margin-bottom: 6px; }
.artist-role {
  display: inline-block;
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--ink); color: var(--cream); padding: 4px 10px; border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.artist-bio { font-size: 14px; color: var(--ink-mid); margin: 0 0 16px; }
.artist-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.artist-handle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--magenta);
  text-align: center;
}
.artist-book {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 8px 18px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--lime);
  text-align: center;
  white-space: nowrap;
}
.artist-book:hover { background: var(--magenta); color: var(--cream); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.gallery-filter {
  padding: 10px 18px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 3px 3px 0 0 var(--ink);
  transition: transform 150ms var(--ease), background 150ms var(--ease);
}
.gallery-filter:hover { transform: translate(-2px, -2px) scale(1.06) rotate(-1deg); box-shadow: 6px 6px 0 0 var(--ink); }
.gallery-filter[aria-pressed="true"]:hover { transform: translate(-2px, -2px) scale(1.06) rotate(1deg); }
.gallery-filter[aria-pressed="true"] { background: var(--magenta); color: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 28px;
  padding: 12px 0 20px;
}
.gallery-item {
  background: var(--cream);
  border: var(--border-thick);
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 14px;
  box-shadow: var(--shadow-hard);
  font-family: var(--font-mono);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
  margin: 0;
  overflow: visible;
}
.gallery-item:nth-child(3n+1) { transform: rotate(-1.5deg); }
.gallery-item:nth-child(3n+2) { transform: rotate(1deg); }
.gallery-item:nth-child(3n+3) { transform: rotate(-0.5deg); }
.gallery-item:nth-child(4n+2) { transform: rotate(2deg); }
.gallery-item:nth-child(3n+1):hover { transform: rotate(-3deg) scale(1.06) translate(-4px, -6px); box-shadow: 12px 14px 0 0 var(--ink); z-index: 3; }
.gallery-item:nth-child(3n+2):hover { transform: rotate(2.5deg) scale(1.06) translate(-4px, -6px); box-shadow: 12px 14px 0 0 var(--ink); z-index: 3; }
.gallery-item:nth-child(3n+3):hover { transform: rotate(-1.5deg) scale(1.06) translate(-4px, -6px); box-shadow: 12px 14px 0 0 var(--ink); z-index: 3; }
.gallery-item:nth-child(4n+2):hover { transform: rotate(4deg) scale(1.06) translate(-4px, -6px); box-shadow: 12px 14px 0 0 var(--ink); z-index: 3; }
.gallery-art {
  flex: 1;
  min-height: 0;
  border-radius: 4px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  color: var(--cream);
}
.gallery-art svg { width: 86%; height: 86%; opacity: 1; filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.28)); }
.gallery-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18), transparent 55%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 12px);
  pointer-events: none;
  mix-blend-mode: screen;
}
.gallery-art::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 20%;
  right: 20%;
  height: 10px;
  background: rgba(0,0,0,0.15);
  filter: blur(6px);
  border-radius: 50%;
  z-index: -1;
}
/* Varied art backgrounds — simulate different inks / photographs */
.gallery-item:nth-child(12n+1) .gallery-art { background: linear-gradient(135deg, #2E1F47, #0c0c18); }
.gallery-item:nth-child(12n+2) .gallery-art { background: linear-gradient(135deg, var(--magenta), #4a0f30); }
.gallery-item:nth-child(12n+3) .gallery-art { background: linear-gradient(135deg, var(--cyan), #052a3a); color: #052a3a; }
.gallery-item:nth-child(12n+4) .gallery-art { background: linear-gradient(135deg, var(--lime), var(--sunshine)); color: #1a1a2e; }
.gallery-item:nth-child(12n+5) .gallery-art { background: linear-gradient(135deg, var(--sunshine), var(--magenta)); }
.gallery-item:nth-child(12n+6) .gallery-art { background: linear-gradient(135deg, var(--lilac), var(--cyan)); color: #1a1a2e; }
.gallery-item:nth-child(12n+7) .gallery-art { background: linear-gradient(135deg, #1a1a2e, var(--magenta)); }
.gallery-item:nth-child(12n+8) .gallery-art { background: linear-gradient(135deg, var(--peach), var(--magenta)); color: #1a1a2e; }
.gallery-item:nth-child(12n+9) .gallery-art { background: linear-gradient(135deg, #2E1F47, var(--cyan)); }
.gallery-item:nth-child(12n+10) .gallery-art { background: linear-gradient(135deg, var(--magenta), var(--sunshine)); }
.gallery-item:nth-child(12n+11) .gallery-art { background: linear-gradient(135deg, #1a1a2e, var(--lime)); }
.gallery-item:nth-child(12n+12) .gallery-art { background: linear-gradient(135deg, var(--cyan), var(--lilac)); color: #1a1a2e; }

.gallery-caption {
  padding: 12px 4px 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-title {
  font-family: var(--font-script);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}
.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
}
.gallery-artist { font-weight: 700; color: var(--magenta); }
.gallery-item-label {
  position: absolute;
  top: -10px; right: -8px;
  background: var(--ink); color: var(--cream);
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--cream);
  transform: rotate(6deg);
}
.gallery-item[hidden] { display: none; }
.gallery-note {
  margin-top: 28px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-mid);
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.review-card {
  padding: 36px 32px;
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  position: relative;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
  cursor: default;
}
.review-card:nth-child(1) { transform: rotate(-1.5deg); background: var(--peach); }
.review-card:nth-child(2) { transform: rotate(1deg); background: var(--lime); }
.review-card:nth-child(3) { transform: rotate(1.5deg); background: var(--cyan); }
.review-card:nth-child(4) { transform: rotate(-1deg); background: var(--sunshine); }
.review-card:nth-child(1):hover { transform: rotate(-3deg) scale(1.04) translate(-3px, -4px); box-shadow: 10px 10px 0 0 var(--ink); z-index: 2; }
.review-card:nth-child(2):hover { transform: rotate(2.5deg) scale(1.04) translate(-3px, -4px); box-shadow: 10px 10px 0 0 var(--ink); z-index: 2; }
.review-card:nth-child(3):hover { transform: rotate(3deg) scale(1.04) translate(-3px, -4px); box-shadow: 10px 10px 0 0 var(--ink); z-index: 2; }
.review-card:nth-child(4):hover { transform: rotate(-2.5deg) scale(1.04) translate(-3px, -4px); box-shadow: 10px 10px 0 0 var(--ink); z-index: 2; }
.review-card::before {
  content: '“';
  position: absolute; top: -18px; left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  background: var(--ink); color: var(--cream);
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  line-height: 1;
  padding-bottom: 18px;
}
.review-quote { font-size: 19px; margin: 8px 0 16px; }
.review-author { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ==========================================================================
   AFTERCARE
   ========================================================================== */
.aftercare-timeline {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.aftercare-step {
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-hard);
  position: relative;
  min-height: 220px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.aftercare-step:nth-child(1) { background: var(--magenta); color: var(--cream); }
.aftercare-step:nth-child(2) { background: var(--sunshine); }
.aftercare-step:nth-child(3) { background: var(--cyan); }
.aftercare-step:nth-child(4) { background: var(--lime); }
.aftercare-step:nth-child(5) { background: var(--lilac); }
.aftercare-step:hover { transform: translate(-3px, -5px) scale(1.04) rotate(-1.2deg); box-shadow: 10px 12px 0 0 var(--ink); z-index: 2; }
.aftercare-step:nth-child(even):hover { transform: translate(-3px, -5px) scale(1.04) rotate(1.2deg); box-shadow: 10px 12px 0 0 var(--ink); z-index: 2; }
.aftercare-step:hover .aftercare-day { transform: scale(1.08) rotate(-3deg); }
.aftercare-day { transition: transform 200ms var(--ease); }
.aftercare-day {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-block; padding: 4px 10px; background: var(--ink); color: var(--cream);
  border-radius: 999px; margin-bottom: 14px;
}
.aftercare-step h3 { font-size: 20px; margin-bottom: 10px; }
.aftercare-step p { font-size: 14px; margin: 0; }
.aftercare-emergency {
  background: var(--ink); color: var(--cream);
  border: var(--border-thick); border-radius: var(--radius);
  padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-hard);
}
.aftercare-emergency svg { flex: 0 0 auto; color: var(--magenta); }
.aftercare-emergency p { margin: 0; font-size: 16px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: start;
  max-width: 1100px;
}
.faq-item {
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.faq-item:hover { transform: translate(-3px, -3px) scale(1.015); box-shadow: 9px 9px 0 0 var(--ink); }
.faq-item[open] { background: var(--lime); }
.faq-item[open]:hover { transform: translate(-3px, -3px); }
.faq-question {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center;
  font-size: 20px; flex: 0 0 auto;
  transition: transform 200ms var(--ease);
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--magenta); }
.faq-answer { padding: 0 28px 24px; font-size: 16px; color: var(--ink-mid); max-width: 70ch; }
.faq-item[open] .faq-answer { color: var(--ink); }

/* ==========================================================================
   BOOKING
   ========================================================================== */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.booking-intro { position: sticky; top: 120px; }
.contact-block {
  margin-top: 48px;
  padding: 28px;
  border: var(--border-thick);
  border-radius: var(--radius);
  background: var(--peach);
  box-shadow: var(--shadow-hard);
  transform: rotate(-1deg);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.contact-block:hover { transform: rotate(-2.5deg) scale(1.03) translate(-3px, -4px); box-shadow: 10px 12px 0 0 var(--ink); }
.contact-title { font-size: 28px; margin-bottom: 14px; }
.contact-block address { font-style: normal; }
.contact-block address p { margin: 0 0 14px; font-size: 15px; }
.contact-block a { text-decoration: underline; text-underline-offset: 3px; }

.booking-form {
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-hard-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  padding: 14px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 150ms var(--ease), background 150ms var(--ease);
}
#artist-select,
#artist-select option {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(255, 61, 148, 0.2);
}
.field .error { color: var(--magenta-deep); font-size: 13px; min-height: 1.2em; font-family: var(--font-mono); }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--magenta-deep); background: #FFE9F2; }

.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  padding: 32px 24px;
  border: 3px dashed var(--ink);
  border-radius: var(--radius);
  background: var(--cream-soft);
  cursor: pointer;
  transition: background 150ms var(--ease), border-color 150ms var(--ease);
}
.dropzone:hover, .dropzone.dragging {
  background: var(--lime);
  border-color: var(--magenta);
}
.dropzone input[type="file"] { display: none; }
.dropzone-label { font-family: var(--font-display); font-size: 18px; }
.dropzone small { font-family: var(--font-mono); font-size: 12px; color: var(--ink-mid); }

.file-list {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.file-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 14px;
  background: var(--cream-soft);
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.file-remove {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ink); color: var(--cream); display: grid; place-items: center;
  font-size: 14px;
}

.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
  cursor: pointer;
}
.checkbox input {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; flex: 0 0 auto;
  border: 2.5px solid var(--ink); border-radius: 6px;
  background: var(--cream);
  position: relative;
  margin-top: 2px;
}
.checkbox input:checked {
  background: var(--magenta);
}
.checkbox input:checked::after {
  content: ''; position: absolute; top: 3px; left: 6px;
  width: 6px; height: 12px; border: solid var(--cream); border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkbox .error { display: block; margin-top: 4px; }

.form-success {
  background: var(--lime);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.form-success h3 { font-size: 24px; margin-bottom: 8px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  border-top: var(--border-thick);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px;
}
.footer-brand .logo { color: var(--cream); font-size: 24px; margin-bottom: 16px; display: inline-flex; }
.footer-brand .logo-zig, .footer-brand .logo-zag { color: var(--cream); }
.footer-brand .logo-ink { background: var(--lime); color: var(--ink); border-color: var(--cream); }
.footer-tagline { font-family: var(--font-script); font-size: 28px; color: var(--lime); margin-top: 10px; line-height: 1.1; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--magenta);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col .linklike { color: var(--cream); opacity: 0.85; }
.footer-col .linklike { text-decoration: none; }
.footer-col .linklike:hover { text-decoration: none; }
.footer-col a:hover, .footer-col .linklike:hover { opacity: 1; color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255, 243, 224, 0.15);
  padding: 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  opacity: 0.7;
}

/* ==========================================================================
   COOKIE BANNER + MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
  width: calc(100% - 40px);
  max-width: 560px;
  margin: 0 auto;
  animation: slideUp 300ms var(--ease);
}
@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-banner-text h3 { font-size: 20px; margin-bottom: 4px; line-height: 1.15; }
.cookie-banner-text p { font-size: 14px; margin: 0; color: var(--ink-mid); line-height: 1.5; }
.cookie-banner-actions {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  justify-content: flex-start;
}
.cookie-banner-actions .btn { flex: 0 1 auto; }
.cookie-more {
  font-family: var(--font-mono); font-size: 12px; text-decoration: underline;
  text-underline-offset: 3px; color: var(--ink-mid);
  margin-left: auto;
}

.cookie-modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  padding: 20px;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(4px);
}
.cookie-modal-inner {
  position: relative;
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
}
.cookie-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center; font-size: 22px;
}
.cookie-modal-inner h3 { font-size: 28px; margin-bottom: 8px; }
.cookie-modal-inner > p { color: var(--ink-mid); margin: 0 0 24px; }

.cookie-categories { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.cookie-category {
  padding: 20px 22px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream-soft);
}
.cookie-category-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px;
}
.cookie-category-head h4 { font-size: 18px; }
.cookie-category p { margin: 0; font-size: 14px; color: var(--ink-mid); }
.cookie-always-on {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 10px; background: var(--lime); border: 2px solid var(--ink); border-radius: 999px;
}

/* Toggle switch */
.toggle { position: relative; width: 52px; height: 28px; flex: 0 0 auto; cursor: pointer; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  transition: background 200ms var(--ease);
}
.toggle-slider::before {
  content: ''; position: absolute; left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: var(--ink); border-radius: 50%;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.toggle input:checked + .toggle-slider { background: var(--magenta); }
.toggle input:checked + .toggle-slider::before { transform: translateX(24px); background: var(--cream); }

.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 10px; }

/* ==========================================================================
   PRIVACY PAGE
   ========================================================================== */
.privacy-page {
  padding: 80px 0 120px;
  min-height: 70vh;
}
.privacy-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
  padding: 60px;
}
.privacy-wrap h1 { font-size: clamp(38px, 5vw, 58px); margin-bottom: 8px; }
.privacy-intro { font-size: 17px; color: var(--ink-mid); margin: 16px 0 8px; }
.privacy-updated { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--magenta); }
.privacy-sections { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.privacy-section h2 { font-size: 22px; margin-bottom: 8px; color: var(--ink); }
.privacy-section p { margin: 0; color: var(--ink-mid); }
.privacy-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-mono); font-size: 13px; text-transform: uppercase;
  padding: 8px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 3px 3px 0 0 var(--ink);
}
.privacy-back:hover { background: var(--magenta); color: var(--cream); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { gap: 28px; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-scroll { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-table { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .aftercare-timeline { grid-template-columns: repeat(2, 1fr); }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .privacy-wrap { padding: 40px 28px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero { padding-top: 40px; }
  .hero-title { font-size: clamp(42px, 14vw, 80px); }
  .hero-line-2 { transform: translateX(20px) rotate(-2deg); }
  .services-grid, .artists-grid, .gallery-grid { grid-template-columns: 1fr; }
  .aftercare-timeline { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-inner { grid-template-columns: 1fr; padding: 20px; }
  .cookie-more { text-align: left; }
  .price-row { grid-template-columns: 1fr; }
  .price-amount { justify-self: start; }
  .header-actions .btn-primary { display: none; }
  .marquee-track { font-size: 20px; gap: 28px; }
  .cookie-modal-inner { padding: 28px 22px; }
  .privacy-wrap { padding: 32px 20px; }
}

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}

/* ---------- Focus states ---------- */
:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   VISUAL CONTENT ADDITIONS — icons, avatars, richer illustrations
   ============================================================= */

/* Service card icon badge */
.service-card { position: relative; padding-top: 36px; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transform: rotate(-4deg);
  transition: transform 220ms var(--ease);
}
.service-icon { width: 68px; height: 68px; border-radius: 18px; }
.service-icon svg { width: 62%; height: 62%; }
.service-card:nth-child(even) .service-icon { transform: rotate(4deg); }
.service-card:hover .service-icon { transform: rotate(-10deg) scale(1.12); }
.service-card:nth-child(even):hover .service-icon { transform: rotate(10deg) scale(1.12); }

.service-badge {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: 2px 2px 0 0 var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: rotate(3deg);
}
.service-card:nth-child(odd) .service-badge { transform: rotate(-3deg); background: var(--lime); }
.service-card:nth-child(even) .service-badge { background: var(--cyan); }
.service-card:nth-child(3n) .service-badge { background: var(--peach); }

.service-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--magenta);
}
.service-meta-arrow {
  font-size: 18px;
  color: var(--ink);
  transition: transform 220ms var(--ease);
}
.service-card:hover .service-meta-arrow { transform: translateX(6px); }

/* Aftercare icon — small floating mark on the step card */
.aftercare-step { position: relative; }
.aftercare-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(8deg);
  transition: transform 220ms var(--ease);
}
.aftercare-icon svg { width: 60%; height: 60%; }
.aftercare-step:hover .aftercare-icon { transform: rotate(-12deg) scale(1.15); }

/* Review avatar + star rating header */
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, 'Archivo Black'), sans-serif;
  font-size: 18px;
  color: var(--ink);
  flex-shrink: 0;
  transform: rotate(-4deg);
  transition: transform 220ms var(--ease);
}
.review-card:hover .review-avatar { transform: rotate(-10deg) scale(1.1); }
.review-card:nth-child(even):hover .review-avatar { transform: rotate(10deg) scale(1.1); }
.review-stars {
  display: inline-flex;
  gap: 2px;
  padding: 4px 8px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 0 var(--ink);
}
.review-stars svg { display: block; }

/* Artist portrait — let the SVG fill its container */
.artist-portrait svg { width: 100%; height: 100%; }

/* Gallery art — enlarge the flash to fill the polaroid panel */
.gallery-art svg {
  width: 82%;
  height: 82%;
  opacity: 1;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.18));
}
/* Give light-background tiles a darker backdrop for the dark-ink SVGs */
.gallery-art { background-blend-mode: normal; }

