/* Dragon Puppets · Braincell Art
   Sketchbook / ink-dragon aesthetic inspired by the channel brand */
:root {
  --ink: #141210;
  --ink-soft: #3a342e;
  --paper: #f4efe6;
  --paper-deep: #e6dfd2;
  --cream: #faf7f1;
  --line: rgba(20, 18, 16, 0.14);
  --magenta: #c43b7a;
  --magenta-hot: #e04d90;
  --crimson: #a52828;
  --graphite: #2a2623;
  --silver: #8a8480;
  --gold: #c9a227;
  --yt-red: #ff0033;
  --shadow: 0 14px 40px rgba(20, 18, 16, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-note: "Caveat", "Segoe Print", cursive;
  --max: 1120px;
  --header-h: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(196, 59, 122, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 10%, rgba(165, 40, 40, 0.05), transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(20, 18, 16, 0.015) 28px
    );
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--magenta);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--crimson);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.55rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.hand-note {
  font-family: var(--font-note);
  font-size: 1.35rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover { color: inherit; }

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.logo .logo-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--magenta);
}

.site-nav a.cta {
  background: var(--ink);
  color: var(--cream) !important;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  box-shadow: 3px 3px 0 var(--magenta);
}

.site-nav a.cta:hover {
  background: var(--magenta);
  border-color: var(--ink);
  color: #fff !important;
  border-bottom: 2px solid var(--ink);
}

.site-nav a.yt-link {
  color: var(--yt-red);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--ink);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  border: 2px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  box-shadow: 3px 3px 0 var(--ink);
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
  text-decoration: none;
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn-primary {
  background: var(--magenta);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--magenta-hot);
  color: #fff !important;
}

.btn-ink {
  background: var(--ink);
  color: var(--cream) !important;
}

.btn-ink:hover {
  background: var(--graphite);
  color: var(--cream) !important;
}

.btn-ghost {
  background: var(--cream);
  color: var(--ink) !important;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink) !important;
}

.btn-yt {
  background: var(--yt-red);
  color: #fff !important;
  border-color: var(--ink);
}

.btn-yt:hover {
  background: #e6002e;
  color: #fff !important;
}

.btn-sm {
  padding: 0.42rem 0.9rem;
  font-size: 0.85rem;
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-cart-disabled,
.btn.btn-cart-disabled,
.btn-primary.btn-cart-disabled,
button.btn-cart-disabled:disabled {
  background: #b0a8a0 !important;
  color: #f5f0e8 !important;
  border-color: #8a8480 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.85;
  transform: none !important;
  pointer-events: none;
}

.btn-cart-disabled:hover,
.btn-primary.btn-cart-disabled:hover {
  background: #b0a8a0 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(400px, 60vh, 580px);
  display: grid;
  align-items: end;
  background-color: #1a2a40;
  background-size: cover;
  background-position: center 40%;
  color: var(--cream);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(12, 18, 28, 0.9) 0%, rgba(12, 18, 28, 0.55) 52%, rgba(12, 18, 28, 0.28) 100%),
    linear-gradient(0deg, rgba(12, 18, 28, 0.45) 0%, transparent 45%);
}

/* Channel banner is a wide strip — keep the dragon readable */
.hero.hero-banner {
  min-height: clamp(360px, 52vh, 520px);
  background-position: center 35%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
}

.hero .eyebrow { color: #f3a0c4; }

.hero h1 {
  color: #fff;
  max-width: 16ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-weight: 800;
  font-size: 0.92rem;
  color: rgba(255, 250, 242, 0.9);
}

.hero-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.hero-lead {
  color: rgba(255, 250, 242, 0.9);
  font-size: 1.12rem;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

/* —— Stats strip —— */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 2px solid var(--ink);
}

.stat {
  background: var(--cream);
  padding: 1.2rem 1.4rem;
  text-align: center;
  border-right: 2px solid var(--ink);
}

.stat:last-child { border-right: none; }

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}

.stat span {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 700;
}

/* —— Sections —— */
.section {
  padding: 3.4rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 28rem;
}

.band {
  background: var(--cream);
  border-block: 2px solid var(--ink);
}

.band-ink {
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-block: 2px solid var(--ink);
}

.band-ink h2,
.band-ink h3 { color: #fff; }

.band-ink p { color: rgba(255, 250, 242, 0.85); }

.band-ink .eyebrow { color: #f3a0c4; }

.band-ink a:not(.btn) {
  color: #f3a0c4;
}

.band-magenta {
  background: linear-gradient(145deg, #8f2258 0%, #5c1638 100%);
  color: var(--cream);
  border-block: 2px solid var(--ink);
}

.band-magenta h2,
.band-magenta h3 { color: #fff; }

.band-magenta p { color: rgba(255, 250, 242, 0.88); }

.band-magenta .eyebrow { color: #ffc2dd; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  border: 2px solid var(--ink);
  background: var(--paper-deep);
  position: relative;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card.portrait img {
  aspect-ratio: 1;
}

.tape {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 72px;
  height: 18px;
  background: rgba(196, 59, 122, 0.35);
  border: 1px solid rgba(20, 18, 16, 0.15);
  z-index: 2;
}

/* —— Product grid —— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.35rem;
}

.product-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--magenta);
}

.product-card-main {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
  cursor: pointer;
}

.product-card-main:hover {
  color: inherit;
}

.product-card-main:hover h3 {
  color: var(--magenta);
}

.product-card-cta {
  margin: 0.65rem 0 0;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--magenta);
}

.product-actions-bar {
  padding: 0 1.1rem 1.15rem;
  margin-top: 0;
}

/* Thumbnail strip under shop card — all angles visible without leaving shop */
.card-photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 0.35rem;
  padding: 0.65rem 1.1rem 0.25rem;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.card-photo-thumb {
  display: block;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
  opacity: 0.9;
}

.card-photo-thumb.is-cover {
  border-color: var(--magenta);
  box-shadow: 2px 2px 0 var(--magenta);
}

.card-photo-thumb:hover {
  opacity: 1;
  transform: scale(1.03);
}

.card-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— Cart —— */
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  margin-left: 0.2rem;
  border-radius: 999px;
  background: var(--magenta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  vertical-align: middle;
}

.cart-nav-link.cart-has-items {
  color: var(--ink);
  font-weight: 800;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.cart-row.is-sold {
  opacity: 0.7;
}

.cart-row-thumb img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink);
  display: block;
}

.cart-row-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.cart-row-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--paper-deep);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.cart-status-err {
  border-color: var(--crimson);
  color: var(--crimson);
}

.btn-big {
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
}

/* —— Shipping estimates —— */
.ship-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 860px) {
  .ship-layout {
    grid-template-columns: 1fr;
  }
}

.ship-result-box {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: #fff6e8;
  border: 2px solid var(--ink);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 3px 3px 0 rgba(201, 162, 39, 0.35);
}

.ship-result-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.ship-result-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
}

.ship-table-wrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--cream);
}

.ship-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ship-table th,
.ship-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.ship-table th {
  background: var(--paper-deep);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ship-table tr:last-child td {
  border-bottom: none;
}

.ship-dim {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.ship-disclaimer {
  margin-top: 0.85rem;
}

.ship-inline {
  margin-top: 1rem;
  max-width: none;
}

.ship-inline a {
  font-weight: 800;
}

.product-card .thumb {
  aspect-ratio: 1;
  background: var(--paper-deep);
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--ink);
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink);
}

.badge.sold {
  background: var(--silver);
  border-color: var(--ink);
  color: var(--ink);
}

.badge.commission {
  background: var(--magenta);
}

.product-body {
  padding: 1.05rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}

.product-body h3 {
  margin: 0;
  font-size: 1.12rem;
}

.product-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.2rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-title {
  color: inherit;
  text-decoration: none;
}

.product-card-title:hover {
  color: var(--magenta);
}

.photo-count {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  z-index: 1;
}

/* —— Product detail / gallery —— */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-main-photo {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}

.product-main-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.gallery-count {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
}

.product-thumb {
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  opacity: 0.75;
  box-shadow: 2px 2px 0 transparent;
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-thumb.is-active,
.product-thumb:hover {
  opacity: 1;
  box-shadow: 2px 2px 0 var(--magenta);
}

.product-detail-info .badge {
  display: inline-block;
}

@media (max-width: 860px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

.product-main-photo img {
  cursor: zoom-in;
}

.product-card .thumb img,
.card-photo-thumb {
  cursor: zoom-in;
}

/* —— Lightbox —— */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 18, 16, 0.92);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 1.5rem;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-stage {
  max-width: min(92vw, 900px);
  max-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 62vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  background: var(--cream);
}

.lightbox-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.85rem;
}

.lightbox-counter {
  opacity: 0.8;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 247, 241, 0.14);
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-nav:hover {
  background: rgba(250, 247, 241, 0.26);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.1rem;
  max-width: 92vw;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.lightbox-thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  background: var(--cream);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-thumb.is-active,
.lightbox-thumb:hover {
  opacity: 1;
  border-color: var(--magenta);
}

body.lightbox-locked {
  overflow: hidden;
}

/* —— Filters —— */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  font-family: inherit;
  font-weight: 800;
  font-size: 0.88rem;
  border: 2px solid var(--ink);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  cursor: pointer;
  color: var(--ink-soft);
  box-shadow: 2px 2px 0 transparent;
}

.filter-btn[aria-pressed="true"],
.filter-btn:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: 2px 2px 0 var(--magenta);
}

/* —— Feature cards —— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.feature {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.feature .icon {
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.feature h3 { margin-bottom: 0.3rem; }

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* —— YouTube grid —— */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
}

.yt-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.yt-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--yt-red);
  color: inherit;
}

.yt-card .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--graphite);
  border-bottom: 2px solid var(--ink);
}

.yt-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-card .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(20, 18, 16, 0.15);
  font-size: 1.75rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.yt-card .body {
  padding: 0.75rem 0.9rem 0.95rem;
}

.yt-card h3 {
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.3;
}

/* —— Forms —— */
.form-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: 5px 5px 0 var(--ink);
  max-width: 640px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  padding: 0.68rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 3px 3px 0 var(--magenta);
}

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

.field-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

.field-hint .linkish,
button.linkish {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  color: var(--magenta);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

input[type="file"] {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.55rem 0.65rem;
  border: 2px dashed var(--ink);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.ref-preview {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ref-preview-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  background: var(--paper-deep);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
}

.ref-preview-size {
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  cursor: pointer;
}

.checkbox-row input {
  width: auto;
  accent-color: var(--magenta);
}

.form-note {
  background: var(--paper-deep);
  border: 1.5px dashed var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 1rem 0;
}

/* Buyer / commission warnings */
.callout-warn {
  background: #fff6e8;
  border: 2px solid var(--ink);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  color: var(--ink-soft);
  box-shadow: 3px 3px 0 rgba(201, 162, 39, 0.35);
  line-height: 1.55;
}

.buyer-note {
  background: #fff6e8;
  border: 1.5px solid var(--ink);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0.45rem 0 0.15rem;
  line-height: 1.4;
}

.buyer-note-compact {
  font-size: 0.8rem;
  padding: 0.5rem 0.65rem;
}

.buyer-note strong {
  color: var(--ink);
  font-weight: 800;
}

.price-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.price-example {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
}

.price-example img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
}

.price-example > div {
  padding: 0.95rem 1.05rem 1.1rem;
}

.price-example h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.price-example .product-price {
  margin: 0 0 0.35rem;
}

.price-example .product-meta {
  margin: 0;
}

@media (max-width: 860px) {
  .price-example-grid {
    grid-template-columns: 1fr;
  }
}

.form-success {
  display: none;
  background: rgba(196, 59, 122, 0.08);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
  box-shadow: 3px 3px 0 var(--magenta);
}

.form-success.is-visible { display: block; }

.form-error {
  display: none;
  color: var(--crimson);
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.form-error.is-visible { display: block; }

/* —— Modal —— */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.6);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.is-open { display: flex; }

.modal {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: min(90vh, 800px);
  overflow: auto;
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--cream);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  box-shadow: 2px 2px 0 var(--ink);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-right: 2px solid var(--ink);
}

.modal-body {
  padding: 1.75rem 1.5rem;
}

/* —— Quote / dossier —— */
.quote {
  font-family: var(--font-note);
  font-size: 1.55rem;
  color: var(--ink);
  border-left: 4px solid var(--magenta);
  padding-left: 1.1rem;
  margin: 1.4rem 0;
  line-height: 1.25;
}

.dossier {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.95rem;
}

.dossier dt {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--magenta);
  margin-top: 0.65rem;
}

.dossier dt:first-child { margin-top: 0; }

.dossier dd {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 250, 242, 0.75);
  padding: 2.5rem 0 1.75rem;
  margin-top: 0;
  border-top: 2px solid var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: rgba(255, 250, 242, 0.85);
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
  font-weight: 700;
}

.site-footer a:hover { color: #f3a0c4; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.footer-brand-sub {
  font-size: 0.85rem;
  color: #f3a0c4;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

/* —— Page hero —— */
.page-hero {
  padding: 2.6rem 0 1.4rem;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(180deg, rgba(196, 59, 122, 0.08), transparent);
}

.page-hero h1 { margin-bottom: 0.4rem; }

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: var(--radius);
  border: 2px dashed var(--ink);
}

/* —— Responsive —— */
@media (max-width: 860px) {
  .split,
  .split-reverse,
  .feature-grid,
  .footer-grid,
  .modal-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .stat { border-right: none; border-bottom: 2px solid var(--ink); }
  .stat:last-child { border-bottom: none; }

  .split-reverse { direction: ltr; }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.15rem;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.7rem 0.5rem;
    border-bottom: none;
    border-radius: var(--radius-sm);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(196, 59, 122, 0.1);
  }

  .site-nav a.cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .form-grid { grid-template-columns: 1fr; }

  .modal-grid img { border-right: none; border-bottom: 2px solid var(--ink); }
}

@media (max-width: 520px) {
  .hero-inner { padding: 2.5rem 0 2rem; }
  .section { padding: 2.4rem 0; }
}
