@import url('https://fonts.googleapis.com/css2?family=VT323&family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Pinyon+Script&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy:      #5C1A2E;
  --burgundy-deep: #3A0D1C;
  --burgundy-mid:  #7D2540;
  --pink-pastel:   #F2C4CE;
  --pink-light:    #FAE0E6;
  --pink-dim:      #C9909F;
  --cream:         #F5EDE8;
  --tape-white:    rgba(245, 237, 232, 0.88);
  --glow-pink:     rgba(242, 196, 206, 0.45);
  --scanline-dark: rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--burgundy-deep);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── VHS SCANLINES OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    var(--scanline-dark) 3px,
    var(--scanline-dark) 4px
  );
  pointer-events: none;
  z-index: 9999;
  animation: scanroll 8s linear infinite;
}

/* ── VHS VIGNETTE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center,
    transparent 55%,
    rgba(20, 0, 10, 0.65) 100%
  );
  pointer-events: none;
  z-index: 9998;
}

@keyframes scanroll {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

/* ── NOISE GRAIN ── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainshift 0.15s steps(1) infinite;
}

@keyframes grainshift {
  0%  { background-position:   0px   0px; }
  10% { background-position: -50px -20px; }
  20% { background-position:  30px  40px; }
  30% { background-position: -70px  10px; }
  40% { background-position:  20px -60px; }
  50% { background-position: -40px  30px; }
  60% { background-position:  60px -30px; }
  70% { background-position: -10px  50px; }
  80% { background-position:  40px  20px; }
  90% { background-position: -60px -40px; }
}

/* ── VHS HUD ELEMENTS ── */
.vhs-hud {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  pointer-events: none;
}

.vhs-play {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: var(--pink-pastel);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 8px var(--glow-pink);
}

.vhs-play::before {
  content: '▶';
  color: var(--pink-pastel);
  animation: blink 1.2s step-end infinite;
}

.vhs-counter {
  font-family: 'VT323', monospace;
  font-size: 0.95rem;
  color: var(--pink-dim);
  letter-spacing: 3px;
}

.vhs-date {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: var(--pink-dim);
  letter-spacing: 2px;
  opacity: 0.7;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to right, var(--burgundy-deep), var(--burgundy-mid), var(--burgundy-deep));
  border-bottom: 2px solid var(--burgundy-mid);
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

nav::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0; right: 0;
  height: 3px;
  background: var(--pink-pastel);
  opacity: 0.3;
  box-shadow: 0 0 8px var(--glow-pink);
}

.nav-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--pink-pastel);
  text-decoration: none;
  letter-spacing: 3px;
  text-shadow: 2px 2px 0 var(--burgundy-deep),
               0 0 20px var(--glow-pink);
  position: relative;
}

.nav-brand::before {
  content: attr(data-text);
  position: absolute;
  left: 1.5px;
  top: 0;
  color: rgba(100, 255, 220, 0.2);
  animation: chroma 4s ease-in-out infinite;
}

.nav-brand::after {
  content: attr(data-text);
  position: absolute;
  left: -1.5px;
  top: 0;
  color: rgba(255, 100, 140, 0.2);
  animation: chroma 4s ease-in-out infinite reverse;
}

@keyframes chroma {
  0%, 100% { clip-path: inset(0 0 95% 0); transform: translateX(0); }
  20%       { clip-path: inset(30% 0 60% 0); transform: translateX(-1px); }
  40%       { clip-path: inset(60% 0 20% 0); transform: translateX(1px); }
  60%       { clip-path: inset(10% 0 80% 0); transform: translateX(-1px); }
  80%       { clip-path: inset(80% 0 5% 0); transform: translateX(0.5px); }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  color: var(--pink-light);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink-pastel);
  text-shadow: 0 0 12px var(--glow-pink);
}

.nav-links a.active::after {
  content: '◆';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: var(--pink-pastel);
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(125, 37, 64, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(242, 196, 206, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(242, 196, 206, 0.06) 0%, transparent 60%);
  animation: bgpulse 6s ease-in-out infinite;
}

@keyframes bgpulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.hero-tape-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--pink-pastel), transparent);
  opacity: 0.25;
  animation: tapeline 3s ease-in-out infinite;
}
.hero-tape-line:nth-child(1) { top: 18%; animation-delay: 0s; }
.hero-tape-line:nth-child(2) { top: 72%; animation-delay: 1.5s; }

@keyframes tapeline {
  0%, 100% { opacity: 0.15; transform: scaleX(0.8); }
  50%       { opacity: 0.4;  transform: scaleX(1); }
}

.hero-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 6px;
  color: var(--pink-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(4.5rem, 13vw, 11rem);
  color: var(--pink-pastel);
  line-height: 1;
  letter-spacing: 4px;
  text-shadow:
    3px 3px 0 var(--burgundy-deep),
    0 0 40px var(--glow-pink),
    0 0 80px rgba(242, 196, 206, 0.2);
  position: relative;
  z-index: 1;
  animation: glitchtitle 8s ease-in-out infinite;
}

@keyframes glitchtitle {
  0%, 88%, 100% { text-shadow: 3px 3px 0 var(--burgundy-deep), 0 0 40px var(--glow-pink); transform: none; }
  89%  { transform: translate(-2px, 0) skewX(-1deg); text-shadow: 3px 3px 0 var(--burgundy-deep), -3px 0 rgba(100,255,220,0.3), 3px 0 rgba(255,80,120,0.3); }
  90%  { transform: translate(2px, 0) skewX(1deg);  text-shadow: 3px 3px 0 var(--burgundy-deep), 3px 0 rgba(100,255,220,0.3), -3px 0 rgba(255,80,120,0.3); }
  91%  { transform: none; }
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--pink-light);
  letter-spacing: 2px;
  margin-top: 18px;
  opacity: 0.85;
}

.hero-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--pink-pastel), transparent);
  margin: 28px auto;
  box-shadow: 0 0 10px var(--glow-pink);
}

.hero-tagline {
  font-family: 'VT323', monospace;
  font-size: 1.05rem;
  letter-spacing: 5px;
  color: var(--pink-dim);
  text-transform: uppercase;
  margin-bottom: 44px;
}

.btn {
  display: inline-block;
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 40px;
  border: 2px solid var(--pink-pastel);
  color: var(--pink-pastel);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  box-shadow: 0 0 18px rgba(242, 196, 206, 0.15), inset 0 0 18px rgba(242, 196, 206, 0.05);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink-pastel);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover { color: var(--burgundy-deep); }
.btn:hover::before { transform: translateX(0); }

.btn-secondary {
  border-color: var(--burgundy-mid);
  color: var(--pink-light);
  box-shadow: none;
}
.btn-secondary::before { background: var(--burgundy-mid); }
.btn-secondary:hover { color: var(--cream); }

/* ── SECTION SHARED ── */
section { padding: 80px 40px; position: relative; }

.section-label {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  letter-spacing: 6px;
  color: var(--pink-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--pink-dim);
  opacity: 0.5;
}

.section-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--pink-pastel);
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 30px var(--glow-pink);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── GALLERY ── */
.gallery-section {
  background: linear-gradient(to bottom, var(--burgundy-deep), var(--burgundy));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(242, 196, 206, 0.2);
  background: var(--burgundy-mid);
  cursor: pointer;
  group: true;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  z-index: 2;
  pointer-events: none;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,196,206,0.12) 0%, transparent 50%, rgba(92,26,46,0.3) 100%);
  z-index: 3;
  transition: opacity 0.3s;
}

.gallery-item:hover::after { opacity: 0; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, var(--burgundy-mid), var(--burgundy-deep));
  transition: transform 0.4s ease;
  position: relative;
}

.gallery-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-placeholder img { transform: scale(1.04); }

.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }

.gallery-icon {
  font-size: 3rem;
  opacity: 0.4;
  filter: sepia(1) saturate(3) hue-rotate(300deg);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(58,13,28,0.95), transparent);
  padding: 32px 20px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 4;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--pink-pastel);
  margin-bottom: 4px;
}

.gallery-caption p {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: var(--pink-dim);
  letter-spacing: 2px;
}

.gallery-vhs-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  color: var(--pink-pastel);
  background: rgba(58, 13, 28, 0.7);
  padding: 2px 8px;
  letter-spacing: 2px;
  z-index: 4;
  border-left: 2px solid var(--pink-pastel);
}

/* ── ABOUT ── */
.about-section {
  background: var(--burgundy-deep);
  border-top: 1px solid rgba(242, 196, 206, 0.1);
  border-bottom: 1px solid rgba(242, 196, 206, 0.1);
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--pink-light);
  opacity: 0.85;
  margin-bottom: 20px;
}

.about-inner p:last-child { margin-bottom: 0; }

.about-quote {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--pink-pastel);
  text-align: center;
  letter-spacing: 2px;
  padding: 40px 0;
  position: relative;
  text-shadow: 0 0 20px var(--glow-pink);
}

.about-quote::before,
.about-quote::after {
  content: '◈';
  color: var(--pink-dim);
  opacity: 0.5;
  font-size: 1.2rem;
  display: block;
  margin: 12px auto;
}

/* ── ABOUT SPLIT LAYOUT ── */
.about-split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* photo column */
.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(242, 196, 206, 0.2);
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, var(--burgundy-mid), var(--burgundy-deep));
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom, transparent, transparent 3px,
    rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 1;
}

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

.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 2;
}

.about-photo-icon {
  font-size: 4rem;
  opacity: 0.25;
  filter: sepia(1) saturate(3) hue-rotate(300deg);
}

.about-photo-label {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--pink-dim);
  text-transform: uppercase;
  opacity: 0.45;
}

.about-photo-tag {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--pink-pastel);
  background: rgba(58, 13, 28, 0.85);
  padding: 6px 14px;
  border-top: 1px solid rgba(242, 196, 206, 0.2);
  text-align: center;
  text-transform: uppercase;
  z-index: 3;
}

/* text column */
.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--pink-light);
  opacity: 0.85;
  margin-bottom: 20px;
}

.about-roles {
  font-family: 'Great Vibes', cursive !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  color: var(--pink-pastel) !important;
  opacity: 1 !important;
  text-shadow: 0 0 18px var(--glow-pink);
  margin-bottom: 28px !important;
  line-height: 1.2 !important;
}

.about-quote-inline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--pink-pastel);
  line-height: 1.8;
  padding: 22px 24px;
  border-left: 2px solid var(--pink-pastel);
  background: rgba(242, 196, 206, 0.05);
  margin-top: 8px;
  text-shadow: 0 0 12px var(--glow-pink);
}

/* ── PROCESS ── */
.process-section {
  background: linear-gradient(to bottom, var(--burgundy), var(--burgundy-deep));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-card {
  border: 1px solid rgba(242, 196, 206, 0.18);
  padding: 32px 24px;
  position: relative;
  background: rgba(58, 13, 28, 0.4);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.process-card:hover {
  border-color: rgba(242, 196, 206, 0.5);
  box-shadow: 0 0 24px rgba(242, 196, 206, 0.1);
}

.process-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px;
  width: 40px;
  height: 2px;
  background: var(--pink-pastel);
  box-shadow: 0 0 8px var(--glow-pink);
}

.process-num {
  font-family: 'VT323', monospace;
  font-size: 2.5rem;
  color: var(--pink-dim);
  opacity: 0.4;
  display: block;
  margin-bottom: 12px;
}

.process-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--pink-pastel);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--pink-light);
  line-height: 1.7;
  opacity: 0.75;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--burgundy-mid), var(--burgundy-deep));
  padding: 80px 40px;
  text-align: center;
  border-top: 1px solid rgba(242, 196, 206, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to right,
    transparent,
    transparent 80px,
    rgba(242, 196, 206, 0.03) 80px,
    rgba(242, 196, 206, 0.03) 81px
  );
}

.cta-strip h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--pink-pastel);
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-shadow: 0 0 30px var(--glow-pink);
}

.cta-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--pink-light);
  opacity: 0.8;
  margin-bottom: 36px;
}

/* ── FOOTER ── */
footer {
  background: var(--burgundy-deep);
  border-top: 1px solid rgba(242, 196, 206, 0.12);
  padding: 40px;
  text-align: center;
}

.footer-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 2.6rem;
  color: var(--pink-pastel);
  letter-spacing: 4px;
  text-shadow: 0 0 20px var(--glow-pink);
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--pink-dim);
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 28px;
}

.footer-links a {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--pink-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--pink-pastel); }

.footer-copy {
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--pink-dim);
  opacity: 0.4;
}

.footer-static {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--pink-dim);
  opacity: 0.3;
  margin-top: 8px;
}

/* ── CUSTOM ORDERS PAGE ── */
.orders-hero {
  padding: 100px 40px 60px;
  text-align: center;
  background: linear-gradient(to bottom, var(--burgundy-deep), var(--burgundy));
  position: relative;
  overflow: hidden;
}

.orders-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(125, 37, 64, 0.35) 0%, transparent 70%);
}

.orders-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--pink-light);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.8;
}

/* ── FORM ── */
.form-section {
  background: var(--burgundy-deep);
  padding: 80px 40px;
}

.form-wrap {
  max-width: 740px;
  margin: 0 auto;
  background: rgba(58, 13, 28, 0.6);
  border: 1px solid rgba(242, 196, 206, 0.2);
  padding: 56px 48px;
  position: relative;
}

.form-wrap::before {
  content: '[ INQUIRY FORM ]';
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--pink-dim);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy-deep);
  padding: 0 16px;
  opacity: 0.7;
}

.form-wrap::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(242, 196, 206, 0.06);
  pointer-events: none;
}

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

@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 40px 24px; }
  nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  section { padding: 60px 20px; }
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--pink-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(58, 13, 28, 0.8);
  border: 1px solid rgba(242, 196, 206, 0.25);
  border-top-color: rgba(242, 196, 206, 0.4);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(242, 196, 206, 0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(242, 196, 206, 0.6);
  box-shadow: 0 0 16px rgba(242, 196, 206, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-group select option {
  background: var(--burgundy-deep);
  color: var(--cream);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '▼';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink-dim);
  font-size: 0.7rem;
  pointer-events: none;
}

.form-note {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--pink-dim);
  opacity: 0.6;
  margin-top: 6px;
}

.form-submit {
  text-align: center;
  margin-top: 12px;
}

.btn-submit {
  font-size: 1.4rem;
  padding: 16px 56px;
  letter-spacing: 5px;
}

.form-footer-note {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--pink-dim);
  opacity: 0.5;
  margin-top: 20px;
  text-align: center;
}

/* success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

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

.form-success h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--pink-pastel);
  text-shadow: 0 0 20px var(--glow-pink);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--pink-light);
  opacity: 0.8;
}

.form-success .vhs-confirm {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--pink-dim);
  margin-top: 20px;
  display: block;
  animation: blink 1.5s step-end infinite;
}

/* ── FAQ / DETAILS ── */
.details-section {
  background: var(--burgundy);
  padding: 80px 40px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-card {
  padding: 28px 24px;
  border: 1px solid rgba(242, 196, 206, 0.15);
  background: rgba(58, 13, 28, 0.3);
}

.detail-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--pink-pastel);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-card h4::before {
  content: '◆';
  color: var(--pink-dim);
  font-size: 0.6rem;
  opacity: 0.7;
}

.detail-card p {
  font-size: 0.95rem;
  color: var(--pink-light);
  line-height: 1.7;
  opacity: 0.75;
}

/* ── GLITCH UTILITY ── */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: rgba(100, 255, 220, 0.3);
  animation: glitch1 6s infinite;
}

.glitch::after {
  color: rgba(255, 80, 120, 0.3);
  animation: glitch2 6s infinite;
}

@keyframes glitch1 {
  0%, 90%, 100% { clip-path: inset(0 0 100% 0); transform: none; }
  92% { clip-path: inset(20% 0 60% 0); transform: translateX(-2px); }
  93% { clip-path: inset(65% 0 10% 0); transform: translateX(2px); }
  94% { clip-path: inset(40% 0 40% 0); transform: translateX(-1px); }
}

@keyframes glitch2 {
  0%, 90%, 100% { clip-path: inset(0 0 100% 0); transform: none; }
  92% { clip-path: inset(60% 0 20% 0); transform: translateX(2px); }
  93% { clip-path: inset(10% 0 70% 0); transform: translateX(-2px); }
  94% { clip-path: inset(45% 0 30% 0); transform: translateX(1px); }
}

/* ── TRACKING DISTORTION ── */
.tracking-line {
  position: fixed;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(242, 196, 206, 0.15) 20%,
    rgba(242, 196, 206, 0.35) 50%,
    rgba(242, 196, 206, 0.15) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 9996;
  animation: trackingline 12s linear infinite;
  top: -10px;
}

@keyframes trackingline {
  0%   { top: -10px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 110vh; opacity: 0; }
}

/* ── GALLERY CARD WITH TEXT ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(242, 196, 206, 0.15);
  background: rgba(58, 13, 28, 0.35);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.gallery-card:hover {
  border-color: rgba(242, 196, 206, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.gallery-card .gallery-item {
  aspect-ratio: 1;
  flex-shrink: 0;
  border: none;
}

.gallery-text {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(242, 196, 206, 0.12);
}

.gallery-text h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 1.7rem;
  color: var(--pink-pastel);
  margin-bottom: 4px;
  text-shadow: 0 0 12px var(--glow-pink);
  line-height: 1.2;
}

.gallery-meta {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--pink-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.75;
}

.gallery-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--pink-light);
  line-height: 1.7;
  opacity: 0.8;
}

/* ── PIECE DETAIL PAGE ── */
.piece-hero {
  padding: 80px 40px 60px;
  background: linear-gradient(to bottom, var(--burgundy-deep), var(--burgundy));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.piece-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(125,37,64,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.piece-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--pink-dim);
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 36px;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.piece-back:hover { color: var(--pink-pastel); }
.piece-back::before { content: '←'; }

.piece-tag {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: var(--pink-dim);
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.piece-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--pink-pastel);
  text-shadow: 0 0 40px var(--glow-pink);
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.piece-materials {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 5px;
  color: var(--pink-dim);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ── MAIN FEATURE SECTION ── */
.piece-feature {
  padding: 80px 40px;
  background: var(--burgundy);
}

.piece-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.piece-feature-inner--wide {
  max-width: 1400px;
  grid-template-columns: 3fr 2fr;
}

@media (max-width: 860px) {
  .piece-feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .piece-hero { padding: 60px 20px 40px; }
}

/* ── 3-photo collage ── */
.piece-collage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 560px;
}

@media (max-width: 500px) {
  .piece-collage { height: 320px; }
}

.piece-collage-photo {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}

.tv-frame-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}

.tv-frame-wrap .piece-collage-photo {
  flex: 1;
  width: 100%;
  min-height: 0;
}

.tv-stand { display: none; }
.tv-stand-neck { display: none; }
.tv-stand-base { display: none; }

/* full-bleed photography collage variant */
.piece-collage--cover {
  gap: 4px;
  height: 700px;
}
.piece-collage--cover .piece-collage-photo {
  background: var(--burgundy);
}
.piece-collage--cover .piece-collage-photo img {
  object-fit: contain;
  object-position: center;
}

/* first tv-frame spans both rows on the left */
.tv-frame-wrap:first-child {
  grid-row: 1 / 3;
}


.piece-collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.piece-collage-photo.spinning img {
  animation: photo-spin 12s linear infinite;
  transform-origin: center center;
}

.piece-collage-photo.spinning:hover img {
  animation-play-state: paused;
}

@keyframes photo-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.piece-collage-photo.spinning-h img {
  animation: photo-spin-h 12s linear infinite;
  transform-origin: center center;
}
.piece-collage-photo.spinning-h:hover img { animation-play-state: paused; }

@keyframes photo-spin-h {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

.piece-collage-photo.zoom-in img {
  animation: photo-zoom-in 6s ease-in-out infinite alternate;
  transform-origin: center center;
}

.piece-collage-photo.zoom-in:hover img {
  animation-play-state: paused;
}

@keyframes photo-zoom-in {
  from { transform: scale(1); }
  to   { transform: scale(1.5); }
}

.piece-collage-photo.bounce img {
  animation: photo-bounce 0.7s ease-in-out infinite alternate;
}
.piece-collage-photo.bounce:hover img { animation-play-state: paused; }

@keyframes photo-bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-18px); }
}

.piece-collage-photo:hover img { transform: scale(1.04); }

.piece-collage-photo .placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  opacity: 0.28;
  filter: sepia(1) saturate(3) hue-rotate(300deg);
  z-index: 2;
  pointer-events: none;
}

.piece-collage-photo:first-child .placeholder-icon { font-size: 5rem; }

.piece-collage-photo .placeholder-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: 'VT323', monospace;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--pink-dim);
  opacity: 0.4;
  z-index: 2;
  text-transform: uppercase;
  pointer-events: none;
}

.piece-image-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'VT323', monospace;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--pink-pastel);
  background: rgba(58,13,28,0.8);
  padding: 2px 8px;
  border-left: 2px solid var(--pink-pastel);
  z-index: 3;
}

.piece-info h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--pink-pastel);
  text-shadow: 0 0 20px var(--glow-pink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.piece-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--pink-light);
  opacity: 0.85;
  margin-bottom: 18px;
}

.piece-info p:last-of-type { margin-bottom: 28px; }

.piece-specs {
  border-top: 1px solid rgba(242,196,206,0.15);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.piece-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.piece-spec-label {
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--pink-dim);
  text-transform: uppercase;
  opacity: 0.65;
}

.piece-spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--pink-light);
}

/* ── SHOWCASE GRID ── */
.piece-showcase {
  padding: 80px 40px;
  background: linear-gradient(to bottom, var(--burgundy), var(--burgundy-deep));
}

.piece-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .piece-showcase-grid { grid-template-columns: 1fr; }
}

.showcase-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(242,196,206,0.15);
  overflow: hidden;
  background: rgba(58,13,28,0.3);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.showcase-item:hover {
  border-color: rgba(242,196,206,0.4);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.showcase-image {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--burgundy-mid), var(--burgundy-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.showcase-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom, transparent, transparent 3px,
    rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
}

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

.showcase-image .placeholder-icon {
  font-size: 2.8rem;
  opacity: 0.3;
  filter: sepia(1) saturate(3) hue-rotate(300deg);
}

.showcase-image .placeholder-label {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--pink-dim);
  opacity: 0.4;
  text-transform: uppercase;
}

.showcase-caption {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(242,196,206,0.1);
}

.showcase-caption h4 {
  font-family: 'Great Vibes', cursive;
  font-size: 1.4rem;
  color: var(--pink-pastel);
  margin-bottom: 4px;
  line-height: 1.2;
}

.showcase-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--pink-light);
  opacity: 0.7;
  line-height: 1.6;
}

/* ── PIECE PAGE CTA ── */
.piece-cta {
  padding: 80px 40px;
  background: var(--burgundy);
  text-align: center;
  border-top: 1px solid rgba(242,196,206,0.1);
}

.piece-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--pink-light);
  opacity: 0.75;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.piece-nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   VHS TV
   ════════════════════════════════════════ */

.tv-container {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0 36px;
  width: 100%;
}

.tv {
  position: relative;
  width: 780px;
  max-width: min(96vw, 780px);
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.75));
}

/* ── antennas ── */
.tv-antenna {
  position: absolute;
  bottom: calc(100% - 10px);
  width: 6px;
  height: clamp(90px, 16vw, 160px);
  background: linear-gradient(to top, #2a1018, #4a2030, #3a1828);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom center;
  z-index: 0;
}
.tv-antenna--left  { left: 28%;  transform: rotate(-22deg); }
.tv-antenna--right { right: 28%; transform: rotate(22deg); }

/* ── body ── */
.tv-body {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(160deg, #3e1a26 0%, #200e14 45%, #2e1320 100%);
  border-radius: 22px 22px 14px 14px;
  padding: 22px 18px 22px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow:
    inset 0  3px  0 rgba(255,180,200,0.1),
    inset 0 -3px  0 rgba(0,0,0,0.5),
    inset  3px 0  0 rgba(255,180,200,0.06),
    inset -3px 0  0 rgba(0,0,0,0.4),
    0 0 0 4px #12060c,
    0 0 0 6px #1e0c12;
}

/* ── screen bezel ── */
.tv-screen-wrap {
  flex: 1;
  background: #080307;
  border-radius: 10px;
  padding: 9px;
  box-shadow:
    inset 0 3px 12px rgba(0,0,0,0.95),
    inset 0 0 28px rgba(0,0,0,0.7),
    0 0 0 2px #0e0509;
}

/* ── screen ── */
.tv-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #050108;
  border-radius: 4px;
  overflow: hidden;

  /* off by default — turned on by JS */
  --screen-clip: inset(50% 0 50% 0);
  clip-path: var(--screen-clip);
}

/* glow bleed around screen when on */
.tv-screen.is-on {
  box-shadow: 0 0 28px rgba(242,196,206,0.18), 0 0 8px rgba(242,196,206,0.12);
  animation: crt-power-on 1.1s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}

@keyframes crt-power-on {
  0%   { clip-path: inset(50% 0 50% 0); filter: brightness(0); }
  6%   { clip-path: inset(49.4% 0 49.4% 0); filter: brightness(18) saturate(0); }
  18%  { clip-path: inset(38% 0 38% 0);  filter: brightness(5) saturate(0.2); }
  45%  { clip-path: inset(12% 0 12% 0);  filter: brightness(1.8); }
  70%  { clip-path: inset(2% 0 2% 0);    filter: brightness(1.2); }
  100% { clip-path: inset(0% 0 0% 0);    filter: brightness(1); }
}

/* ── static noise ── */
.tv-static {
  position: absolute;
  inset: 0;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: static-shift 0.1s steps(1) infinite;
  mix-blend-mode: screen;
  transition: opacity 0.6s ease 1.4s;
  z-index: 1;
}

.tv-screen.is-on .tv-static {
  opacity: 0;
}

@keyframes static-shift {
  0%   { background-position:   0px   0px; }
  10%  { background-position: -40px -20px; }
  20%  { background-position:  30px  50px; }
  30%  { background-position: -60px  10px; }
  40%  { background-position:  20px -50px; }
  50%  { background-position: -30px  30px; }
  60%  { background-position:  55px -25px; }
  70%  { background-position: -15px  45px; }
  80%  { background-position:  35px  15px; }
  90%  { background-position: -50px -35px; }
}

/* ── screen content ── */
.tv-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 14px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 48%,
      rgba(92,26,46,0.55) 0%,
      rgba(10,3,8,0.9) 100%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease 1.6s;
}

.tv-screen.is-on .tv-content {
  opacity: 1;
}

/* HUD rows */
.tv-hud-top,
.tv-hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'VT323', monospace;
  font-size: clamp(0.6rem, 1.5vw, 0.82rem);
  letter-spacing: 2px;
  color: var(--pink-dim);
  opacity: 0.7;
}

.tv-channel   { color: var(--pink-pastel); opacity: 0.9; }
.tv-play-hud  { color: var(--pink-pastel); animation: blink 1.3s step-end infinite; }
.tv-time      { letter-spacing: 3px; }
.tv-tape-id   { opacity: 0.55; }
.tv-rec       { color: #ff7070; animation: blink 1.8s step-end infinite; }

/* brand name in center */
.tv-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
}

.tv-brand-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.2rem, 10vw, 6.8rem);
  color: var(--pink-pastel);
  line-height: 1;
  text-shadow:
    0 0 20px rgba(242,196,206,0.9),
    0 0 50px rgba(242,196,206,0.5),
    0 0 90px rgba(242,196,206,0.25);
  animation: tv-brand-flicker 8s ease-in-out infinite 2.2s;
}

@keyframes tv-brand-flicker {
  0%, 88%, 100% { opacity: 1; text-shadow: 0 0 20px rgba(242,196,206,0.9), 0 0 50px rgba(242,196,206,0.5); }
  89%  { opacity: 0.4; text-shadow: none; }
  90%  { opacity: 1;   text-shadow: 0 0 30px rgba(242,196,206,1), 0 0 60px rgba(242,196,206,0.7); }
  91%  { opacity: 0.6; text-shadow: none; }
  92%  { opacity: 1;   text-shadow: 0 0 20px rgba(242,196,206,0.9), 0 0 50px rgba(242,196,206,0.5); }
}

.tv-brand-sub {
  font-family: 'VT323', monospace;
  font-size: clamp(0.6rem, 1.8vw, 0.88rem);
  letter-spacing: 4px;
  color: var(--pink-dim);
  text-transform: uppercase;
  opacity: 0.65;
}

/* ── Spinning rings inside TV ── */
.tv-rings {
  display: flex;
  gap: clamp(8px, 2vw, 16px);
  justify-content: center;
  align-items: center;
  margin-top: 14px;
}

.tv-ring-item {
  width: clamp(56px, 9vw, 90px);
  height: clamp(56px, 9vw, 90px);
  position: relative;
  flex-shrink: 0;
}

.tv-ring-item {
  perspective: 600px;
}

.tv-ring-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: tv-ring-spin-h 3s linear infinite;
}

.tv-ring-item:nth-child(2) img { animation-duration: 4s; }
.tv-ring-item:nth-child(3) img { animation-duration: 2.5s; }

.tv-ring-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: rgba(242, 196, 206, 0.3);
}

@keyframes tv-ring-spin-h {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* ── CSS heart inside TV ── */
.tv-heart {
  width: 32px;
  height: 28px;
  position: relative;
  margin-top: 10px;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 8px rgba(242,196,206,0.9)) drop-shadow(0 0 20px rgba(242,196,206,0.5));
  animation: heart-pulse 2.4s ease-in-out infinite 2.5s;
}

.tv-heart::before,
.tv-heart::after {
  content: '';
  position: absolute;
  background: var(--pink-pastel);
  border-radius: 50%;
}

.tv-heart::before {
  width: 32px;
  height: 32px;
  top: -16px;
  left: 0;
}

.tv-heart::after {
  width: 32px;
  height: 32px;
  top: 0;
  left: 16px;
}

.tv-heart-square {
  width: 32px;
  height: 32px;
  background: var(--pink-pastel);
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes heart-pulse {
  0%, 100% { transform: rotate(-45deg) scale(1); filter: drop-shadow(0 0 8px rgba(242,196,206,0.9)) drop-shadow(0 0 20px rgba(242,196,206,0.5)); }
  15%       { transform: rotate(-45deg) scale(1.18); filter: drop-shadow(0 0 14px rgba(242,196,206,1)) drop-shadow(0 0 30px rgba(242,196,206,0.7)); }
  30%       { transform: rotate(-45deg) scale(1); }
  45%       { transform: rotate(-45deg) scale(1.1); filter: drop-shadow(0 0 10px rgba(242,196,206,0.9)) drop-shadow(0 0 22px rgba(242,196,206,0.5)); }
  60%       { transform: rotate(-45deg) scale(1); }
}

/* ── scanlines over screen ── */
.tv-scanlines-over {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.22) 2px,
    rgba(0,0,0,0.22) 4px
  );
  pointer-events: none;
  z-index: 3;
}

/* ── lens glare ── */
.tv-glare {
  position: absolute;
  top: 6%;
  left: 6%;
  width: 38%;
  height: 28%;
  background: radial-gradient(ellipse at 30% 30%,
    rgba(255,240,245,0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
}

/* ── CRT barrel-curve illusion ── */
.tv-crt-curve {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.55);
  pointer-events: none;
  z-index: 4;
}

/* ── controls panel ── */
.tv-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  width: 56px;
}

/* knobs */
.tv-knob {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #4a1e2c, #1a0a10);
  border: 2px solid #0e0609;
  box-shadow:
    2px 3px 6px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,170,190,0.14);
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.15s;
}

.tv-knob::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 9px;
  background: rgba(242,196,206,0.45);
  border-radius: 1px;
}

.tv-knob--power {
  background: radial-gradient(circle at 35% 32%, #6a2038, #3a0e20);
  cursor: pointer;
}

.tv-knob--power::before {
  content: '⏻';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(242,196,206,0.5);
  line-height: 1;
}

.tv-knob--power::after { display: none; }

.tv-knob--power.is-on {
  box-shadow:
    2px 3px 6px rgba(0,0,0,0.7),
    0 0 10px rgba(242,196,206,0.4),
    inset 0 0 8px rgba(242,196,206,0.2);
}

.tv-knob--small {
  width: 24px;
  height: 24px;
}

/* speaker grille */
.tv-speaker {
  width: 40px;
  padding: 8px 6px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  border: 1px solid rgba(255,170,190,0.08);
}

.tv-speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.tv-speaker-grid span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(242,196,206,0.18);
}

/* ── feet ── */
.tv-feet {
  display: flex;
  justify-content: space-between;
  padding: 0 48px;
}

.tv-foot {
  width: 56px;
  height: 13px;
  background: linear-gradient(to bottom, #1e0c14, #100609);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.6);
}

/* ── power-on knob flash ── */
@keyframes knob-press {
  0%   { box-shadow: 2px 3px 6px rgba(0,0,0,0.7); }
  40%  { box-shadow: 2px 3px 6px rgba(0,0,0,0.7), 0 0 18px rgba(242,196,206,0.7), inset 0 0 10px rgba(242,196,206,0.3); }
  100% { box-shadow: 2px 3px 6px rgba(0,0,0,0.7), 0 0 10px rgba(242,196,206,0.4), inset 0 0 8px rgba(242,196,206,0.2); }
}

/* ── responsive ── */
@media (max-width: 500px) {
  .tv-body { padding: 14px 12px 14px 14px; gap: 12px; }
  .tv-controls { width: 42px; gap: 10px; }
  .tv-knob { width: 26px; height: 26px; }
  .tv-knob--small { width: 18px; height: 18px; }
  .tv-feet { padding: 0 28px; }
  .tv-foot { width: 40px; }
}

/* ── SPARKLE EFFECT (SBJ-005) ── */
.sparkle-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.sparkle-overlay .spark {
  position: absolute;
  width: 6px;
  height: 6px;
  opacity: 0;
  animation: spark-twinkle 2.4s ease-in-out infinite;
}

.sparkle-overlay .spark::before,
.sparkle-overlay .spark::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
}

.sparkle-overlay .spark::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sparkle-overlay .spark::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

@keyframes spark-twinkle {
  0%   { opacity: 0; transform: scale(0.4); }
  30%  { opacity: 1; transform: scale(1.2); }
  60%  { opacity: 0.8; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(0.4); }
}

.sparkle-overlay .spark:nth-child(1)  { top: 12%; left: 20%; animation-delay: 0s;    animation-duration: 2.2s; }
.sparkle-overlay .spark:nth-child(2)  { top: 25%; left: 72%; animation-delay: 0.4s;  animation-duration: 1.8s; }
.sparkle-overlay .spark:nth-child(3)  { top: 55%; left: 15%; animation-delay: 0.8s;  animation-duration: 2.5s; }
.sparkle-overlay .spark:nth-child(4)  { top: 70%; left: 60%; animation-delay: 0.2s;  animation-duration: 2.0s; }
.sparkle-overlay .spark:nth-child(5)  { top: 40%; left: 85%; animation-delay: 1.0s;  animation-duration: 1.6s; }
.sparkle-overlay .spark:nth-child(6)  { top: 80%; left: 35%; animation-delay: 0.6s;  animation-duration: 2.3s; }
.sparkle-overlay .spark:nth-child(7)  { top: 18%; left: 50%; animation-delay: 1.4s;  animation-duration: 1.9s; }
.sparkle-overlay .spark:nth-child(8)  { top: 62%; left: 80%; animation-delay: 0.9s;  animation-duration: 2.1s; }
.sparkle-overlay .spark:nth-child(9)  { top: 88%; left: 10%; animation-delay: 1.7s;  animation-duration: 2.4s; }
.sparkle-overlay .spark:nth-child(10) { top: 35%; left: 42%; animation-delay: 1.2s;  animation-duration: 1.7s; }

/* ── TV GLITCH EFFECT ── */
/* glitch runs on the container so it doesn't conflict with bounce/spin on the img */
.piece-collage-photo.glitch-tv {
  animation: tv-glitch 5s steps(1) infinite;
}

.piece-collage-photo.glitch-tv:hover {
  animation-play-state: paused;
}

@keyframes tv-glitch {
  0%, 87%, 100% {
    transform: none;
    filter: none;
  }
  88% {
    transform: translateX(-7px) skewX(-2deg);
    filter: hue-rotate(90deg) saturate(3) brightness(1.4);
    clip-path: inset(8% 0 78% 0);
  }
  89% {
    transform: translateX(6px);
    filter: hue-rotate(-50deg) saturate(2.5);
    clip-path: inset(60% 0 5% 0);
  }
  90% {
    transform: translateX(-4px) skewX(1deg);
    filter: brightness(2.2);
    clip-path: inset(30% 0 42% 0);
  }
  91% {
    transform: translateX(9px);
    filter: hue-rotate(150deg) saturate(5) brightness(0.6);
    clip-path: inset(48% 0 22% 0);
  }
  92% {
    transform: translateX(-2px);
    filter: none;
    clip-path: inset(72% 0 2% 0);
  }
  93% {
    transform: none;
    filter: none;
    clip-path: none;
  }
}

/* ── SEEN ON ── */
.seen-on-section {
  padding: 80px 40px;
  background: var(--burgundy-deep);
}

.seen-on-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .seen-on-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .seen-on-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

.seen-on-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.seen-on-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--burgundy-mid), var(--burgundy-deep));
}

.seen-on-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: sepia(0.15) contrast(1.05);
}

.seen-on-card:hover .seen-on-photo img {
  transform: scale(1.04);
}

.seen-on-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}

.seen-on-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--pink-dim);
  opacity: 0.4;
}

.seen-on-info {
  text-align: center;
}

.seen-on-name {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--pink-pastel);
  line-height: 1.2;
}

.seen-on-piece {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--pink-dim);
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

/* ─────────────────────────────────────────────
   MOBILE RESPONSIVENESS
───────────────────────────────────────────── */

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {

  /* Nav — tighter, no overflow */
  nav {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-brand { font-size: 1.6rem; }
  .nav-links { gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a { font-size: 1rem; letter-spacing: 1px; }

  /* Hero */
  .hero { padding: 60px 20px 50px; min-height: auto; }
  .hero-subtitle {
    font-size: clamp(0.95rem, 3.5vw, 1.2rem);
    padding: 0 10px;
  }
  .hero-tagline { font-size: 0.9rem; letter-spacing: 3px; }
  .hero-divider { margin: 20px auto; }

  /* Buttons side by side → stack if needed */
  .hero .btn { padding: 12px 28px; font-size: 1.1rem; }

  /* Sections */
  section { padding: 60px 20px; }
  .seen-on-section { padding: 60px 20px; }

  /* Section headers */
  .section-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    padding: 0;
  }

  /* About */
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; width: 100%; }

  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* CTA strip */
  .cta-strip { padding: 60px 20px; }

  /* Piece pages */
  .piece-feature-inner,
  .piece-feature-inner--wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .piece-hero { padding: 60px 20px 36px; }
  .piece-collage { height: 400px; }
  .piece-collage--cover { height: 420px; }

  /* Orders page hero */
  .orders-hero { padding: 60px 20px 40px; }
  .orders-intro { font-size: 1rem; }

  /* Details grid */
  .details-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Form */
  .form-wrap { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {

  /* Nav — compact single row */
  nav { padding: 10px 16px; gap: 8px; }
  .nav-brand { font-size: 1.4rem; }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 0.9rem; letter-spacing: 0; }

  /* VHS HUD — hide on tiny screens to save space */
  .vhs-hud { display: none; }

  /* Hero */
  .hero { padding: 48px 16px 40px; }
  .hero-subtitle { font-size: 1rem; letter-spacing: 0; padding: 0; }
  .hero-tagline { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 28px; }
  .btn { padding: 12px 22px; font-size: 1rem; letter-spacing: 3px; }

  /* Sections */
  section { padding: 48px 16px; }
  .seen-on-section { padding: 48px 16px; }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }
  .gallery-text h3 { font-size: 1.05rem; letter-spacing: 1px; }

  /* Seen On — single column on very small phones */
  .seen-on-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .seen-on-name { font-size: 1.2rem; }
  .seen-on-piece { font-size: 0.75rem; letter-spacing: 1px; }

  /* About */
  .about-photo-wrap { max-width: 100%; }
  .about-roles { font-size: 1rem; }

  /* Process — single column */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-card { padding: 24px 20px; }

  /* CTA strip */
  .cta-strip { padding: 48px 16px; }
  .cta-strip h2 { font-size: clamp(1.6rem, 5vw, 2rem); }

  /* Piece pages */
  .piece-title { font-size: clamp(2rem, 7vw, 3rem); }
  .piece-collage { height: 280px; gap: 8px; }
  .piece-collage--cover { height: 320px; }
  .piece-back { font-size: 0.8rem; letter-spacing: 2px; }
  .piece-cta { padding: 48px 16px; }

  /* Piece nav buttons — stack vertically */
  .piece-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Orders page */
  .orders-hero { padding: 48px 16px 36px; }
  .details-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-wrap { padding: 32px 16px; }
  .form-submit { flex-direction: column; align-items: stretch; gap: 12px; }

  /* Footer */
  footer { padding: 40px 16px 28px; }
  .footer-links { gap: 14px; flex-wrap: wrap; }
  .footer-brand { font-size: 1.8rem; }
}
