:root {
  --black: #080c14;
  --deep: #0b1020;
  --purple: #1a4fa0;
  --purple-light: #3b82f6;
  --purple-glow: #60a5fa;
  --gold: #c9900a;
  --gold-light: #e8b830;
  --silver: #b8c8e8;
  --white: #eef2f8;
  --gray: #253560;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Crimson Text", serif;
  overflow-x: hidden;
  cursor: default;
}

/* === NOISE TEXTURE OVERLAY === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  padding: 0 2rem;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.98), transparent);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.nav-logo span {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition:
    color 0.3s,
    text-shadow 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav phone number */
.nav-phone-item {
  border-left: 1px solid rgba(212, 160, 23, 0.25);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.nav-phone {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-light) !important;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(212, 160, 23, 0.35);
  transition:
    color 0.3s,
    text-shadow 0.3s;
}

.nav-phone:hover {
  color: #fff !important;
  text-shadow: 0 0 18px rgba(212, 160, 23, 0.6);
}

.nav-phone::after {
  display: none !important;
}

/* === HERO === */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 40%,
      rgba(26, 79, 160, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 50% 80%,
      rgba(212, 160, 23, 0.06) 0%,
      transparent 60%
    ),
    var(--black);
}

/* Animated rune circles */
.rune-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26, 79, 160, 0.12);
  animation: spin-slow linear infinite;
}

.rune-ring:nth-child(1) {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 60s;
}

.rune-ring:nth-child(2) {
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(212, 160, 23, 0.07);
  animation-duration: 90s;
  animation-direction: reverse;
}

.rune-ring:nth-child(3) {
  width: 1000px;
  height: 1000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 120s;
}

@keyframes spin-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--purple-glow);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(30px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: hero-enter 1.2s ease-out;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: 300px;
  height: auto;
  margin: 0 auto 0;
  display: block;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6))
    drop-shadow(0 0 60px rgba(26, 79, 160, 0.3));
  animation: logo-pulse 4s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6))
      drop-shadow(0 0 60px rgba(26, 79, 160, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.9))
      drop-shadow(0 0 80px rgba(26, 79, 160, 0.5));
  }
}

.hero-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}

.hero-title {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3em;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--gold-light) 40%,
    var(--white) 70%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 20px rgba(212, 160, 23, 0.3));
}

.hero-subtitle {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--purple-light);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--silver);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-phone {
  display: block;
  margin-top: 1.75rem;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-decoration: none;
  text-shadow: 0 0 16px rgba(212, 160, 23, 0.4);
  transition:
    color 0.3s,
    text-shadow 0.3s;
}

.hero-phone:hover {
  color: #fff;
  text-shadow: 0 0 24px rgba(212, 160, 23, 0.7);
}

.btn-primary {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 4px 30px rgba(212, 160, 23, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: transparent;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  border: 1px solid rgba(59, 130, 246, 0.4);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(26, 79, 160, 0.15);
  border-color: var(--purple-light);
  box-shadow: 0 0 20px rgba(26, 79, 160, 0.3);
  transform: translateY(-2px);
}

/* === SECTION SHARED === */
section {
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
  margin-bottom: 1rem;
}

.section-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
  font-style: italic;
}

/* === SERVICES — ACCORDION === */
#services {
  background: linear-gradient(
    180deg,
    var(--black) 0%,
    var(--deep) 50%,
    var(--black) 100%
  );
}

.svc-accordion {
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.svc-row {
  border-bottom: 1px solid rgba(212, 160, 23, 0.12);
  cursor: pointer;
  position: relative;
  transition: background 0.35s;
  overflow: hidden;
}

/* Hover background sweep */
.svc-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 79, 160, 0.04) 0%,
    rgba(212, 160, 23, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.svc-row:hover::after {
  opacity: 1;
}

/* Row header — always visible */
.svc-row-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1rem 1.35rem 0;
  position: relative;
  user-select: none;
}

/* Large decorative number */
.svc-num {
  font-family: "Cinzel Decorative", serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.4;
  min-width: 2rem;
  transition: opacity 0.3s;
}
.svc-row:hover .svc-num,
.svc-row.open .svc-num {
  opacity: 0.9;
}

.svc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.25));
  transition:
    filter 0.3s,
    transform 0.3s;
}
.svc-row:hover .svc-icon,
.svc-row.open .svc-icon {
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
  transform: scale(1.12);
}

/* Diagonal gold accent bar — appears on open */
.svc-row.open .svc-row-head::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, var(--gold), var(--purple-light));
  border-radius: 2px;
}

.svc-title {
  font-family: "Cinzel", serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.06em;
  color: var(--silver);
  flex: 1;
  transition: color 0.3s;
}
.svc-row:hover .svc-title,
.svc-row.open .svc-title {
  color: var(--white);
}

/* Chevron arrow */
.svc-chevron {
  color: rgba(212, 160, 23, 0.35);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.svc-row:hover .svc-chevron {
  color: rgba(212, 160, 23, 0.7);
}
.svc-row.open .svc-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

/* Expandable body — CSS height transition */
.svc-row-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-row.open .svc-row-body {
  grid-template-rows: 1fr;
}

.svc-row-body-inner {
  overflow: hidden;
  padding: 0 0 0 4rem; /* aligns under title */
}

.svc-row.open .svc-row-body-inner {
  padding-bottom: 1.75rem;
}

.svc-row-body-inner p {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.85;
  max-width: 680px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s 0.15s,
    transform 0.3s 0.15s;
}
.svc-row.open .svc-row-body-inner p {
  opacity: 1;
  transform: translateY(0);
}

.svc-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
  padding-bottom: 0.1rem;
  opacity: 0;
  transition:
    opacity 0.25s 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.svc-row.open .svc-link {
  opacity: 1;
}
.svc-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 560px) {
  .svc-row-body-inner {
    padding-left: 0;
  }
  .svc-num {
    display: none;
  }
}

/* === BIRTHDAY PACKAGES === */
#packages {
  background: var(--black);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.package-card {
  background: linear-gradient(
    160deg,
    rgba(14, 11, 26, 0.95) 0%,
    rgba(10, 10, 20, 0.95) 100%
  );
  border: 1px solid rgba(26, 79, 160, 0.25);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.15);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(26, 79, 160, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

.package-card.featured:hover {
  box-shadow: 0 15px 50px rgba(212, 160, 23, 0.25);
}

.package-badge {
  position: absolute;
  top: 1.2rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
  transform-origin: center;
}

.package-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(26, 79, 160, 0.15);
  text-align: center;
}

.package-tier {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.package-name {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.package-price {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 15px rgba(212, 160, 23, 0.4);
}

.package-price span {
  font-size: 1rem;
  color: var(--silver);
}

.package-body {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--silver);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.5;
}

.package-features li::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background-image: url("../Beholders_Adventure_Guild_Logo_Transparent.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 3px;
  filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.5));
  opacity: 0.75;
}

.package-features li.gold-item::before {
  filter: drop-shadow(0 0 4px rgba(212, 160, 23, 0.6));
  opacity: 1;
}

.package-cta {
  display: block;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  transition: all 0.3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  font-weight: 700;
}

.package-cta:hover {
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
  transform: translateY(-1px);
}

.package-card.featured .package-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-color: transparent;
}

.package-card.featured .package-cta:hover {
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

/* === LOGO ICON UTILITY === */
/* Replaces all emoji with the BAG logo image at consistent sizes */
.logo-icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.4));
  flex-shrink: 0;
}
.logo-icon-sm {
  width: 0.85em;
  height: 0.85em;
}
.logo-icon-md {
  width: 1.4em;
  height: 1.4em;
}
.logo-icon-lg {
  width: 2rem;
  height: 2rem;
}
.logo-icon-xl {
  width: 3rem;
  height: 3rem;
}
.logo-icon-2xl {
  width: 4.5rem;
  height: 4.5rem;
}
.logo-icon-3xl {
  width: 6rem;
  height: 6rem;
}

/* === CATALOG === */
#catalog {
  background: linear-gradient(180deg, var(--black) 0%, var(--deep) 100%);
}

.catalog-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  background: transparent;
  border: 1px solid rgba(26, 79, 160, 0.25);
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--gold-light);
  border-color: rgba(212, 160, 23, 0.4);
  background: rgba(212, 160, 23, 0.05);
}

/* Tag subfilter bar */
.catalog-tag-filters {
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -1.75rem;
  margin-bottom: 2.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(26, 79, 160, 0.1);
  border-bottom: 1px solid rgba(26, 79, 160, 0.1);
}

.catalog-tag-label {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.catalog-tag-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-filter-btn {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(192, 200, 216, 0.6);
  background: transparent;
  border: 1px solid rgba(26, 79, 160, 0.18);
  padding: 0.3rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.tag-filter-btn:hover {
  color: var(--silver);
  border-color: rgba(26, 79, 160, 0.35);
  background: rgba(26, 79, 160, 0.06);
}

.tag-filter-btn.active {
  color: var(--purple-light);
  border-color: rgba(26, 79, 160, 0.45);
  background: rgba(26, 79, 160, 0.1);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.catalog-item {
  background: rgba(14, 11, 26, 0.8);
  border: 1px solid rgba(26, 79, 160, 0.15);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

.catalog-item:hover {
  border-color: rgba(59, 130, 246, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26, 79, 160, 0.15);
}

.catalog-item-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    rgba(30, 20, 50, 0.9) 0%,
    rgba(50, 30, 70, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(26, 79, 160, 0.1);
}

.catalog-item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 79, 160, 0.05) 0%,
    rgba(212, 160, 23, 0.05) 100%
  );
}

.catalog-item-info {
  padding: 1.25rem;
}

.catalog-item-category {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.catalog-item-name {
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.catalog-item-desc {
  font-size: 0.9rem;
  color: rgba(192, 200, 216, 0.7);
  line-height: 1.5;
}

.catalog-note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: var(--silver);
  font-size: 1rem;
}

.catalog-note a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
  transition: border-color 0.3s;
}

.catalog-note a:hover {
  border-color: var(--gold-light);
}

/* === ABOUT === */
#about {
  background: var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-logo-wrap::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(26, 79, 160, 0.15) 0%,
    transparent 70%
  );
}

.about-logo {
  width: 280px;
  height: auto;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
}

.about-text .section-title {
  text-align: left;
}

.about-text .section-divider {
  margin: 1rem 0;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value {
  background: rgba(14, 11, 26, 0.8);
  border: 1px solid rgba(26, 79, 160, 0.2);
  padding: 1rem 1.25rem;
  transition: border-color 0.3s;
}

.about-value:hover {
  border-color: rgba(212, 160, 23, 0.3);
}

.about-value-label {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.about-value-text {
  font-size: 0.9rem;
  color: var(--silver);
}

/* === CONTACT === */
#contact {
  background: linear-gradient(180deg, var(--black) 0%, var(--deep) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.contact-info p {
  color: var(--silver);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(14, 11, 26, 0.8);
  border: 1px solid rgba(26, 79, 160, 0.15);
  transition: border-color 0.3s;
}

.contact-method:hover {
  border-color: rgba(212, 160, 23, 0.3);
}

.contact-method-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-method-label {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-method-value {
  font-size: 0.95rem;
  color: var(--white);
}

.contact-form {
  background: linear-gradient(
    135deg,
    rgba(14, 11, 26, 0.95) 0%,
    rgba(10, 10, 20, 0.95) 100%
  );
  border: 1px solid rgba(26, 79, 160, 0.2);
  padding: 2.5rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(26, 79, 160, 0.25);
  color: var(--white);
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.1);
}

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

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

/* === FOOTER === */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(212, 160, 23, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.3));
}

.footer-name {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-style: italic;
  color: rgba(192, 200, 216, 0.5);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.footer-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 160, 23, 0.3),
    transparent
  );
  margin: 0 auto 1.5rem;
}

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(192, 200, 216, 0.4);
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
}

body.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === POPUP MODAL === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 12, 0.85);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: linear-gradient(160deg, #0e0b1a 0%, #130d22 100%);
  border: 1px solid rgba(26, 79, 160, 0.3);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(26, 79, 160, 0.1);
}

.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}

.popup-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple),
    var(--gold),
    transparent
  );
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(192, 200, 216, 0.5);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  font-family: "Cinzel", serif;
}

.popup-close:hover {
  color: var(--gold-light);
}

.popup-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
}

.popup-icon.error-icon {
  filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.5));
}

.popup-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.popup-title.success {
  color: var(--gold-light);
}
.popup-title.error {
  color: #f87171;
}

.popup-message {
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.popup-phone {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(212, 160, 23, 0.4);
  padding-bottom: 2px;
  transition:
    border-color 0.2s,
    text-shadow 0.2s;
}

.popup-phone:hover {
  border-color: var(--gold-light);
  text-shadow: 0 0 12px rgba(212, 160, 23, 0.5);
}

.popup-dismiss {
  display: block;
  width: 100%;
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  padding: 0.85rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s;
}

.popup-dismiss.success-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

.popup-dismiss.success-btn:hover {
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.45);
}

.popup-dismiss.error-btn {
  background: transparent;
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.popup-dismiss.error-btn:hover {
  background: rgba(248, 113, 113, 0.08);
  border-color: #f87171;
}

.popup-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 160, 23, 0.3),
    transparent
  );
  margin: 0 auto 1.5rem;
}

/* === PACKAGE TABS === */
.pkg-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.pkg-tab {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  background: transparent;
  border: 1px solid rgba(26, 79, 160, 0.25);
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.pkg-tab:hover {
  color: var(--white);
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(26, 79, 160, 0.1);
}

.pkg-tab.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
}

.pkg-panel {
  display: none;
}
.pkg-panel.active {
  display: block;
}

/* Bronze/Silver/Gold medal colours */
.medal-bronze .package-tier {
  color: #cd7f32;
}
.medal-bronze .package-price {
  color: #cd7f32;
  text-shadow: 0 0 12px rgba(205, 127, 50, 0.4);
}
.medal-bronze.package-card:hover {
  border-color: rgba(205, 127, 50, 0.4);
}

.medal-silver .package-tier {
  color: #b0b8c8;
}
.medal-silver .package-price {
  color: #b0b8c8;
  text-shadow: 0 0 12px rgba(176, 184, 200, 0.4);
}
.medal-silver.package-card:hover {
  border-color: rgba(176, 184, 200, 0.4);
}

.medal-gold .package-tier {
  color: var(--gold-light);
}
.medal-gold.package-card {
  border-color: rgba(212, 160, 23, 0.3);
}
.medal-gold.package-card:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(212, 160, 23, 0.2);
}

.starting-at {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  display: block;
  margin-bottom: 0.25rem;
}

/* === CATALOG ITEM POPUP === */
.catalog-item {
  cursor: pointer;
}

.catalog-item-img {
  position: relative;
  overflow: hidden;
}

.catalog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.catalog-item:hover .catalog-item-img img {
  transform: scale(1.05);
}

.catalog-item-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.catalog-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.catalog-item:hover .catalog-item-overlay {
  opacity: 1;
}

.catalog-item-overlay span {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 160, 23, 0.5);
  padding: 0.5rem 1.25rem;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  background: rgba(10, 10, 15, 0.7);
}

/* Catalog Detail Popup */
.catalog-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 12, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.catalog-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.catalog-popup-box {
  background: linear-gradient(160deg, #0e0b1a 0%, #130d22 100%);
  border: 1px solid rgba(26, 79, 160, 0.3);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(26, 79, 160, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.catalog-popup-overlay.active .catalog-popup-box {
  transform: translateY(0) scale(1);
}

.catalog-popup-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple),
    var(--gold),
    transparent
  );
  z-index: 1;
}

.catalog-popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(192, 200, 216, 0.5);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  font-family: "Cinzel", serif;
  line-height: 1;
}

.catalog-popup-close:hover {
  color: var(--gold-light);
}

.catalog-popup-image {
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    rgba(20, 14, 36, 0.9),
    rgba(35, 22, 55, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border-right: 1px solid rgba(26, 79, 160, 0.15);
  position: relative;
  overflow: hidden;
}

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

.catalog-popup-image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* ── Gallery arrows ── */
.gallery-arrow {
  display: none; /* shown via JS when >1 image */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(10, 6, 20, 0.72);
  border: 1px solid rgba(212, 160, 23, 0.45);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  padding: 0;
  pointer-events: all;
}
.gallery-arrow:hover {
  background: rgba(26, 79, 160, 0.6);
  border-color: var(--gold);
  color: #fff;
}
.gallery-arrow-prev {
  left: 0.75rem;
}
.gallery-arrow-next {
  right: 0.75rem;
}

/* ── Gallery dots ── */
.gallery-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(26, 79, 160, 0.5);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.catalog-popup-details {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.catalog-popup-category {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.catalog-popup-name {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.3;
  padding-right: 2rem;
}

.catalog-popup-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.75rem 0;
}

.catalog-popup-desc {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.catalog-popup-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.catalog-popup-meta-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.catalog-popup-meta-label {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 70px;
}

.catalog-popup-meta-value {
  color: var(--white);
}

.catalog-popup-price {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 15px rgba(212, 160, 23, 0.3);
  margin-bottom: 1.5rem;
}

.catalog-popup-price span {
  font-size: 0.8rem;
  color: var(--silver);
  font-weight: 400;
}

.catalog-popup-request {
  display: block;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s;
  width: 100%;
}

.catalog-popup-request:hover {
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.45);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .catalog-popup-box {
    grid-template-columns: 1fr;
  }
  .catalog-popup-image {
    aspect-ratio: 4/3;
    border-right: none;
    border-bottom: 1px solid rgba(26, 79, 160, 0.15);
  }
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(26, 79, 160, 0.1);
  }

  .nav-phone-item {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid rgba(212, 160, 23, 0.15) !important;
  }

  .nav-phone {
    font-size: 1rem !important;
    letter-spacing: 0.05em !important;
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-logo-wrap {
    display: none;
  }

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

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   CART SYSTEM
================================================================ */

/* --- Floating Cart Button --- */
.cart-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cart-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.55);
}

.cart-fab svg {
  width: 26px;
  height: 26px;
  color: var(--black);
}

.cart-fab-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--purple-light);
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  opacity: 0;
  transform: scale(0);
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.cart-fab-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Cart Drawer --- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 12, 0.7);
  backdrop-filter: blur(4px);
  z-index: 8500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: linear-gradient(180deg, #0e0b1a 0%, #0a0a0f 100%);
  border-left: 1px solid rgba(26, 79, 160, 0.25);
  z-index: 8600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 60px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--gold));
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(26, 79, 160, 0.15);
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-drawer-count {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--silver);
  text-transform: uppercase;
}

.cart-drawer-close {
  background: none;
  border: none;
  color: rgba(192, 200, 216, 0.5);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
  font-family: "Cinzel", serif;
  line-height: 1;
  padding: 0.25rem;
}

.cart-drawer-close:hover {
  color: var(--gold-light);
}

/* --- Cart Body (scrollable) --- */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 79, 160, 0.3) transparent;
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
  color: rgba(192, 200, 216, 0.4);
}

.cart-empty-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.cart-empty p {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Section label inside cart */
.cart-section-label {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 0 0.5rem;
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  margin-bottom: 0.5rem;
}

/* Cart line item */
.cart-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  animation: cart-item-in 0.25s ease;
}

@keyframes cart-item-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-line-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(26, 79, 160, 0.1);
  border: 1px solid rgba(26, 79, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-line-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(26, 79, 160, 0.2);
}

.cart-line-info {
  flex: 1;
  min-width: 0;
}

.cart-line-name {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-line-meta {
  font-size: 0.8rem;
  color: var(--silver);
  opacity: 0.7;
}

.cart-line-price {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.cart-line-remove {
  background: none;
  border: none;
  color: rgba(192, 200, 216, 0.3);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 0.1rem;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.cart-line-remove:hover {
  color: #f87171;
}

/* Package swap banner */
.cart-pkg-swap {
  background: rgba(212, 160, 23, 0.07);
  border: 1px solid rgba(212, 160, 23, 0.2);
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  color: rgba(240, 192, 64, 0.8);
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* --- Cart Footer --- */
.cart-drawer-footer {
  border-top: 1px solid rgba(26, 79, 160, 0.15);
  padding: 1.25rem 1.5rem 1.5rem;
  flex-shrink: 0;
  background: rgba(10, 10, 15, 0.6);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
}

.cart-total-label {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

.cart-total-amount {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(212, 160, 23, 0.3);
}

.cart-total-note {
  font-size: 0.78rem;
  color: rgba(192, 200, 216, 0.45);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  padding: 1rem;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cart-checkout-btn:hover {
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.5);
  transform: translateY(-1px);
}

.cart-checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.cart-clear-btn {
  display: block;
  width: 100%;
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(192, 200, 216, 0.35);
  border: 1px solid rgba(192, 200, 216, 0.1);
  padding: 0.6rem;
  cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s;
}

.cart-clear-btn:hover {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.3);
}

/* --- Add to Cart button variants --- */
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--purple-light);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 0.5rem 1rem;
  cursor: pointer;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: rgba(26, 79, 160, 0.15);
  border-color: var(--purple-light);
  box-shadow: 0 0 14px rgba(26, 79, 160, 0.25);
}

.btn-add-cart.in-cart {
  background: rgba(26, 79, 160, 0.2);
  border-color: var(--purple-light);
  color: var(--gold-light);
}

/* Package card footer with two buttons */
.package-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

/* Catalog popup add to cart button */
.catalog-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Cart item bounce animation on add */
@keyframes fab-bounce {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.25) translateY(-4px);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.cart-fab.bounce {
  animation: fab-bounce 0.4s ease;
}

/* ================================================================
   ADD-ONS POPUP
================================================================ */
.addons-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 12, 0.88);
  backdrop-filter: blur(8px);
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.addons-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.addons-box {
  background: linear-gradient(160deg, #0e0b1a 0%, #130d22 100%);
  border: 1px solid rgba(26, 79, 160, 0.3);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(26, 79, 160, 0.1);
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 79, 160, 0.3) transparent;
}

.addons-overlay.active .addons-box {
  transform: translateY(0) scale(1);
}

.addons-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple),
    var(--gold),
    transparent
  );
}

.addons-header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(26, 79, 160, 0.15);
  position: sticky;
  top: 0;
  background: #0e0b1a;
  z-index: 2;
}

.addons-close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(192, 200, 216, 0.4);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
  font-family: "Cinzel", serif;
}

.addons-close:hover {
  color: var(--gold-light);
}

.addons-pkg-name {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  padding-right: 2rem;
}

.addons-pkg-subtitle {
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.addons-body {
  padding: 1.5rem 2rem 2rem;
}

.addons-section-title {
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.addons-section-title:first-child {
  margin-top: 0;
}

/* Individual add-on row */
.addon-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(26, 79, 160, 0.04);
  border: 1px solid rgba(26, 79, 160, 0.12);
  margin-bottom: 0.6rem;
  transition:
    border-color 0.25s,
    background 0.25s;
  cursor: pointer;
}

.addon-row:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(26, 79, 160, 0.08);
}

.addon-row.selected {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.06);
}

.addon-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(26, 79, 160, 0.4);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.7rem;
}

.addon-row.selected .addon-checkbox {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.addon-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.addon-info {
  flex: 1;
}

.addon-name {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.addon-desc {
  font-size: 0.82rem;
  color: rgba(192, 200, 216, 0.65);
  line-height: 1.4;
}

.addon-price {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Qty stepper for add-ons that need it */
.addon-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.addon-qty button {
  width: 24px;
  height: 24px;
  background: rgba(26, 79, 160, 0.15);
  border: 1px solid rgba(26, 79, 160, 0.3);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  padding: 0;
}

.addon-qty button:hover {
  background: rgba(26, 79, 160, 0.3);
}

.addon-qty-val {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  color: var(--white);
  min-width: 20px;
  text-align: center;
}

/* Footer */
.addons-footer {
  padding: 1.25rem 2rem 1.75rem;
  border-top: 1px solid rgba(26, 79, 160, 0.15);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  position: sticky;
  bottom: 0;
  background: #0e0b1a;
}

.addons-total {
  flex: 1;
}

.addons-total-label {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
}

.addons-total-amount {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.addons-confirm-btn {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  padding: 0.85rem 2rem;
  cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s;
  font-weight: 700;
  white-space: nowrap;
}

.addons-confirm-btn:hover {
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.45);
  transform: translateY(-1px);
}

.addons-skip-btn {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(192, 200, 216, 0.35);
  border: 1px solid rgba(192, 200, 216, 0.1);
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s;
  white-space: nowrap;
}

.addons-skip-btn:hover {
  color: var(--silver);
  border-color: rgba(192, 200, 216, 0.3);
}

/* Add-ons in cart drawer */
.cart-addon-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0 0.4rem 0.5rem;
  font-size: 0.8rem;
  color: rgba(192, 200, 216, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cart-addon-line::before {
  content: "↳";
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.cart-addon-line-name {
  flex: 1;
}

.cart-addon-line-price {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  color: var(--gold-light);
  opacity: 0.8;
}

.cart-addon-line-remove {
  background: none;
  border: none;
  color: rgba(192, 200, 216, 0.2);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0;
  transition: color 0.2s;
}

.cart-addon-line-remove:hover {
  color: #f87171;
}

/* ================================================================
   CATALOG QUICK-ADD & POPUP ENHANCEMENTS
================================================================ */

/* Quick-add bar on catalog cards */
.catalog-quick-add {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0.75rem 0.6rem;
  border-top: 1px solid rgba(26, 79, 160, 0.1);
  background: rgba(10, 10, 15, 0.4);
}

.catalog-quick-btn {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--purple-light);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: all 0.25s;
  white-space: nowrap;
}

.catalog-quick-btn:hover {
  background: rgba(26, 79, 160, 0.15);
  border-color: var(--purple-light);
}

.catalog-quick-btn.added {
  color: var(--gold-light);
  border-color: rgba(212, 160, 23, 0.5);
  background: rgba(212, 160, 23, 0.07);
}

/* Finish selector inside popup */
.catalog-finish-selector {
  margin-bottom: 0.75rem;
}

.catalog-finish-label {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.catalog-finish-options {
  display: flex;
  gap: 0.5rem;
}

.catalog-finish-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.65rem 0.5rem;
  background: rgba(26, 79, 160, 0.05);
  border: 1px solid rgba(26, 79, 160, 0.2);
  cursor: pointer;
  transition: all 0.25s;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.catalog-finish-btn:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(26, 79, 160, 0.1);
}

.catalog-finish-btn.active {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}

.finish-icon {
  font-size: 1.1rem;
}

.finish-name {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.finish-price {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  color: var(--gold-light);
}

/* Qty stepper + add button row */
.catalog-qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.catalog-qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(26, 79, 160, 0.25);
  flex-shrink: 0;
}

.catalog-qty-btn {
  width: 32px;
  height: 36px;
  background: rgba(26, 79, 160, 0.08);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-qty-btn:hover {
  background: rgba(26, 79, 160, 0.2);
}

.catalog-qty-val {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  color: var(--white);
  min-width: 32px;
  text-align: center;
  padding: 0 0.25rem;
  border-left: 1px solid rgba(26, 79, 160, 0.25);
  border-right: 1px solid rgba(26, 79, 160, 0.25);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-popup-add-btn {
  flex: 1;
  justify-content: center;
  padding: 0.75rem 1rem !important;
  font-size: 0.78rem !important;
}

/* ============================================================
   WHY PLAY D&D — SECTION + RESEARCH MODALS
   ============================================================ */

#why-dnd {
  background: linear-gradient(
    180deg,
    var(--deep) 0%,
    var(--black) 50%,
    var(--deep) 100%
  );
}

/* ── Benefits grid ── */
.dnd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.dnd-benefit-card {
  background: linear-gradient(
    135deg,
    rgba(20, 14, 36, 0.9) 0%,
    rgba(35, 22, 55, 0.8) 100%
  );
  border: 1px solid rgba(26, 79, 160, 0.2);
  border-radius: 4px;
  padding: 2rem 1.75rem 1.6rem;
  position: relative;
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dnd-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.dnd-benefit-card:hover,
.dnd-benefit-card:focus-visible {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(26, 79, 160, 0.18);
  outline: none;
}
.dnd-benefit-card:hover::before,
.dnd-benefit-card:focus-visible::before {
  opacity: 1;
}

.dnd-benefit-icon {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
  transition:
    filter 0.3s,
    transform 0.3s;
}
.dnd-benefit-card:hover .dnd-benefit-icon {
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.65));
  transform: scale(1.1);
}

.dnd-benefit-card h3 {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.dnd-benefit-card p {
  font-family: "Crimson Text", serif;
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.65;
  margin: 0 0 auto;
}

.dnd-benefit-cta {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.7;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.dnd-benefit-card:hover .dnd-benefit-cta {
  opacity: 1;
  transform: translateX(3px);
}

/* ── Video block ── */
.dnd-video-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.dnd-video-label {
  margin-bottom: 1.25rem;
}

.dnd-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(26, 79, 160, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.dnd-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  display: block;
}

.dnd-video-thumbimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dnd-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 12, 0.45);
  transition: background 0.25s;
}
.dnd-video-thumb:hover .dnd-video-overlay {
  background: rgba(5, 3, 12, 0.25);
}

.dnd-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  z-index: 2;
  transition:
    transform 0.25s,
    filter 0.25s;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.6));
}
.dnd-video-thumb:hover .dnd-video-play {
  transform: translate(-50%, -58%) scale(1.12);
  filter: drop-shadow(0 4px 20px rgba(255, 0, 0, 0.4));
}

.dnd-video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(transparent, rgba(5, 3, 12, 0.85));
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  z-index: 2;
}

.dnd-video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

.dnd-video-caption {
  font-family: "Crimson Text", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--silver);
  opacity: 0.75;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   D&D BENEFIT RESEARCH MODALS
══════════════════════════════════════════════════════════ */

.dnd-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 8, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.dnd-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.dnd-modal {
  background: linear-gradient(
    160deg,
    rgba(18, 12, 30, 0.98) 0%,
    rgba(28, 18, 46, 0.98) 100%
  );
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 6px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(26, 79, 160, 0.15);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 160, 23, 0.3) transparent;
}
.dnd-modal::-webkit-scrollbar {
  width: 4px;
}
.dnd-modal::-webkit-scrollbar-thumb {
  background: rgba(212, 160, 23, 0.3);
  border-radius: 4px;
}
.dnd-modal-overlay.active .dnd-modal {
  transform: translateY(0) scale(1);
}

.dnd-modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem -0.5rem auto;
  width: 2.2rem;
  height: 2.2rem;
  background: rgba(26, 79, 160, 0.15);
  border: 1px solid rgba(26, 79, 160, 0.3);
  border-radius: 50%;
  color: var(--silver);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  z-index: 10;
}
.dnd-modal-close:hover {
  background: rgba(212, 160, 23, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.dnd-modal-content {
  padding: 0 2.25rem 2.25rem;
  clear: both;
}

.dnd-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  margin-bottom: 1.75rem;
}

.dnd-modal-icon {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
  line-height: 1;
}

.dnd-modal-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.dnd-modal-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(90deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dnd-modal-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.75rem;
}

.dnd-modal-stat {
  background: rgba(26, 79, 160, 0.1);
  border: 1px solid rgba(26, 79, 160, 0.2);
  border-radius: 4px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dnd-modal-stat-num {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.dnd-modal-stat-label {
  font-family: "Crimson Text", serif;
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.45;
}

.dnd-modal-body p {
  font-family: "Crimson Text", serif;
  font-size: 1.1rem;
  color: rgba(192, 200, 216, 0.9);
  line-height: 1.75;
  margin: 0 0 1.1rem;
}

.dnd-modal-lead {
  font-size: 1.2rem !important;
  color: var(--white) !important;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 1.5rem !important;
}

.dnd-modal-body strong {
  color: var(--gold-light);
  font-weight: 600;
}
.dnd-modal-body em {
  color: rgba(192, 200, 216, 0.8);
  font-style: italic;
}

.dnd-modal-sources {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.dnd-modal-sources-label {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 0.75rem;
}

.dnd-modal-sources ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dnd-modal-sources li {
  font-family: "Crimson Text", serif;
  font-size: 0.85rem;
  line-height: 1.5;
  padding-left: 0.9rem;
  position: relative;
  color: rgba(192, 200, 216, 0.55);
}

.dnd-modal-sources li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(212, 160, 23, 0.35);
}

.dnd-modal-sources a {
  color: rgba(192, 200, 216, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.dnd-modal-sources a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

@media (max-width: 900px) {
  .dnd-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dnd-benefits-grid {
    grid-template-columns: 1fr;
  }
  .dnd-modal-content {
    padding: 0 1.25rem 1.75rem;
  }
  .dnd-modal-stat-row {
    grid-template-columns: 1fr;
  }
  .dnd-modal-title {
    font-size: 1.1rem;
  }
  .dnd-video-title {
    font-size: 0.8rem;
  }
}

/* ============================================================
   PACKAGES — VALUE BURST, WHAT'S INCLUDED, LIGHTBOX
   ============================================================ */

/* ── Value burst badge ── */
.pkg-value-burst {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid rgba(26, 79, 160, 0.25);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.35rem;
  background: rgba(26, 79, 160, 0.07);
  text-align: center;
}

.pkg-burst-label {
  font-family: "Cinzel", serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.65;
}

.pkg-burst-amount {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.pkg-burst-sub {
  font-family: "Crimson Text", serif;
  font-size: 0.85rem;
  color: var(--silver);
  opacity: 0.7;
}

.pkg-burst-bronze .pkg-burst-amount {
  color: #cd7f32;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.35);
}
.pkg-burst-silver .pkg-burst-amount {
  color: #b0b8c8;
  text-shadow: 0 0 10px rgba(176, 184, 200, 0.35);
}
.pkg-burst-gold .pkg-burst-amount {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.35);
}

.pkg-burst-bronze {
  border-color: rgba(205, 127, 50, 0.2);
  background: rgba(205, 127, 50, 0.06);
}
.pkg-burst-silver {
  border-color: rgba(176, 184, 200, 0.2);
  background: rgba(176, 184, 200, 0.05);
}
.pkg-burst-gold {
  border-color: rgba(212, 160, 23, 0.25);
  background: rgba(212, 160, 23, 0.06);
}

/* ── What's Included click strip ── */
.pkg-whats-included {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border: 1px dashed rgba(26, 79, 160, 0.3);
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 1.25rem;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.pkg-whats-included:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.05);
}

.pkg-wi-collage {
  display: flex;
  gap: 0.25rem;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.25));
}

.pkg-wi-label {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.75;
}

.pkg-whats-included:hover .pkg-wi-label {
  color: var(--gold-light);
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   PACKAGE PREVIEW LIGHTBOX
══════════════════════════════════════════════════════════ */

.pkg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 8, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pkg-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.pkg-modal-box {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(16, 11, 28, 0.99) 0%,
    rgba(24, 16, 40, 0.99) 100%
  );
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
  position: relative;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pkg-modal-overlay.active .pkg-modal-box {
  transform: scale(1) translateY(0);
}

.pkg-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2rem;
  height: 2rem;
  background: rgba(26, 79, 160, 0.15);
  border: 1px solid rgba(26, 79, 160, 0.3);
  border-radius: 50%;
  color: var(--silver);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  z-index: 5;
}
.pkg-modal-close:hover {
  background: rgba(212, 160, 23, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.pkg-modal-left {
  background: linear-gradient(
    160deg,
    rgba(26, 79, 160, 0.12) 0%,
    rgba(212, 160, 23, 0.06) 100%
  );
  border-right: 1px solid rgba(212, 160, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  min-height: 320px;
}

.pkg-modal-collage {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.pkg-modal-collage-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.pkg-modal-collage-item {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(26, 79, 160, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.pkg-modal-collage-item:hover {
  transform: scale(1.08);
  border-color: var(--gold);
}

.pkg-modal-right {
  padding: 2rem 2rem 1.75rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 160, 23, 0.25) transparent;
}
.pkg-modal-right::-webkit-scrollbar {
  width: 3px;
}
.pkg-modal-right::-webkit-scrollbar-thumb {
  background: rgba(212, 160, 23, 0.25);
}

.pkg-modal-eyebrow {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.pkg-modal-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.pkg-modal-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.25rem;
  opacity: 0.3;
}

.pkg-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pkg-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  color: var(--silver);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.45;
}

.pkg-modal-list li .pkg-li-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.pkg-modal-list li.gold-li {
  color: rgba(240, 192, 64, 0.85);
}

.pkg-modal-cta {
  display: block;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-weight: 700;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.pkg-modal-cta:hover {
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 580px) {
  .pkg-modal-box {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
  .pkg-modal-left {
    min-height: 140px;
    border-right: none;
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    padding: 1.5rem;
  }
  .pkg-modal-collage {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pkg-modal-collage-row {
    gap: 0.4rem;
  }
  .pkg-modal-collage-item {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.3rem;
  }
  .pkg-modal-right {
    padding: 1.5rem;
  }
}
/* ================================================================
 UPCOMING EVENTS
================================================================ */

/* ================================================================
 UPCOMING EVENTS — scoped styles
================================================================ */

#events {
  background: linear-gradient(180deg, var(--deep) 0%, var(--black) 100%);
}

.events-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: rgba(14, 11, 26, 0.8);
  border: 1px solid rgba(26, 79, 160, 0.15);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: rgba(59, 130, 246, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26, 79, 160, 0.15);
}

.event-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(
    135deg,
    rgba(30, 20, 50, 0.95) 0%,
    rgba(50, 30, 70, 0.95) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(26, 79, 160, 0.1);
}

.event-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 79, 160, 0.06),
    rgba(212, 160, 23, 0.06)
  );
}

.event-card-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
  position: relative;
  z-index: 1;
}

.event-type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: "Cinzel", serif;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  font-weight: 700;
  z-index: 2;
}

.event-type-badge.learn-to-play {
  background: rgba(26, 79, 160, 0.85);
  color: #fff;
}
.event-type-badge.learn-to-paint {
  background: rgba(212, 100, 23, 0.85);
  color: #fff;
}
.event-type-badge.learn-to-gm {
  background: rgba(30, 120, 80, 0.9);
  color: #fff;
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.event-card:hover .event-card-overlay {
  opacity: 1;
}

.event-card-overlay span {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 160, 23, 0.5);
  padding: 0.5rem 1.25rem;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  background: rgba(10, 10, 15, 0.7);
}

.event-card-info {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.event-card-title {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.4;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-meta-date,
.event-meta-location {
  font-size: 0.82rem;
  color: rgba(192, 200, 216, 0.65);
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.event-cost-badge {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
  font-weight: 700;
}

.event-cost-badge.free {
  background: rgba(30, 120, 80, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.event-cost-badge.paid {
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 160, 23, 0.25);
}

.event-spots {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(192, 200, 216, 0.5);
}

.event-spots.low {
  color: #f87171;
}
.event-spots.full {
  color: rgba(192, 200, 216, 0.3);
  text-decoration: line-through;
}

.events-note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: var(--silver);
  font-size: 1rem;
}

.events-note a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
  transition: border-color 0.3s;
}

.events-note a:hover {
  border-color: var(--gold-light);
}

/* === Event detail popup === */
.event-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 12, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.event-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.event-popup-box {
  background: linear-gradient(160deg, #0e0b1a 0%, #130d22 100%);
  border: 1px solid rgba(26, 79, 160, 0.3);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(26, 79, 160, 0.1);
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 79, 160, 0.3) transparent;
}

.event-popup-overlay.active .event-popup-box {
  transform: translateY(0) scale(1);
}

.event-popup-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple),
    var(--gold),
    transparent
  );
  z-index: 1;
}

.event-popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(192, 200, 216, 0.5);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  font-family: "Cinzel", serif;
  line-height: 1;
}

.event-popup-close:hover {
  color: var(--gold-light);
}

.event-popup-header {
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(26, 79, 160, 0.15);
  position: relative;
}

.event-popup-header::after {
  content: attr(data-icon);
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: 0.06;
  pointer-events: none;
}

.event-popup-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
}

.event-popup-type-badge {
  font-family: "Cinzel", serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  font-weight: 700;
}

.event-popup-type-badge.learn-to-play {
  background: rgba(26, 79, 160, 0.2);
  color: var(--purple-light);
  border: 1px solid rgba(26, 79, 160, 0.35);
}
.event-popup-type-badge.learn-to-paint {
  background: rgba(212, 100, 23, 0.15);
  color: #fb923c;
  border: 1px solid rgba(212, 100, 23, 0.3);
}
.event-popup-type-badge.learn-to-gm {
  background: rgba(30, 120, 80, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.event-popup-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  padding-right: 2rem;
}

.event-popup-body {
  padding: 2rem 2.5rem 2.5rem;
}

.event-popup-details-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.event-popup-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.event-popup-detail-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  text-align: center;
}

.event-popup-detail-label {
  font-family: "Cinzel", serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.event-popup-detail-value {
  font-size: 0.95rem;
  color: var(--white);
}

.event-popup-detail-sub {
  font-size: 0.82rem;
  color: rgba(192, 200, 216, 0.55);
  margin-top: 0.1rem;
}

.event-popup-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(26, 79, 160, 0.2),
    transparent
  );
  margin: 1.5rem 0;
}

.event-popup-section-label {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.event-popup-desc {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.event-popup-bring-box {
  background: rgba(26, 79, 160, 0.05);
  border: 1px solid rgba(26, 79, 160, 0.18);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.event-popup-bring-label {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}

.event-popup-bring-text {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.7;
}

.event-popup-rsvp {
  display: block;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-weight: 700;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s;
}

.event-popup-rsvp:hover {
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .event-popup-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  .event-popup-body {
    padding: 1.5rem;
  }
  .event-popup-title {
    font-size: 1rem;
  }
}

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   Covers: Hero, Nav, Services, Packages, Catalog, Events,
           Why D&D, About, Contact, Footer, Modals, Cart
================================================================ */

/* ── Global section padding on mobile ── */
@media (max-width: 768px) {
  section {
    padding: 4rem 1.25rem;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-desc {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 1rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #home {
    padding: 0 1.25rem;
  }
  .hero-logo {
    width: 140px;
    margin-bottom: 1.25rem;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
  }
  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  .hero-cta {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .hero-phone {
    font-size: 0.9rem;
    margin-top: 1.25rem;
  }
  /* Shrink spinning rings so they don't overflow */
  .rune-ring:nth-child(1) {
    width: 300px;
    height: 300px;
  }
  .rune-ring:nth-child(2) {
    width: 420px;
    height: 420px;
  }
  .rune-ring:nth-child(3) {
    width: 550px;
    height: 550px;
  }
}

/* ─────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
  }
  .nav-logo img {
    height: 38px;
  }
  .nav-logo span {
    font-size: 0.9rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   WHY D&D
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .dnd-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .dnd-benefit-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .dnd-benefit-icon {
    font-size: 2rem;
  }
  .dnd-benefit-card h3 {
    font-size: 0.8rem;
  }
  .dnd-benefit-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .dnd-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .svc-row-body-inner {
    padding-left: 0;
  }
  .svc-row-head {
    padding: 1.1rem 0.75rem 1.1rem 0;
  }
  .svc-title {
    font-size: 0.88rem;
  }
  .svc-row-body-inner p {
    font-size: 0.95rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   PACKAGES
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .package-header {
    padding: 1.5rem 1.5rem 1.25rem;
  }
  .package-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }
  .package-name {
    font-size: 1.2rem;
  }
  .package-price {
    font-size: 1.9rem;
  }
  /* Fix "Popular" badge overflow on narrow screens */
  .package-badge {
    font-size: 0.6rem;
    right: -1.2rem;
    padding: 0.25rem 2rem;
  }
}

@media (max-width: 480px) {
  .packages-grid {
    max-width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────
   CATALOG
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .catalog-filters {
    gap: 0.6rem;
    margin-bottom: 2rem;
  }
  .filter-btn {
    font-size: 0.7rem;
    padding: 0.45rem 1rem;
  }
  .catalog-item-name {
    font-size: 0.85rem;
  }
  .catalog-item-desc {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* Catalog popup — single column on mobile */
@media (max-width: 600px) {
  .catalog-popup-overlay {
    padding: 0.75rem;
    align-items: flex-end;
  }
  .catalog-popup-box {
    grid-template-columns: 1fr;
    max-height: 92vh;
    border-radius: 6px 6px 0 0;
  }
  .catalog-popup-image {
    aspect-ratio: 4/3;
    border-right: none;
    border-bottom: 1px solid rgba(26, 79, 160, 0.15);
  }
  .catalog-popup-details {
    padding: 1.5rem 1.25rem 1.5rem;
  }
  .catalog-popup-name {
    font-size: 1.1rem;
    padding-right: 1.5rem;
  }
  .catalog-finish-options {
    flex-wrap: wrap;
  }
  .catalog-finish-btn {
    min-width: calc(50% - 0.25rem);
  }
}

/* ─────────────────────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-logo-wrap {
    display: none;
  }
  .about-values {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .about-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #contact {
    padding: 4rem 1.25rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form {
    padding: 1.5rem 1.25rem;
  }
  .contact-method {
    padding: 0.85rem 1rem;
  }
  .contact-method-value {
    font-size: 0.88rem;
    word-break: break-word;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* Prevent iOS auto-zoom on input focus */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  #contact {
    padding: 3rem 1rem;
  }
  .contact-form {
    padding: 1.25rem 1rem;
  }
  .contact-info h3 {
    font-size: 1rem;
  }
  .contact-info p {
    font-size: 0.95rem;
  }
  .contact-form .btn-primary {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  footer {
    padding: 2rem 1rem;
  }
  .footer-name {
    font-size: 0.95rem;
  }
  .footer-tagline {
    font-size: 0.82rem;
  }
  .footer-bottom {
    font-size: 0.72rem;
    line-height: 1.7;
  }
}

/* ─────────────────────────────────────────────────────────────
   CART DRAWER
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
  }
  .cart-drawer-header {
    padding: 1.25rem 1rem 1rem;
  }
  .cart-drawer-body {
    padding: 1rem;
  }
  .cart-drawer-footer {
    padding: 1rem 1rem 1.25rem;
  }
  .cart-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
}

/* ─────────────────────────────────────────────────────────────
   MODALS (popup, addons, pkg preview, dnd research)
───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Success/error popup */
  .popup-box {
    padding: 2.5rem 1.5rem 2rem;
  }
  .popup-title {
    font-size: 1.2rem;
  }

  /* Package preview lightbox */
  .pkg-modal-overlay {
    padding: 0.75rem;
    align-items: flex-end;
  }
  .pkg-modal-box {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 6px 6px 0 0;
  }
  .pkg-modal-left {
    min-height: 120px;
    border-right: none;
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    padding: 1.25rem;
  }
  .pkg-modal-right {
    padding: 1.5rem;
  }

  /* Add-ons popup */
  .addons-overlay {
    padding: 0.75rem;
    align-items: flex-end;
  }
  .addons-box {
    border-radius: 6px 6px 0 0;
  }
  .addons-header {
    padding: 1.25rem 1.25rem 1rem;
  }
  .addons-body {
    padding: 1.25rem;
  }
  .addons-footer {
    padding: 1rem 1.25rem 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .addons-confirm-btn,
  .addons-skip-btn {
    flex: 1;
    text-align: center;
    padding: 0.85rem 0.75rem;
  }

  /* D&D research modal */
  .dnd-modal-overlay {
    padding: 0.75rem;
    align-items: flex-end;
  }
  .dnd-modal {
    max-height: 90vh;
    border-radius: 6px 6px 0 0;
  }
  .dnd-modal-content {
    padding: 0 1.25rem 1.75rem;
  }
  .dnd-modal-stat-row {
    grid-template-columns: 1fr;
  }
  .dnd-modal-title {
    font-size: 1.1rem;
  }
  .dnd-modal-header {
    gap: 0.75rem;
    padding: 1rem 0;
  }
  .dnd-modal-icon {
    font-size: 2.2rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   MISC TOUCH IMPROVEMENTS
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Make all buttons tall enough to tap comfortably */
  .btn-primary,
  .btn-secondary,
  .package-cta,
  .cart-checkout-btn {
    min-height: 48px;
  }

  /* Disable hover-lift animations on touch (they stick on mobile) */
  .package-card:hover,
  .catalog-item:hover,
  .dnd-benefit-card:hover,
  .event-card:hover {
    transform: none;
  }

  /* Prevent horizontal scroll from clip-path on buttons */
  .btn-primary,
  .btn-secondary,
  .package-cta,
  .filter-btn,
  .pkg-tab,
  .cart-checkout-btn,
  .catalog-popup-request {
    clip-path: none;
  }
}
