/* ============================================================
   ELECTED OFFICIAL CARDS — Premium CSS
   Palette: Black / Gold / Metallic Silver
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Colors */
  --color-bg:        #000000;
  --color-surface:   #0a0a0a;
  --color-surface-2: #111111;
  --color-surface-3: #161616;
  --color-border:    #2a2207;
  --color-border-gold: rgba(212, 175, 55, 0.25);

  /* Gold palette */
  --gold-bright:  #F5E080;
  --gold-primary: #D4AF37;
  --gold-mid:     #C9A227;
  --gold-deep:    #A08520;
  --gold-muted:   #6B5A20;
  --gold-faint:   rgba(212, 175, 55, 0.08);

  /* Silver palette */
  --silver-bright: #E8E8E8;
  --silver-mid:    #C0C0C0;
  --silver-dark:   #8A8A8A;
  --silver-faint:  rgba(192, 192, 192, 0.12);

  /* Text */
  --color-text:       #E8E0CC;
  --color-text-muted: #8A7A50;
  --color-text-faint: #3D3320;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-card: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out:           cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:            cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:    150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition:         180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium:  300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow:    500ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-gold-sm:  0 2px 12px rgba(212, 175, 55, 0.15);
  --shadow-gold-md:  0 6px 32px rgba(212, 175, 55, 0.22);
  --shadow-gold-lg:  0 16px 60px rgba(212, 175, 55, 0.18);
  --shadow-gold-glow: 0 0 40px rgba(212, 175, 55, 0.3), 0 0 80px rgba(212, 175, 55, 0.1);
  --shadow-card:     0 20px 80px rgba(0,0,0,0.8), 0 6px 24px rgba(0,0,0,0.6);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Switzer', 'Helvetica Neue', sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-bright);
}

:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- LAYOUT UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--color-border-gold);
  transition: box-shadow var(--transition-medium), border-color var(--transition-medium);
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.8), 0 1px 0 rgba(212,175,55,0.15);
  border-bottom-color: rgba(212, 175, 55, 0.35);
}

.nav-container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4) clamp(var(--space-6), 5vw, var(--space-16));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
  transition: filter var(--transition), transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 2px 12px rgba(212,175,55,0.55)) brightness(1.08);
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-medium);
}

.nav-link:hover { color: var(--gold-primary); }
.nav-link:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: #000;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-10);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
    z-index: 99;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    font-size: var(--text-xl);
    letter-spacing: 0.15em;
    text-align: center;
  }
  .nav-link::after { left: 50%; transform: translateX(-50%); }
  .nav-link:hover::after { width: 60%; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.btn:active { transform: translateY(1px); }

/* Gold CTA */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #F5E080 45%, #D4AF37 70%, #A08520 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  border: 1px solid transparent;
  background-size: 200% 100%;
  background-position: 0% 0;
}

.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: 0 6px 32px rgba(212,175,55,0.55), 0 2px 12px rgba(212,175,55,0.3);
  transform: translateY(-2px);
  color: #000;
}

/* Gold outline */
.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 0 transparent;
}

.btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
  transform: translateY(-2px);
}

/* Sold Out Button */
.btn-sold-out {
  background: rgba(255,255,255,0.04);
  color: var(--silver-dark);
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: not-allowed;
  opacity: 0.65;
  pointer-events: none;
}

/* ============================================================
   ANIMATIONS / SCROLL REVEALS
   ============================================================ */
.fade-in {
  opacity: 1;
}

.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 75%;
  }

  .fade-in-up {
    opacity: 0;
    animation: revealUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

/* Delays for stagger — using animation-delay with scroll-driven requires JS fallback */
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

@keyframes revealFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Page load hero animations */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.12); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

@keyframes stampIn {
  from { opacity: 0; transform: scale(1.4) rotate(-15deg); }
  to   { opacity: 0.92; transform: scale(1) rotate(-18deg); }
}

@keyframes holoShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(var(--space-20), 12vw, var(--space-32));
  padding-bottom: clamp(var(--space-8), 4vw, var(--space-12));
  padding-inline: var(--space-6);
  overflow: hidden;
  background: #000;
}

/* Background orbs / lights */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.7) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(212,175,55,0.025) 60px,
      rgba(212,175,55,0.025) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(212,175,55,0.025) 60px,
      rgba(212,175,55,0.025) 61px
    );
}

.gold-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbPulse 5s ease-in-out infinite;
}

.gold-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.gold-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,192,192,0.1) 0%, transparent 70%);
  top: 20%; right: -80px;
  animation-delay: 2s;
}

.gold-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  bottom: -80px; left: 30%;
  animation-delay: 3.5s;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  text-align: center;
  max-width: 900px;
  width: 100%;
}

/* Hero logo */
.hero-logo-container {
  width: min(480px, 80vw);
  animation: heroLogoIn 1s var(--ease-out) 0.1s both;
  transition: filter var(--transition-slow), transform var(--transition-slow);
  position: relative;
}

.hero-logo-container::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: orbPulse 4s ease-in-out infinite;
}

.hero-logo-container:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.5));
}

.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(212,175,55,0.35)) drop-shadow(0 0 80px rgba(212,175,55,0.15));
  transition: filter var(--transition-slow);
}

.hero-logo-container:hover .hero-logo-img {
  filter: drop-shadow(0 0 60px rgba(212,175,55,0.55)) drop-shadow(0 0 100px rgba(212,175,55,0.25)) brightness(1.05);
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  animation: heroFadeIn 1s var(--ease-out) 0.4s both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #F5E080 0%, #D4AF37 35%, #E8C84A 55%, #C9A227 75%, #F5E080 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--silver-mid);
  max-width: 58ch;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* Hero — logo + CTA only (no headline text) */
.hero-cta-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-4);
  animation: heroFadeIn 1s var(--ease-out) 0.5s both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-statement-section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
  background: linear-gradient(to bottom, #000 0%, #080600 50%, #000 100%);
  position: relative;
}

.brand-statement-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.brand-statement-inner {
  max-width: var(--content-narrow);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.gold-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.brand-statement-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-3);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.65;
}

/* ============================================================
   BUY CARDS SECTION
   ============================================================ */
.cards-section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  background: #000;
  position: relative;
  overflow: hidden;
}

.cards-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(var(--space-8), 4vw, var(--space-12));
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

/* ---- Flip Card ---- */
.flip-card {
  position: relative;
  width: min(260px, 85%);
  /* aspect ratio based on the real card images ~3:4 */
  aspect-ratio: 63 / 88;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 14px;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6);
  background: #000;
}

.flip-card-front img,
.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.flip-card-back {
  transform: rotateY(180deg);
}

/* Sold-out overlay sits on the front face */
.flip-card-front .sold-out-overlay {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* Counter-rotate the stamp so it reads correctly when the card is face-up.
   The front face itself is at rotateY(0) normally — no counter needed there.
   But when hovered, flip-card-inner rotates 180deg, so we need to
   counter-rotate the OVERLAY (not just the stamp) so it stays readable.
   Solution: move sold-out overlay OUTSIDE flip-card-inner so it is not
   affected by the 3D transform at all. We handle this in JS. */

/* Hide the overlay when the card is flipped (showing the back) */
.flip-card:hover ~ .card-sold-overlay,
.flip-card.flipped ~ .card-sold-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-sold-overlay {
  transition: opacity 0.3s ease;
}

/* Static stamp — always readable, positioned over the card wrapper */
.card-sold-overlay {
  position: absolute;
  inset: var(--space-6) var(--space-6) var(--space-10);
  border-radius: 14px;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

/* Flip hint label */
.flip-hint {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  white-space: nowrap;
  transition: color var(--transition);
  pointer-events: none;
}

.flip-card:hover .flip-hint { color: var(--gold-primary); }

/* Touch support */
@media (hover: none) {
  .flip-hint { display: block; }
}

/* ---- Card Showcase ---- */
.card-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-card);
  padding: var(--space-8);
  transition:
    border-color var(--transition-medium),
    box-shadow var(--transition-medium),
    transform var(--transition-medium);
}

.card-showcase:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-gold-md), var(--shadow-card);
  transform: translateY(-4px);
}

/* Card visual wrapper */
.card-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-6) var(--space-6) var(--space-10);
}

/* Sold out ribbon (corner) */
.sold-out-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #b91c1c;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-6);
  z-index: 20;
  border-radius: 0 var(--radius-card) 0 var(--radius-sm);
  box-shadow: 0 2px 10px rgba(185, 28, 28, 0.5);
}

.sold-out-ribbon--gold {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  box-shadow: 0 2px 10px rgba(127, 29, 29, 0.6);
}

/* ---- Trading Card Visual ---- */
.trading-card {
  position: relative;
  width: min(220px, 80%);
  aspect-ratio: 63/88;
  border-radius: 12px;
  cursor: default;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.trading-card:hover {
  transform: rotate(-2deg) scale(1.03);
}

.tc-border-outer {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #3A2F10 0%, #2A2008 30%, #1A1400 60%, #2A2008 80%, #3A2F10 100%);
  padding: 2px;
  box-shadow: var(--shadow-card), 0 0 30px rgba(0,0,0,0.8);
}

.tc-border-outer--gold {
  background: linear-gradient(135deg, #F5E080 0%, #D4AF37 25%, #A08520 50%, #D4AF37 75%, #F5E080 100%);
  animation: holoShift 4s ease infinite;
  background-size: 200% 200%;
}

.tc-inner {
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: #0A0800;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tc-inner--gold {
  background: linear-gradient(160deg, #100C00 0%, #1A1400 50%, #0D0A00 100%);
}

.tc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  background: linear-gradient(90deg, #1A1200 0%, #2A1E00 100%);
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.tc-header--gold {
  background: linear-gradient(90deg, #2A1E00 0%, #3A2800 50%, #2A1E00 100%);
  border-bottom-color: rgba(245,224,128,0.5);
}

.tc-series {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
}

.tc-number {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  color: var(--gold-muted);
  letter-spacing: 0.05em;
}

.tc-image-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%),
    #0D0A00;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: var(--space-4);
}

.tc-image-area--gold {
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,215,0,0.12) 0%, transparent 70%),
    #0D0A00;
}

.tc-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.tc-image-placeholder span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-muted);
  text-transform: uppercase;
}

.tc-image-placeholder--gold span { color: rgba(255, 215, 0, 0.7); }

.tc-footer {
  padding: var(--space-2) var(--space-3) var(--space-3);
  background: linear-gradient(90deg, #1A1200 0%, #2A1E00 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tc-footer--gold {
  background: linear-gradient(90deg, #2A1E00 0%, #3A2800 50%, #2A1E00 100%);
}

.tc-name {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
}

.tc-edition {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-muted);
}

.tc-edition--gold { color: rgba(212,175,55,0.8); }

/* Holo shimmer layer */
.tc-holo-layer {
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: linear-gradient(
    125deg,
    transparent 0%,
    rgba(255,215,0,0.05) 30%,
    rgba(192,192,192,0.08) 50%,
    rgba(255,215,0,0.05) 70%,
    transparent 100%
  );
  background-size: 300% 300%;
  animation: holoShift 6s ease infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Sold out overlay on card */
.sold-out-overlay {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.soo-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid #dc2626;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-5);
  transform: rotate(-18deg);
  animation: stampIn 0.6s var(--ease-out) 0.3s both;
}

.soo-stamp span {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #dc2626;
  line-height: 1.2;
  text-shadow: 0 0 12px rgba(220,38,38,0.4);
}

.soo-stamp--gold {
  border-color: #dc2626;
}

/* ---- Card Info ---- */
.card-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.card-info-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.card-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.card-name--gold {
  background: linear-gradient(135deg, #F5E080, #D4AF37, #F5E080);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.card-edition-badge {
  flex-shrink: 0;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-edition-badge--standard {
  background: rgba(212,175,55,0.1);
  color: var(--gold-primary);
  border: 1px solid rgba(212,175,55,0.25);
}

.card-edition-badge--gold {
  background: linear-gradient(135deg, rgba(245,224,128,0.15), rgba(212,175,55,0.1));
  color: var(--gold-bright);
  border: 1px solid rgba(245,224,128,0.4);
  box-shadow: 0 0 12px rgba(212,175,55,0.1);
}

.card-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(212,175,55,0.04);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
}

.card-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.card-meta-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.card-meta-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.card-meta-sold {
  color: #dc2626;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ---- Sold Out Notice ---- */
.soldout-notice {
  max-width: 680px;
  margin-inline: auto;
}

.soldout-notice-inner {
  background: linear-gradient(135deg, rgba(185,28,28,0.08) 0%, rgba(0,0,0,0) 100%);
  border: 1px solid rgba(185,28,28,0.3);
  border-radius: var(--radius-card);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  box-shadow: 0 0 40px rgba(185,28,28,0.08);
}

.soldout-badge-large {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-6);
  background: rgba(185,28,28,0.15);
  border: 1.5px solid rgba(185,28,28,0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ef4444;
}

.soldout-notice-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 50ch;
  line-height: 1.65;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  background: linear-gradient(to bottom, #000 0%, #06050a 50%, #000 100%);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(192,192,192,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,192,192,0.3), transparent);
}

.contact-inner {
  display: flex;
  justify-content: center;
}

.contact-right {
  width: 100%;
  max-width: 640px;
}

/* Left column removed */

/* Future drops CTA (below cards grid) */
.future-drops-cta {
  display: flex;
  justify-content: center;
  padding-top: var(--space-4);
}

.btn-future-drops {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
}

/* Contact form */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-card);
  padding: clamp(var(--space-8), 5vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.required-mark { color: var(--gold-primary); }

.form-optional {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-faint);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-input::placeholder { color: var(--color-text-faint); }

.form-input:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(255,255,255,0.04);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1), 0 0 16px rgba(212,175,55,0.08);
  background: rgba(212,175,55,0.03);
}

.form-input.invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

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

.form-error {
  font-size: var(--text-xs);
  color: #f87171;
  display: none;
}

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

/* Submit btn */
.btn-submit {
  width: 100%;
  padding-block: var(--space-4);
  font-size: var(--text-sm);
}

/* Success */
.form-success.is-hidden { display: none !important; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-md);
  color: var(--gold-primary);
  margin-top: var(--space-4);
}

.form-success strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
  color: var(--gold-primary);
}

.form-success p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  border-top: 1px solid var(--color-border-gold);
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
  padding-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.footer-brand { flex: unset; min-width: unset; text-align: center; }

.footer-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  transition: opacity var(--transition);
}

/* footer logo hover handled per-element below */

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(212,175,55,0.25));
  transition: filter var(--transition), transform var(--transition);
}

.footer-logo-link:hover .footer-logo-img {
  filter: drop-shadow(0 2px 14px rgba(212,175,55,0.45)) brightness(1.06);
  transform: scale(1.03);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: var(--space-2);
}

.footer-brand-url {
  font-size: var(--text-xs);
  color: var(--gold-muted);
  letter-spacing: 0.08em;
}

/* Social */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
}

.footer-social-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.footer-social-links {
  display: flex;
  gap: var(--space-3);
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold-muted);
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.social-icon-link:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 16px rgba(212,175,55,0.15);
  transform: translateY(-2px);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border-gold), transparent);
  margin-bottom: var(--space-8);
}

/* Disclaimer */
.footer-disclaimer {
  margin-bottom: var(--space-8);
}

.footer-disclaimer p {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.7;
  max-width: none;
}

.footer-disclaimer strong {
  color: var(--gold-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(212,175,55,0.08);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: none;
}

.footer-domain {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-domain:hover { color: var(--gold-primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-social { align-items: flex-start; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: var(--space-2); }
  .card-meta { grid-template-columns: 1fr 1fr; }
  .soldout-notice-inner { padding: var(--space-8); }
}

@media (max-width: 400px) {
  .trading-card { width: min(180px, 90%); }
}

/* ============================================================
   NOTIFY MODAL
   ============================================================ */
.notify-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}

.notify-modal-overlay:not([hidden]) {
  opacity: 1;
}

.notify-modal-overlay[hidden] {
  display: none;
}

.notify-modal-box {
  position: relative;
  background: #0d0c08;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 16px;
  padding: clamp(var(--space-8), 5vw, var(--space-12)) clamp(var(--space-8), 5vw, var(--space-12));
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 60px rgba(212,175,55,0.12), 0 24px 64px rgba(0,0,0,0.8);
  transform: translateY(16px);
  transition: transform 0.3s var(--ease-out);
}

.notify-modal-overlay:not([hidden]) .notify-modal-box {
  transform: translateY(0);
}

.notify-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: var(--space-2);
  border-radius: 6px;
  transition: color var(--transition-base);
}

.notify-modal-close:hover {
  color: var(--gold-primary);
}

.notify-modal-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gold-primary);
  margin: 0 0 var(--space-2);
}

.notify-modal-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-6);
}

.notify-input-row {
  display: flex;
  gap: var(--space-3);
  align-items: stretch;
}

.notify-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-base);
}

.notify-input:focus {
  border-color: var(--gold-primary);
}

.notify-input::placeholder {
  color: var(--color-text-muted);
}

.notify-submit {
  white-space: nowrap;
  padding-inline: var(--space-6);
}

.notify-error {
  display: block;
  font-size: var(--text-xs);
  color: #f87171;
  margin-top: var(--space-2);
  min-height: 1em;
}

.notify-success {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gold-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--space-4);
}

.notify-success.is-hidden { display: none !important; }

