  :root {
    --ink: #0a0a0a;
    --ink-soft: #1a1a1a;
    --charcoal: #2a2a2a;
    --grey-deep: #3a3a3a;
    --grey: #6a6a6a;
    --grey-light: #b8b8b8;
    --bone: #e8e4d8;
    --paper: #f2ede0;
    --paper-bright: #fafaf2;
    --accent-blue: #1d3fc7;
    --accent-blue-soft: #2a52d9;
    --accent-yellow: #ffd11a;
    --blood: #e8131a;
    --blood-deep: #a8000a;
  }

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

  html, body {
    background: var(--ink);
    color: var(--paper);
    font-family: 'Patrick Hand', 'Comic Sans MS', cursive;
    overflow-x: hidden;
    line-height: 1.45;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(255,255,255,0.015) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1000;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1.2px);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 1001;
  }

  /* ============ NAV ============ */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 32px;
    background: var(--ink);
    border-bottom: 3px solid var(--accent-yellow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 0 var(--ink);
  }

  .logo {
    font-family: 'Bowlby One', cursive;
    font-size: 1.5rem;
    color: var(--paper);
    letter-spacing: 2px;
    text-decoration: none;
    text-shadow: 3px 3px 0 var(--accent-blue);
    transform: skewX(-6deg);
    display: inline-block;
  }

  .site-nav ul { display: flex; gap: 8px; list-style: none; }

  .site-nav a {
    color: var(--paper);
    text-decoration: none;
    font-family: 'Bangers', cursive;
    letter-spacing: 3px;
    font-size: 1.1rem;
    padding: 6px 14px;
    border: 2px solid transparent;
    transition: all 0.15s ease;
  }

  .site-nav a:hover {
    background: var(--accent-yellow);
    color: var(--ink);
    border-color: var(--ink);
    transform: rotate(-2deg);
  }

  /* ============ HERO ============ */
  .hero {
    min-height: auto;
    position: relative;
    padding: 110px 40px 50px;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(29, 63, 199, 0.18) 0%, transparent 55%),
      linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-conic-gradient(from 0deg at 30% 40%,
      rgba(255,255,255,0.025) 0deg, rgba(255,255,255,0.025) 4deg,
      transparent 4deg, transparent 12deg);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1.5px, transparent 2px);
    background-size: 12px 12px;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .issue-bar {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: var(--ink);
    border: 3px solid var(--accent-yellow);
    margin-bottom: 24px;
    font-family: 'Bangers', cursive;
    letter-spacing: 3px;
    color: var(--accent-yellow);
    font-size: 1.1rem;
    box-shadow: 6px 6px 0 var(--accent-yellow);
    transform: rotate(-1deg);
  }

  .issue-bar span:nth-child(2) { color: var(--blood); }

  .hero-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 60px;
  }

  .hero-logo {
    width: 100%;
    max-width: 640px;
    margin-bottom: 22px;
    opacity: 0;
    animation: slamIn 0.7s 0.2s forwards;
  }

  .hero-logo img,
  .hero-logo-fallback {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(6px 6px 0 rgba(0,0,0,0.5));
  }

  .hero-kicker {
    font-family: 'Bangers', cursive;
    color: var(--accent-yellow);
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-shadow: 2px 2px 0 var(--ink);
    transform: rotate(-2deg);
    display: inline-block;
    opacity: 0;
    animation: slamIn 0.6s 0.5s forwards;
  }

  .hero-cta {
    display: inline-block;
    background: var(--ink);
    color: var(--accent-yellow);
    padding: 18px 44px;
    font-family: 'Bangers', cursive;
    font-size: 1.6rem;
    letter-spacing: 4px;
    text-decoration: none;
    border: 4px solid var(--accent-yellow);
    box-shadow: 6px 6px 0 var(--accent-yellow);
    transition: transform 0.12s, box-shadow 0.12s, background 0.12s, color 0.12s;
    transform: rotate(-2deg);
    opacity: 0;
    animation: slamIn 0.6s 0.8s forwards;
  }

  .hero-cta:hover {
    background: var(--accent-yellow);
    color: var(--ink);
    transform: rotate(-2deg) translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero-art {
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
  }

  /* Yellow-bordered comic burst sits BEHIND the photo */
  .hero-burst {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* The photo frame — comic panel style */
  .hero-photo {
    position: relative;
    width: 85%;
    aspect-ratio: 4/3;
    z-index: 2;
    border: 4px solid var(--paper);
    box-shadow:
      8px 8px 0 var(--ink),
      14px 14px 0 var(--accent-yellow),
      14px 14px 0 4px var(--ink);
    overflow: hidden;
    transform: rotate(-2deg);
    background: var(--ink);
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    /* High contrast B&W to pop against the comic background */
    filter: contrast(1.15) brightness(1.02);
  }

  /* Halftone overlay on the photo so it integrates with the comic style */
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1px, transparent 1.5px);
    background-size: 4px 4px;
    pointer-events: none;
    mix-blend-mode: multiply;
  }

  /* Motion lines layered on top of everything */
  .hero-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }

  /* ============ COMIC PAGE ============ */
  .comic-page {
    padding: 70px 40px 100px;
    position: relative;
    background: var(--ink-soft);
    color: var(--paper);
  }

  .page-header { max-width: 1400px; margin: 0 auto 50px; }

  .page-num {
    display: inline-block;
    font-family: 'Bowlby One', cursive;
    background: var(--ink);
    color: var(--accent-yellow);
    padding: 6px 18px;
    font-size: 1rem;
    letter-spacing: 3px;
    transform: rotate(-2deg);
    margin-bottom: 14px;
    border: 2px solid var(--accent-yellow);
    box-shadow: 4px 4px 0 var(--accent-yellow);
  }

  .section-title {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    text-transform: uppercase;
    color: var(--paper);
    line-height: 0.9;
    text-shadow:
      -2px -2px 0 var(--ink), 2px -2px 0 var(--ink),
      -2px 2px 0 var(--ink), 2px 2px 0 var(--ink),
      6px 6px 0 var(--accent-blue);
    letter-spacing: 1px;
    transform: skewX(-4deg);
  }

  .section-sub {
    font-family: 'Patrick Hand', cursive;
    color: var(--grey-light);
    font-size: 1.25rem;
    margin-top: 22px;
    max-width: 560px;
  }

  /* ============ GALLERY ============ */
  /*
   * FIXED 6-PANEL COMIC PAGE TEMPLATE
   *
   * The gallery always renders exactly this layout — three rows, six panels:
   *
   *   ┌──────────┬───────────┐
   *   │  slot 1  │  slot 2   │   ← Row 1: slanted-left + right, 280px
   *   │ /slanted │   plain   │
   *   ├──────────┴───────────┤
   *   │      slot 3 (hero)   │   ← Row 2: full-width hero, 400px
   *   ├────────┬────────┬────┤
   *   │ slot 4 │ slot 5 │ s6 │   ← Row 3: three equal squares, 240px
   *   └────────┴────────┴────┘
   *
   * Uses CSS Grid template areas — guaranteed clean rectangle, no layout math.
   */
  .comic-page-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 280px 400px 240px;
    gap: 16px;
    min-height: 940px; /* Safety net: 280+400+240+gaps */
  }

  .comic-page-layout .panel {
    width: 100%;
    height: 100%;
    min-height: 200px; /* fallback if grid-row gets dropped somehow */
  }

  /* Row 1 — left panel */
  .panel-slot-1 {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
  }
  /* Row 1 — right panel */
  .panel-slot-2 {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
  }

  /* Subtle tilts on Row 1 to keep the hand-pasted comic feel without the slants */
  .panel-slot-1 { transform: rotate(0.3deg); }
  .panel-slot-2 { transform: rotate(-0.4deg); }

  /* Row 2 — full-width hero */
  .panel-slot-3 {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
  }

  /* Row 3 — three equal squares */
  .panel-slot-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
  .panel-slot-5 { grid-column: 3 / 5; grid-row: 3 / 4; }
  .panel-slot-6 { grid-column: 5 / 7; grid-row: 3 / 4; }

  /* Subtle alternating tilts on the bottom row */
  .panel-slot-4 { transform: rotate(-0.4deg); }
  .panel-slot-5 { transform: rotate(0.3deg); }
  .panel-slot-6 { transform: rotate(-0.2deg); }

  .panel:hover,
  .panel:focus-visible {
    transform: translate(-3px, -3px) rotate(-1deg) !important;
    z-index: 3;
  }

  .panel {
    background: var(--charcoal);
    border: 4px solid var(--paper);
    box-shadow: 7px 7px 0 var(--ink);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    /* Button resets */
    padding: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    display: block;
  }

  .panel:hover,
  .panel:focus-visible {
    transform: translate(-3px, -3px) rotate(-1deg);
    box-shadow: 10px 10px 0 var(--accent-yellow);
    z-index: 3;
    outline: none;
  }

  .panel:focus-visible {
    box-shadow: 10px 10px 0 var(--accent-yellow), 0 0 0 4px var(--accent-blue);
  }

  /* Note: legacy .panel-1..panel-8 and .panel-size-* classes are no longer used.
     Layout is now driven by .panel-span-{1,2,3} + .row-{short,normal,tall,hero}
     defined further up in the gallery section. */

  /* ============ FULL GALLERY ARCHIVE PAGE ============ */
  .gallery-archive {
    min-height: 80vh;
  }
  .archive-grid {
    max-width: 1300px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
  }
  .archive-panel {
    background: var(--charcoal);
    border: 4px solid var(--paper);
    box-shadow: 6px 6px 0 var(--ink);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 280px;
    padding: 0;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .archive-panel:nth-child(3n+1) { transform: rotate(0); }
  .archive-panel:nth-child(3n+2) { transform: rotate(0.4deg); }
  .archive-panel:nth-child(3n+3) { transform: rotate(-0.4deg); }
  .archive-panel:hover,
  .archive-panel:focus-visible {
    transform: translate(-4px, -4px) rotate(-1.5deg) !important;
    box-shadow: 10px 10px 0 var(--accent-yellow), 0 0 0 4px var(--accent-blue);
    z-index: 3;
  }
  .archive-panel-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--charcoal);
    position: relative;
  }
  .archive-panel-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 2px);
    background-size: 6px 6px;
    pointer-events: none;
  }
  .archive-panel-img span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    font-family: 'Permanent Marker', cursive;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
  }
  .archive-panel-caption {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: var(--accent-yellow);
    color: var(--ink);
    padding: 6px 10px;
    font-family: 'Bangers', cursive;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--ink);
    text-align: center;
  }
  /* Archive pagination */
  .archive-pagination,
  .gallery-archive .nav-links {
    max-width: 1300px;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .gallery-archive .page-numbers {
    display: inline-block;
    padding: 12px 18px;
    background: var(--charcoal);
    color: var(--paper);
    border: 3px solid var(--accent-yellow);
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: transform 0.12s, background 0.12s;
  }
  .gallery-archive .page-numbers.current,
  .gallery-archive .page-numbers:hover {
    background: var(--accent-yellow);
    color: var(--ink);
    transform: translate(-2px, -2px);
  }
  .gallery-archive .page-numbers.dots { border-color: transparent; }
  /* Back to comic button at bottom of archive page */
  .archive-back {
    max-width: 1300px;
    margin: 60px auto 0;
    text-align: center;
  }
  .archive-back-link {
    display: inline-block;
    color: var(--accent-yellow);
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 10px 24px;
    border: 3px solid var(--accent-yellow);
    transition: transform 0.12s, background 0.12s, color 0.12s;
  }
  .archive-back-link:hover {
    background: var(--accent-yellow);
    color: var(--ink);
    transform: translate(-2px, -2px);
  }

  /* ============ EVENTS ARCHIVE ============ */
  .events-archive-list {
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .event-row {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    background: var(--charcoal);
    border: 4px solid var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
    overflow: hidden;
  }
  .event-row-img {
    background-size: cover;
    background-position: center;
    min-height: 240px;
    border-right: 4px solid var(--paper);
  }
  .event-row-body { padding: 28px; }
  .event-row-body h3 {
    font-family: 'Bowlby One', cursive;
    color: var(--paper);
    font-size: 1.6rem;
    margin: 0 0 10px;
    line-height: 1.2;
  }
  .event-row-content {
    font-family: 'Patrick Hand', cursive;
    color: var(--paper);
    font-size: 1.15rem;
    line-height: 1.65;
    margin-top: 14px;
  }
  @media (max-width: 760px) {
    .event-row { grid-template-columns: 1fr; }
    .event-row-img { min-height: 200px; border-right: none; border-bottom: 4px solid var(--paper); }
  }

  /* Empty state for when no tattoos exist yet */
  .gallery-empty {
    grid-column: 1 / -1;
    background: var(--charcoal);
    border: 4px dashed var(--accent-yellow);
    padding: 80px 40px;
    text-align: center;
    color: var(--paper);
  }

  .gallery-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    filter: grayscale(1) brightness(0.7);
  }

  .gallery-empty h3 {
    font-family: 'Bowlby One', cursive;
    color: var(--accent-yellow);
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0 0 12px;
    text-shadow: 3px 3px 0 var(--ink);
  }

  .gallery-empty p {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    margin: 0 0 24px;
    opacity: 0.85;
  }

  .gallery-empty-cta {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--ink);
    padding: 14px 32px;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-decoration: none;
    border: 4px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    transition: transform 0.12s, box-shadow 0.12s;
  }

  .gallery-empty-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--ink);
  }

  .panel-img {
    width: 100%; height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--charcoal);
  }

  .panel-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 2px);
    background-size: 6px 6px;
    pointer-events: none;
  }

  /* Optional: if a tattoo post has no featured image, show its title as a text fallback */
  .panel-img:not([style*="background-image"]) {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    font-family: 'Permanent Marker', cursive;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
  }

  .panel-sfx {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'Bowlby One', cursive;
    font-size: 1.4rem;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 0 var(--ink);
    transform: rotate(8deg);
    z-index: 2;
    letter-spacing: 1px;
  }

  .panel-caption {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--paper);
    color: var(--ink);
    padding: 6px 12px;
    font-family: 'Permanent Marker', cursive;
    font-size: 0.85rem;
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 var(--accent-yellow);
    z-index: 2;
  }

  /* ============ ABOUT ============ */
  .about {
    background: var(--ink);
    color: var(--paper);
    position: relative;
  }

  .about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1.5px, transparent 2px);
    background-size: 8px 8px;
    pointer-events: none;
  }

  .about .section-title {
    color: var(--paper);
    text-shadow:
      -2px -2px 0 var(--ink), 2px -2px 0 var(--ink),
      -2px 2px 0 var(--ink), 2px 2px 0 var(--ink),
      6px 6px 0 var(--accent-blue);
  }

  .about-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .about-portrait {
    aspect-ratio: 3/4;
    background: var(--charcoal);
    border: 4px solid var(--paper);
    box-shadow: 10px 10px 0 var(--accent-yellow);
    position: relative;
    overflow: hidden;
    transform: rotate(-2deg);
  }

  .about-portrait svg,
  .about-portrait img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 30%;
  }

  .narration-box {
    background: var(--paper);
    color: var(--ink);
    padding: 18px 22px;
    border: 3px solid var(--ink);
    margin-bottom: 18px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.15rem;
    line-height: 1.55;
    box-shadow: 5px 5px 0 var(--charcoal);
    position: relative;
  }

  .narration-box::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px;
    width: 18px; height: 18px;
    background: var(--accent-yellow);
    border-right: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
  }

  .narration-box:nth-of-type(2) { transform: rotate(0.5deg); box-shadow: -5px 5px 0 var(--charcoal); }
  .narration-box:nth-of-type(2)::before { background: var(--accent-blue); }
  .narration-box:nth-of-type(3) { transform: rotate(-0.4deg); }
  .narration-box:nth-of-type(3)::before { background: var(--blood); }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
  }

  .stat {
    background: var(--charcoal);
    color: var(--paper);
    padding: 18px 12px;
    text-align: center;
    border: 3px solid var(--paper);
    box-shadow: 5px 5px 0 var(--ink);
    transform: rotate(-1deg);
  }
  .stat:nth-child(2) { transform: rotate(1deg); border-color: var(--accent-yellow); }
  .stat:nth-child(3) { transform: rotate(-1.5deg); border-color: var(--accent-blue); }

  .stat-num {
    font-family: 'Bowlby One', cursive;
    font-size: 2.4rem;
    color: var(--paper);
    line-height: 1;
  }

  .stat-label {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-top: 4px;
    color: var(--grey-light);
  }

  /* ============ INSTAGRAM ============ */
  .instagram { background: var(--charcoal); position: relative; }

  .instagram::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1.5px, transparent 2px);
    background-size: 8px 8px;
    pointer-events: none;
  }

  .ig-header {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
  }

  .instagram .section-title {
    color: var(--paper);
    text-shadow:
      -2px -2px 0 var(--ink), 2px -2px 0 var(--ink),
      -2px 2px 0 var(--ink), 2px 2px 0 var(--ink),
      6px 6px 0 var(--accent-yellow);
  }

  .ig-handle {
    font-family: 'Bangers', cursive;
    background: var(--ink);
    color: var(--accent-yellow);
    padding: 14px 28px;
    border: 3px solid var(--accent-yellow);
    box-shadow: 5px 5px 0 var(--accent-yellow);
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 1.2rem;
    transform: rotate(-2deg);
    transition: all 0.15s;
  }

  .ig-handle:hover {
    background: var(--accent-yellow);
    color: var(--ink);
    transform: rotate(-2deg) translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--ink);
  }

  .ig-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    min-height: 400px;
  }

  .ig-tile {
    aspect-ratio: 1;
    background: var(--ink);
    border: 4px solid var(--paper);
    box-shadow: 6px 6px 0 var(--ink);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    /* Button resets for ig-tile-as-button */
    padding: 0;
    font: inherit;
    color: inherit;
    display: block;
  }

  .ig-tile:hover,
  .ig-tile:focus-visible {
    transform: translate(-3px, -3px) rotate(-1deg);
    box-shadow: 9px 9px 0 var(--accent-yellow);
    z-index: 2;
    outline: none;
  }

  .ig-tile:focus-visible {
    box-shadow: 9px 9px 0 var(--accent-yellow), 0 0 0 4px var(--accent-blue);
  }

  .ig-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .ig-tile:hover img { transform: scale(1.05); }

  .ig-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1.5px);
    background-size: 4px 4px;
    pointer-events: none;
  }

  /* ============ INSTAGRAM PAGINATION ============ */
  .ig-pagination {
    max-width: 1400px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-family: 'Bangers', cursive;
  }

  .ig-page-btn {
    width: 64px;
    height: 64px;
    background: var(--ink);
    color: var(--accent-yellow);
    border: 4px solid var(--accent-yellow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: 'Bowlby One', cursive;
    box-shadow: 5px 5px 0 var(--accent-yellow);
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
    padding: 0;
    line-height: 1;
  }

  .ig-page-btn:hover:not(:disabled) {
    background: var(--accent-yellow);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--ink);
  }

  .ig-page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: 5px 5px 0 var(--grey-deep);
    border-color: var(--grey);
    color: var(--grey);
  }

  .ig-page-indicator {
    background: var(--paper);
    color: var(--ink);
    padding: 14px 24px;
    font-family: 'Bowlby One', cursive;
    font-size: 1.1rem;
    letter-spacing: 3px;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--accent-blue);
    transform: rotate(-2deg);
    min-width: 140px;
    text-align: center;
  }

  .ig-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    font-family: 'Permanent Marker', cursive;
    color: var(--grey-light);
    border: 3px dashed var(--grey);
    background: var(--ink);
    font-size: 1.1rem;
  }

  /* Plugin-based Instagram feed wrapper */
  .ig-plugin-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: var(--ink);
    border: 4px solid var(--paper);
    box-shadow: 12px 12px 0 var(--accent-yellow);
    transform: rotate(-0.3deg);
  }
  .ig-plugin-wrap > * {
    padding: 16px;
  }
  /* Smash Balloon wraps with #sb_instagram — give it some breathing room */
  .ig-plugin-wrap #sb_instagram,
  .ig-plugin-wrap .sb_instagram_header,
  .ig-plugin-wrap #sbi_images {
    background: transparent !important;
  }
  .ig-plugin-empty {
    text-align: center;
    padding: 60px 30px !important;
    color: var(--paper);
    font-family: 'Patrick Hand', cursive;
    font-size: 1.15rem;
    line-height: 1.6;
  }
  .ig-plugin-empty-title {
    font-family: 'Bowlby One', cursive;
    color: var(--accent-yellow);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin: 0 0 16px;
    text-shadow: 3px 3px 0 var(--ink);
  }
  .ig-plugin-empty strong { color: var(--accent-yellow); }
  .ig-plugin-install-btn,
  .ig-plugin-fallback-btn {
    display: inline-block;
    margin: 14px 8px 0;
    background: var(--accent-yellow);
    color: var(--ink);
    font-family: 'Bangers', cursive;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 12px 28px;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.12s, box-shadow 0.12s;
  }
  .ig-plugin-fallback-btn {
    background: var(--accent-blue);
    color: var(--paper);
  }
  .ig-plugin-install-btn:hover,
  .ig-plugin-fallback-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
  }

  /* ============ BOOKING ============ */
  .booking {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }

  .booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(29,63,199,0.15) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 80%, rgba(255,209,26,0.06) 0%, transparent 50%);
    pointer-events: none;
  }

  .booking::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-conic-gradient(from 0deg at 80% 20%,
      rgba(255,255,255,0.025) 0deg, rgba(255,255,255,0.025) 6deg,
      transparent 6deg, transparent 18deg);
    pointer-events: none;
  }

  .booking-wrap {
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    background: var(--paper);
    color: var(--ink);
    border: 4px solid var(--ink);
    box-shadow: 12px 12px 0 var(--accent-blue);
    padding: 60px 36px;
    position: relative;
    z-index: 1;
    display: block;
  }

  .booking-wrap::before {
    content: 'BOOK IT!!';
    position: absolute;
    top: -28px;
    right: -22px;
    background: var(--ink);
    color: var(--accent-yellow);
    padding: 12px 22px;
    font-family: 'Bowlby One', cursive;
    font-size: 1.4rem;
    border: 3px solid var(--accent-yellow);
    transform: rotate(8deg);
    letter-spacing: 3px;
    box-shadow: 4px 4px 0 var(--accent-yellow);
  }

  .booking .section-title {
    color: var(--ink);
    text-shadow:
      -2px -2px 0 var(--paper), 2px -2px 0 var(--paper),
      -2px 2px 0 var(--paper), 2px 2px 0 var(--paper),
      6px 6px 0 var(--accent-blue);
  }
  .booking .page-num { background: var(--ink); color: var(--accent-yellow); border-color: var(--accent-yellow); box-shadow: 4px 4px 0 var(--accent-yellow); }

  .booking-intro {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    margin: 24px 0 32px;
    line-height: 1.6;
  }

  form { display: grid; gap: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  label {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
    color: var(--ink);
  }

  input, textarea, select {
    width: 100%;
    padding: 14px;
    border: 3px solid var(--ink);
    background: var(--paper);
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    color: var(--ink);
    transition: box-shadow 0.15s, transform 0.15s;
  }

  input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 5px 5px 0 var(--accent-blue);
    transform: translate(-1px, -1px);
  }

  textarea { min-height: 120px; resize: vertical; }

  button[type="submit"] {
    background: var(--ink);
    color: var(--accent-yellow);
    padding: 20px;
    font-family: 'Bowlby One', cursive;
    font-size: 1.4rem;
    letter-spacing: 4px;
    border: 4px solid var(--accent-yellow);
    box-shadow: 6px 6px 0 var(--accent-yellow);
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.12s, background 0.12s, color 0.12s;
    transform: rotate(-1deg);
  }

  button[type="submit"]:hover {
    background: var(--accent-yellow);
    color: var(--ink);
    transform: rotate(-1deg) translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--ink);
  }

  /* ============ BOOKING (JotForm) ============ */
  .booking-layout {
    max-width: 100%;
    margin: 40px auto 0;
    display: block;
  }
  .booking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
  }
  .booking-info-block { margin-bottom: 0; }
  .booking-info-block h3 {
    font-family: 'Bangers', cursive;
    color: var(--blood);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin: 0 0 10px;
    text-shadow: 2px 2px 0 var(--accent-yellow);
  }
  .booking-info-body {
    font-family: 'Patrick Hand', cursive;
    color: var(--ink);
    font-size: 1.15rem;
    line-height: 1.7;
  }
  .booking-form-frame {
    background: var(--ink);
    border: 4px solid var(--ink);
    box-shadow: 8px 8px 0 var(--accent-yellow);
    padding: 6px;
    transform: rotate(-0.3deg);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .cht-jotform {
    width: 100%;
    min-width: 100%;
    min-height: 900px;
    border: 0;
    display: block;
    background: var(--paper);
  }

  /* ============ AFTERCARE ============ */
  .aftercare-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .aftercare-card {
    background: var(--charcoal);
    border: 4px solid var(--paper);
    box-shadow: 7px 7px 0 var(--ink);
    padding: 26px;
    transform: rotate(-0.3deg);
  }
  .aftercare-card:nth-child(2) { transform: rotate(0.4deg); }
  .aftercare-card:nth-child(3) { transform: rotate(-0.2deg); }
  .aftercare-card h3 {
    font-family: 'Bangers', cursive;
    color: var(--accent-yellow);
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    margin: 0 0 14px;
    text-shadow: 2px 2px 0 var(--ink);
  }
  .aftercare-body {
    font-family: 'Patrick Hand', cursive;
    color: var(--paper);
    font-size: 1.1rem;
    line-height: 1.65;
  }

  /* ============ SHOP ============ */
  .shop-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .shop-logo {
    max-width: 100%;
    width: 360px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    filter: drop-shadow(4px 4px 0 var(--ink));
  }
  .shop-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
  }
  .shop-desc {
    font-family: 'Patrick Hand', cursive;
    color: var(--paper);
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 0 24px;
  }
  .shop-details { margin-bottom: 24px; }
  .shop-detail-row {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 2px dashed rgba(242,237,224,0.2);
  }
  .shop-detail-label {
    font-family: 'Bangers', cursive;
    color: var(--accent-yellow);
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    min-width: 90px;
  }
  .shop-detail-value {
    font-family: 'Patrick Hand', cursive;
    color: var(--paper);
    font-size: 1.1rem;
  }
  .shop-cta,
  .section-more-cta {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--ink);
    padding: 16px 36px;
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-decoration: none;
    border: 4px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    transition: transform 0.12s, box-shadow 0.12s;
    transform: rotate(-1deg);
  }
  .shop-cta:hover,
  .section-more-cta:hover {
    transform: rotate(-1deg) translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--ink);
  }
  .shop-info {
    position: relative;
    z-index: 2;
  }
  .shop-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  .shop-social {
    display: inline-block;
    font-family: 'Bangers', cursive;
    letter-spacing: 1.5px;
    font-size: 1.05rem;
    color: var(--paper);
    text-decoration: none;
    padding: 8px 18px;
    border: 3px solid var(--accent-blue);
    background: var(--ink-soft);
    transition: transform 0.12s, background 0.12s, color 0.12s;
  }
  .shop-social:hover {
    background: var(--accent-blue);
    color: var(--paper);
    transform: translate(-2px, -2px);
  }

  /* ============ EVENTS ============ */
  .events-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .event-card {
    background: var(--charcoal);
    border: 4px solid var(--paper);
    box-shadow: 7px 7px 0 var(--ink);
    overflow: hidden;
    transform: rotate(-0.3deg);
  }
  .event-card:nth-child(2) { transform: rotate(0.3deg); }
  .event-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid var(--paper);
  }
  .event-card-body { padding: 20px; }
  .event-date {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--paper);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 3px 12px;
    margin-bottom: 10px;
  }
  .event-card-body h3 {
    font-family: 'Bowlby One', cursive;
    color: var(--paper);
    font-size: 1.25rem;
    margin: 0 0 8px;
    line-height: 1.2;
  }
  .event-loc {
    display: block;
    font-family: 'Permanent Marker', cursive;
    color: var(--accent-yellow);
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  .event-excerpt {
    font-family: 'Patrick Hand', cursive;
    color: var(--paper);
    opacity: 0.85;
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .section-more,
  .events-empty,
  .links-empty {
    max-width: 1200px;
    margin: 36px auto 0;
    text-align: center;
  }
  .events-empty p,
  .links-empty p {
    font-family: 'Patrick Hand', cursive;
    color: var(--paper);
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 20px;
  }

  /* ============ SUPPLIES ============ */
  .supplies-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
  }
  .supply-card {
    background: var(--charcoal);
    border: 4px solid var(--accent-blue);
    box-shadow: 6px 6px 0 var(--ink);
    padding: 24px;
    transform: rotate(-0.2deg);
  }
  .supply-card:nth-child(even) { transform: rotate(0.3deg); border-color: var(--accent-yellow); }
  .supply-card h3 {
    font-family: 'Bangers', cursive;
    color: var(--accent-yellow);
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    margin: 0 0 10px;
  }
  .supply-card p {
    font-family: 'Patrick Hand', cursive;
    color: var(--paper);
    font-size: 1.1rem;
    line-height: 1.55;
    margin: 0;
  }

  /* ============ LINKS ============ */
  .links-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
  }
  .link-card {
    display: block;
    background: var(--charcoal);
    border: 4px solid var(--paper);
    box-shadow: 6px 6px 0 var(--ink);
    padding: 22px;
    text-decoration: none;
    transition: transform 0.12s, box-shadow 0.12s;
  }
  .link-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--accent-yellow);
  }
  .link-label {
    display: block;
    font-family: 'Bangers', cursive;
    color: var(--accent-yellow);
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }
  .link-desc {
    display: block;
    font-family: 'Patrick Hand', cursive;
    color: var(--paper);
    font-size: 1.05rem;
    opacity: 0.85;
  }

  /* Active nav link highlighting */
  .site-nav a.is-active {
    background: var(--accent-yellow);
    color: var(--ink);
    border-color: var(--ink);
  }
  /* Persistent Book button in nav */
  .site-nav .cht-nav-book a {
    background: var(--blood);
    color: var(--paper);
    border-color: var(--ink);
  }
  .site-nav .cht-nav-book a:hover {
    background: var(--accent-yellow);
    color: var(--ink);
  }

  /* ============ CONTACT ============ */
  .contact {
    background: var(--ink-soft);
    color: var(--paper);
    padding: 80px 40px 30px;
    border-top: 3px solid var(--accent-yellow);
    position: relative;
  }

  .contact-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .contact h3 {
    font-family: 'Bangers', cursive;
    color: var(--accent-yellow);
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-size: 1.2rem;
  }

  .contact-logo {
    font-family: 'Bowlby One', cursive;
    font-size: 2.4rem;
    color: var(--paper);
    text-shadow: 3px 3px 0 var(--accent-blue);
    margin-bottom: 14px;
    transform: skewX(-5deg);
    display: inline-block;
  }

  .contact p, .contact a {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    color: var(--grey-light);
    text-decoration: none;
    line-height: 1.8;
    display: block;
  }

  .contact a:hover { color: var(--accent-yellow); }

  .footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--grey-deep);
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    font-size: 0.9rem;
    color: var(--grey);
    letter-spacing: 2px;
  }

  .footer-bottom span { color: var(--accent-yellow); }

  /* ============ ANIMATIONS ============ */
  @keyframes slamIn {
    0% { opacity: 0; transform: translateY(-30px) scale(1.1) skewX(-4deg); }
    60% { opacity: 1; transform: translateY(5px) scale(0.97) skewX(-4deg); }
    100% { opacity: 1; transform: translateY(0) scale(1) skewX(-4deg); }
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes sfxPop {
    0% { opacity: 0; transform: scale(0) rotate(-30deg); }
    70% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============ LIGHTBOX ============ */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(5, 5, 5, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .lightbox.open {
    opacity: 1;
    visibility: visible;
  }

  .lightbox::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1.5px, transparent 2px);
    background-size: 8px 8px;
    pointer-events: none;
  }

  .lightbox-frame {
    position: relative;
    max-width: min(1100px, 90vw);
    max-height: 85vh;
    border: 5px solid var(--paper);
    box-shadow:
      10px 10px 0 var(--ink),
      16px 16px 0 var(--accent-yellow),
      16px 16px 0 5px var(--ink);
    background: var(--ink);
    transform: rotate(-1deg) scale(0.92);
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    overflow: hidden;
  }

  .lightbox.open .lightbox-frame {
    transform: rotate(-1deg) scale(1);
  }

  .lightbox-frame img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .lightbox-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1.5px);
    background-size: 4px 4px;
    pointer-events: none;
  }

  .lightbox-close {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 56px;
    height: 56px;
    background: var(--blood);
    color: var(--paper);
    border: 4px solid var(--ink);
    font-family: 'Bowlby One', cursive;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.12s, box-shadow 0.12s;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(10deg);
  }

  .lightbox-close:hover {
    transform: rotate(10deg) translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    width: 64px;
    height: 64px;
    background: var(--ink);
    color: var(--accent-yellow);
    border: 4px solid var(--accent-yellow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: 'Bowlby One', cursive;
    box-shadow: 5px 5px 0 var(--accent-yellow);
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
    padding: 0;
    line-height: 1;
    z-index: 10;
    transform: translateY(-50%);
  }

  .lightbox-nav.prev { left: 16px; }
  .lightbox-nav.next { right: 16px; }

  .lightbox-nav:hover:not(:disabled) {
    background: var(--accent-yellow);
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
  }

  .lightbox-nav.prev:hover:not(:disabled) { transform: translateY(-50%) translate(-2px, 2px); }
  .lightbox-nav.next:hover:not(:disabled) { transform: translateY(-50%) translate(2px, 2px); }

  .lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .lightbox-counter {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: var(--paper);
    color: var(--ink);
    padding: 10px 22px;
    font-family: 'Bowlby One', cursive;
    font-size: 1rem;
    letter-spacing: 3px;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--accent-blue);
    z-index: 10;
  }

  /* "View on Instagram" link button — appears only on Instagram images */
  .lightbox-ig-link {
    position: absolute;
    top: -22px;
    left: -16px;
    background: var(--accent-yellow);
    color: var(--ink);
    padding: 10px 20px;
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    letter-spacing: 3px;
    text-decoration: none;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    z-index: 10;
    transform: rotate(-4deg);
    transition: transform 0.12s, box-shadow 0.12s;
  }

  .lightbox-ig-link:hover {
    transform: rotate(-4deg) translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
  }

  body.lightbox-open {
    overflow: hidden;
  }

  /* ============ MOBILE ============ */
  @media (max-width: 900px) {
    .site-header { padding: 12px 16px; flex-wrap: wrap; gap: 8px; }
    .site-nav ul { gap: 4px; flex-wrap: wrap; justify-content: center; }
    .site-nav a { font-size: 0.85rem; padding: 4px 8px; letter-spacing: 1px; }

    /* New sections stack to single column on mobile */
    .booking-info,
    .shop-grid { grid-template-columns: 1fr; gap: 28px; }
    .aftercare-grid,
    .events-grid { grid-template-columns: 1fr; }

    /* JotForm needs MAXIMUM width on mobile — break out of all the nested padding */
    .booking { padding: 0; }
    .booking .comic-page,
    section.booking.comic-page { padding-left: 0; padding-right: 0; }
    .booking-form-frame {
      transform: none;
      padding: 0;
      border: 0;
      box-shadow: none;
      background: transparent;
      /* Break out of the booking-wrap padding entirely — push to viewport edges */
      margin-left: calc(-1 * var(--booking-wrap-pad, 12px));
      margin-right: calc(-1 * var(--booking-wrap-pad, 12px));
      width: auto;
    }
    .cht-jotform {
      min-height: 750px; /* shorter — JotForm has its own internal pagination */
      width: 100%;
      max-width: 100%;
      display: block;
    }

    .hero { padding: 110px 20px 60px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-art { aspect-ratio: 1/1; max-height: 400px; }

    .comic-page { padding: 70px 20px; }

    .comic-page-layout {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto;
      gap: 10px;
    }
    /* Reset all slot positions for mobile — let them stack naturally */
    .panel-slot-1, .panel-slot-2, .panel-slot-3,
    .panel-slot-4, .panel-slot-5, .panel-slot-6 {
      grid-column: auto;
      grid-row: auto;
      clip-path: none;
      margin: 0;
      transform: none;
    }
    /* Row 1: slot 1 + 2 side by side */
    .panel-slot-1 { height: 180px; }
    .panel-slot-2 { height: 180px; }
    /* Row 2: hero full-width spanning both columns */
    .panel-slot-3 {
      grid-column: 1 / -1;
      height: 240px;
    }
    /* Row 3: slot 4 + 5 side by side */
    .panel-slot-4 { height: 160px; }
    .panel-slot-5 { height: 160px; }
    /* Row 4: slot 6 alone (full width) */
    .panel-slot-6 {
      grid-column: 1 / -1;
      height: 180px;
    }

    /* Archive page mobile — 2 columns, slightly shorter panels */
    .archive-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .archive-panel { height: 220px; }
    .gallery-archive .page-numbers { font-size: 1rem; padding: 8px 12px; }
    .archive-back-link { font-size: 1rem; padding: 8px 18px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; min-height: auto; }
    .ig-pagination { gap: 16px; margin-top: 30px; }
    .ig-page-btn { width: 52px; height: 52px; font-size: 1.6rem; }
    .ig-page-indicator { padding: 10px 16px; font-size: 0.9rem; min-width: 110px; }
    .booking-wrap {
      padding: 40px 8px;
      width: 100%;
      border: none;
      box-shadow: none;
      --booking-wrap-pad: 8px;
    }
    .booking.comic-page { padding-left: 0; padding-right: 0; }
    /* Hide the "BOOK IT!!" corner badge on mobile so it doesn't overflow */
    .booking-wrap::before { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .hero-text { padding-left: 0; }
    .hero-logo { max-width: 380px; margin-left: auto; margin-right: auto; }

    /* Lightbox mobile */
    .lightbox { padding: 30px 12px; }
    .lightbox-close { top: -18px; right: -18px; width: 46px; height: 46px; font-size: 1.3rem; }
    .lightbox-nav { width: 48px; height: 48px; font-size: 1.5rem; }
    .lightbox-nav.prev { left: 6px; }
    .lightbox-nav.next { right: 6px; }
    .lightbox-counter { font-size: 0.85rem; padding: 8px 16px; }
    .lightbox-ig-link { font-size: 0.85rem; padding: 8px 14px; top: -18px; left: -8px; letter-spacing: 2px; }
  }

  /* ============ WORDPRESS-SPECIFIC OVERRIDES ============ */
  /* Push fixed header down when WP admin bar is showing */
  .admin-bar .site-header {
    top: 32px;
  }
  @media (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
  }

  /* WordPress block alignments inside narration boxes (for page content) */
  .narration-box .alignleft { float: left; margin-right: 1.5em; max-width: 50%; }
  .narration-box .alignright { float: right; margin-left: 1.5em; max-width: 50%; }
  .narration-box .aligncenter { display: block; margin-left: auto; margin-right: auto; }

  /* WP Custom Logo */
  .custom-logo-link img {
    max-height: 50px;
    width: auto;
  }

  /* Posts navigation */
  .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
  }
  .nav-links a {
    color: var(--accent-yellow);
    text-decoration: none;
  }
  .nav-links a:hover {
    color: var(--paper);
  }

  /* Comments — basic styling for any future blog use */
  .comments-area {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 30px;
    background: var(--charcoal);
    border: 3px solid var(--paper);
  }
