/* -------------------------------------------------------------
 * Brand: The Pirate's Cove Tattoos & Piercings Orlando
 * Design System: The Buccaneer's Atelier (Dark Gothic Nautical)
 * Codebase: Custom Vanilla CSS
 * ------------------------------------------------------------- */

/* 1. DESIGN TOKENS & VARIABLE DECLARATIONS */
:root {
  /* Color System (Dark Charcoal / Gothic Crimson Red palette) */
  --bg-obsidian: #111113;
  --surface-cove: #18181b;
  --surface-hover: #222226;
  --accent-gold: #e52e3d;
  --accent-gold-hover: #c41e2d;
  --accent-crimson: #eb5757;
  --accent-crimson-hover: #89121d;
  --ink-seaspray: #eff1f4;
  --ink-silver: #b3b8be;
  --border-cove: #27272a;

  /* Translucent & Alpha Colors */
  --bg-obsidian-alpha-70: rgba(17, 17, 19, 0.7);
  --bg-obsidian-alpha-90: rgba(17, 17, 19, 0.9);
  --bg-obsidian-alpha-95: rgba(17, 17, 19, 0.95);
  --bg-obsidian-alpha-30: rgba(17, 17, 19, 0.3);
  --border-cove-alpha-50: rgba(39, 39, 42, 0.5);
  --accent-gold-alpha-8: rgba(229, 46, 61, 0.08);
  --accent-gold-alpha-15: rgba(229, 46, 61, 0.15);
  --accent-gold-alpha-25: rgba(229, 46, 61, 0.25);
  --accent-crimson-alpha-50: rgba(235, 87, 87, 0.5);
  --silver-alpha-40: rgba(179, 184, 190, 0.4);
  --black-alpha-70: rgba(0, 0, 0, 0.7);
  --black-alpha-50: rgba(0, 0, 0, 0.5);
  --black-alpha-40: rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--ink-silver);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-cove);
  border: 2px solid var(--bg-obsidian);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* 3. UTILITIES & STRUCTURAL LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-xl) 0;
}

.bg-surface {
  background-color: var(--surface-cove);
}

.text-gold { color: var(--accent-gold); }
.text-crimson { color: var(--accent-crimson); }
.text-seaspray { color: var(--ink-seaspray); }
.text-silver { color: var(--ink-silver); }
.text-center { text-align: center; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .asymmetric-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Section Header Typography */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink-seaspray);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 36rem;
}

.lead-paragraph {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: var(--space-md);
}

.body-text {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 1.25rem;
  max-width: 75ch; /* Comfortable reading width */
}

/* 4. BUTTONS & INTERACTIVES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: 0 4px 20px var(--accent-gold-alpha-25);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ink-seaspray);
  border: 1px solid var(--border-cove);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-icon-right {
  font-size: 0.8em;
  transition: var(--transition-smooth);
}

.btn:hover .btn-icon-right {
  transform: translateX(4px);
}

/* 5. HEADER & NAVIGATION */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#main-header.scrolled,
.header-fixed {
  background-color: var(--bg-obsidian-alpha-90);
  border-bottom-color: var(--border-cove-alpha-50) !important;
}

.header-container {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--ink-seaspray);
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.35rem;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  padding: 3px;
  border-radius: 6px;
  border: 1px solid var(--border-cove);
  background-color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.brand-logo:hover .nav-logo-img {
  border-color: var(--accent-gold);
  transform: scale(1.1) rotate(-3deg);
}

.desktop-nav ul {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-silver);
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link:hover {
  color: var(--ink-seaspray);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

@media (max-width: 992px) {
  .desktop-nav,
  #nav-cta-btn {
    display: none;
  }
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 101;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--ink-seaspray);
  transition: var(--transition-smooth);
}

@media (min-width: 993px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-obsidian);
  border-left: 1px solid var(--border-cove);
  z-index: 1000;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.mobile-drawer[aria-hidden="false"] {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-cove);
  margin-bottom: var(--space-md);
}

.drawer-close {
  font-size: 1.5rem;
  color: var(--ink-silver);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.drawer-link {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--ink-seaspray);
}

.drawer-link:hover {
  color: var(--accent-gold);
  padding-left: var(--space-xs);
}

.drawer-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-cove);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.drawer-contact-item {
  font-size: 0.95rem;
  color: var(--accent-gold);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--black-alpha-70);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

/* 6. HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-top: 75px;
  overflow: hidden;
  z-index: 2;
}

.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  background-color: #000000;
}

.hero-background .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(80%) brightness(22%);
  transform: scale(1.05);
  animation: hero-pan 25s ease-out infinite alternate;
}

.hero-background .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

@keyframes hero-pan {
  0% { transform: scale(1.03) translate(0px, 0px); }
  100% { transform: scale(1.08) translate(-10px, -5px); }
}

.overlay-radial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.64) 40%, rgba(0, 0, 0, 0.80) 80%, var(--bg-obsidian) 100%);
  z-index: 2;
}

.hero-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 100vh;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 75px;
  box-sizing: border-box;
  pointer-events: none;
}

.hero-container > * {
  pointer-events: auto;
}

.hero-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  gap: 0.75rem;
}

.hero-logo-img {
  width: 100%;
  max-width: 320px;
  max-height: 280px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.95));
  animation: hero-logo-pulse 5s ease-in-out infinite alternate;
}

@keyframes hero-logo-pulse {
  0% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.9));
  }
  100% {
    transform: translateY(-6px) scale(1.03);
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.98));
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-silver);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0.8;
}

.hero-scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.animated-bounce {
  animation: scroll-float 2s ease-in-out infinite;
}

@keyframes scroll-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Ensure all content sections after Hero stay above the fixed Hero background */
section:not(.hero-section),
footer {
  position: relative;
  z-index: 10;
  background-color: var(--bg-obsidian);
}

/* 7. ASYMMETRIC CREED SECTION */
.creed-section {
  background-image: linear-gradient(to right, rgba(17, 17, 19, 0.1) 0%, rgba(17, 17, 19, 0.5) 45%, rgba(17, 17, 19, 0.9) 65%, var(--bg-obsidian) 100%), url('section 2.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.95);
  border-top: 1px solid var(--border-cove-alpha-50);
}

@media (min-width: 768px) {
  .creed-section .asymmetric-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.creed-text {
  width: 100%;
}

.creed-text .lead-paragraph,
.creed-text .body-text {
  max-width: 100%;
}

@media (max-width: 767px) {
  .creed-section {
    background-image: linear-gradient(to bottom, rgba(17, 17, 19, 0.75) 0%, var(--bg-obsidian) 100%), url('section 2.jpg');
  }
  .creed-spacer {
    display: none;
  }
}

.creed-quote {
  margin-top: var(--space-lg);
  padding-left: var(--space-md);
  position: relative;
}

.border-left-gold {
  border-left: 2px solid var(--accent-gold);
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-seaspray);
  margin-bottom: 0.5rem;
}

.quote-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent-gold);
}

/* Asymmetric Image frames */
.img-frame-accent {
  position: relative;
  padding: 10px;
}

.img-frame-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border: 1px solid var(--accent-gold);
  z-index: 1;
  pointer-events: none;
}

.img-frame-accent img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-sm);
  filter: grayscale(20%) contrast(110%);
  box-shadow: 0 15px 40px var(--black-alpha-50);
  transition: var(--transition-smooth);
}

.img-frame-accent:hover img {
  filter: grayscale(0%) contrast(100%);
  transform: translate(8px, 8px);
}

.frame-tag {
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 3;
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px var(--black-alpha-40);
}

.frame-tag.text-crimson {
  color: var(--accent-crimson);
}

/* 8. RESIDENTS / TEAM GRID */
.residents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 576px) {
  .residents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .residents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.resident-card {
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.resident-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 30px var(--black-alpha-40);
}

.resident-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.resident-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%);
  transition: var(--transition-smooth);
}

.resident-card:hover .resident-img {
  filter: grayscale(10%);
  transform: scale(1.05);
}

.resident-specialty-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.6rem var(--space-sm);
  background: linear-gradient(to top, var(--bg-obsidian-alpha-90) 70%, transparent);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.resident-info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.resident-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink-seaspray);
  margin-bottom: 0.5rem;
}

.resident-name .nickname {
  font-size: 0.9rem;
  font-style: italic;
  font-family: var(--font-body);
  color: var(--accent-gold);
  margin-left: 4px;
}

.resident-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  flex-grow: 1;
}

.resident-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}

.resident-links .tag {
  background-color: var(--surface-cove);
  color: var(--ink-silver);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-cove);
}

/* 9. LUXURY AFTERCARE EDITORIAL SECTION */
.aftercare-section {
  position: relative;
  z-index: 5;
  background-color: var(--surface-cove) !important;
  border-top: 1px solid var(--border-cove);
  margin-top: 0 !important;
  margin-bottom: -6px !important;
  padding-bottom: calc(var(--space-xl) + 6px) !important;
}

.residents-section {
  position: relative;
  z-index: 6;
  background-color: var(--surface-cove) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-top: none !important;
}

/* Nav Bar Controls */
.aftercare-nav-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-top: 1.75rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .aftercare-nav-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
  }
}

.category-pill-group {
  display: inline-flex;
  background-color: var(--bg-obsidian);
  padding: 5px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-cove);
  gap: 4px;
}

.cat-pill {
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-silver);
  border-radius: var(--radius-full);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cat-pill:hover {
  color: var(--ink-seaspray);
}

.cat-pill.active {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  box-shadow: 0 4px 15px var(--accent-gold-alpha-25);
}

.lang-switch-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-obsidian);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-cove);
}

.lang-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.lang-pill {
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-silver);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-pill:hover {
  color: var(--accent-gold);
}

.lang-pill.active {
  background-color: var(--accent-gold-alpha-15);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Editorial Grid Layout */
.aftercare-pane {
  display: none;
}

.aftercare-pane.active {
  display: block;
  animation: fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.aftercare-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 992px) {
  .aftercare-editorial-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .video-theater {
    position: sticky;
    top: 100px;
    z-index: 10;
  }
}

/* Video Theater */
.video-theater {
  width: 100%;
}

.theater-frame {
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.theater-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--space-md);
  background-color: var(--bg-obsidian);
  border-top: 1px solid var(--border-cove);
  font-size: 0.82rem;
}

.badge-text {
  font-weight: 600;
  color: var(--ink-seaspray);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.theater-link {
  color: var(--accent-gold);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.theater-link:hover {
  color: var(--ink-seaspray);
}

/* Video Responsive & Poster */
.video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  cursor: pointer;
  background-color: #000000;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.video-responsive:hover .video-poster {
  transform: scale(1.03);
  filter: brightness(95%);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  border: none;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 0 25px var(--accent-gold-alpha-25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  cursor: pointer;
}

.video-responsive:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.7);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

/* Protocol Content */
.protocol-content {
  display: flex;
  flex-direction: column;
}

.protocol-pane {
  display: none;
}

.protocol-pane.active {
  display: block;
  animation: fade-in 0.3s ease-out forwards;
}

.protocol-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-cove);
}

.protocol-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.protocol-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
}

/* Protocol List Items */
.protocol-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.protocol-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.protocol-item:hover {
  border-color: var(--accent-gold-alpha-25);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.protocol-item.warning-step {
  border-color: var(--accent-crimson-alpha-50);
  background-color: rgba(137, 18, 29, 0.12);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  min-width: 32px;
  line-height: 1;
  padding-top: 2px;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-seaspray);
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-silver);
}

/* Support Footer Bar */
.aftercare-footer-bar {
  margin-top: var(--space-lg);
  padding: 1rem 1.25rem;
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  text-align: center;
}

.support-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-silver);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-link {
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.phone-link:hover {
  color: var(--ink-seaspray);
}

/* 10. MODERN EDITORIAL GALLERY & LIGHTBOX */
.gallery-section {
  position: relative;
  background-color: var(--surface-cove);
  border-top: 1px solid var(--border-cove);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-silver);
  background: var(--bg-obsidian-alpha-70);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.filter-btn.active {
  border-color: var(--accent-gold);
  color: var(--bg-obsidian);
  background-color: var(--accent-gold);
  box-shadow: 0 0 18px var(--accent-gold-alpha-25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-cove);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-obsidian);
}

.gallery-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-gold-alpha-15);
}

.gallery-img-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(105%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.gallery-item:hover .gallery-img {
  filter: grayscale(0%) contrast(110%);
  transform: scale(1.08);
}

/* Floating Sleek Badge Capsule */
.gallery-badge-capsule {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  background-color: rgba(17, 17, 19, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-cove-alpha-50);
  border-radius: var(--radius-full);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.gallery-item:hover .gallery-badge-capsule {
  opacity: 1;
  transform: translateY(0);
}

.badge-artist {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.badge-dot {
  font-size: 0.7rem;
  color: var(--ink-silver);
  opacity: 0.5;
}

.badge-style {
  font-size: 0.78rem;
  color: var(--ink-seaspray);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.gallery-zoom-icon {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background-color: rgba(17, 17, 19, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 17, 19, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: var(--space-md);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--ink-seaspray);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-cove);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-gold);
  text-align: center;
  letter-spacing: 0.05em;
}

/* Hide animation logic */
.gallery-item.hidden {
  display: none;
}

/* 11. STERILE STANDARDS LIST */
.standards-img {
  border-radius: var(--radius-sm);
  filter: grayscale(30%) brightness(85%);
  box-shadow: 0 15px 40px var(--black-alpha-50);
  transition: var(--transition-smooth);
}

.standards-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.standards-list li {
  display: flex;
  gap: var(--space-md);
}

.icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-cove);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.list-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.list-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Swap column logic on mobile */
@media (max-width: 767px) {
  .swap-columns-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* 12. BOOKING FORM & MAP */
.contact-details-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border-cove);
  padding-top: var(--space-lg);
}

.detail-item {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.detail-icon {
  font-size: 1.35rem;
  width: 24px;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--ink-silver);
}

.detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-seaspray);
}

.hover-gold:hover {
  color: var(--accent-gold);
}

/* Form Styling */
.booking-form {
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .booking-form {
    padding: var(--space-lg);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

@media (min-width: 576px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-silver);
  margin-bottom: 0.35rem;
  display: block;
}

.form-control {
  width: 100%;
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  color: var(--ink-seaspray);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: var(--silver-alpha-40);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px var(--accent-gold-alpha-15);
}

textarea.form-control {
  resize: vertical;
}

/* Form validation styles */
.form-control.invalid {
  border-color: var(--accent-crimson);
}

.error-msg {
  font-size: 0.75rem;
  color: var(--accent-crimson);
  display: none;
  margin-top: 0.3rem;
}

.form-control.invalid + .error-msg {
  display: block;
}

/* --- EASYFORM-STYLE MULTI-STEP WIZARD --- */
.booking-form-wizard {
  background-color: var(--surface-cove);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .booking-form-wizard {
    padding: var(--space-lg);
  }
}

/* Header & Progress Bar */
.wizard-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-cove);
  padding-bottom: 1rem;
}

.step-indicators {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.step-tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--silver-alpha-40);
  transition: var(--transition-smooth);
}

.step-tab.active {
  color: var(--accent-gold);
}

.step-tab.completed {
  color: var(--ink-seaspray);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
}

.step-line {
  flex: 1;
  height: 1px;
  background-color: var(--border-cove);
}

.wizard-progress-track {
  width: 100%;
  height: 3px;
  background-color: var(--bg-obsidian);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.wizard-progress-bar {
  height: 100%;
  width: 33.33%;
  background-color: var(--accent-gold);
  transition: width 0.4s ease;
}

/* Step Body Panes */
.wizard-body {
  min-height: 280px;
}

.step-pane {
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  animation: pane-fade 0.35s ease-out forwards;
}

.step-pane.active {
  display: flex;
}

@keyframes pane-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  margin-bottom: 0.25rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-seaspray);
  margin-bottom: 0.2rem;
}

.step-subtitle {
  font-size: 0.85rem;
  color: var(--ink-silver);
}

/* Service Click Cards */
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .service-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--silver-alpha-40);
  background-color: var(--surface-hover);
}

.service-card.active {
  border-color: var(--accent-gold);
  background-color: rgba(213, 170, 85, 0.06);
}

.service-card-icon {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-top: 0.1rem;
}

.service-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.service-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-seaspray);
}

.service-card-desc {
  font-size: 0.78rem;
  color: var(--ink-silver);
  line-height: 1.35;
}

/* Artist Selection Pills */
.artist-select-group {
  margin-top: 0.5rem;
}

.artist-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.artist-pill {
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-cove);
  background-color: var(--bg-obsidian);
  color: var(--ink-silver);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.artist-pill:hover {
  border-color: var(--silver-alpha-40);
  color: var(--ink-seaspray);
}

.artist-pill.active {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  font-weight: 600;
}

/* Inputs with Icons */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 1rem;
  color: var(--silver-alpha-40);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.input-with-icon .form-control {
  padding-left: 2.5rem;
  width: 100%;
}

.input-with-icon .form-control:focus ~ .input-icon,
.input-with-icon .form-control:focus + .input-icon {
  color: var(--accent-gold);
}

/* Placement Tags */
.placement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.placement-tag {
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-cove);
  background-color: var(--bg-obsidian);
  color: var(--ink-silver);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.placement-tag:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Wizard Footer Navigation Controls */
.wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-cove);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.wizard-prev-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.step-counter {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Modal feedback */
.contact-form-column {
  position: relative;
}

.form-status-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-obsidian-alpha-95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-cove);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  z-index: 10;
  animation: fade-in 0.3s ease-out forwards;
}

.form-status-modal[hidden] {
  display: none;
}

.modal-content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.status-icon {
  font-size: 3rem;
}

.success-icon {
  color: var(--accent-gold);
}

.status-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-seaspray);
}

.status-message {
  font-size: 0.95rem;
  line-height: 1.6;
}

@keyframes fade-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* Pre-Footer Section & Background Image */
.contact-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-obsidian);
}

.prefooter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.prefooter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.68) contrast(1.05);
}

.prefooter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bg-obsidian) 0%, rgba(17, 17, 19, 0.83) 50%, var(--bg-obsidian) 100%);
  z-index: 2;
}

.contact-section .container {
  position: relative;
  z-index: 3;
}

/* 13. FOOTER */
.main-footer {
  position: relative;
  background-color: var(--bg-obsidian);
  border-top: 1px solid var(--border-cove);
  padding: var(--space-lg) 0 var(--space-md) 0;
  margin-top: 0;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.footer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.65) contrast(1.05);
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bg-obsidian) 0%, rgba(17, 17, 19, 0.83) 50%, var(--bg-obsidian) 100%);
  z-index: 2;
}

.main-footer .container,
.main-footer .footer-bottom {
  position: relative;
  z-index: 3;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-desc {
  font-size: 0.95rem;
  max-width: 24rem;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-cove);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ink-silver);
}

.social-links a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink-seaspray);
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-column a {
  font-size: 0.9rem;
  color: var(--ink-silver);
}

.footer-links-column a:hover {
  color: var(--accent-gold);
  padding-left: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-cove);
  padding-top: var(--space-md);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* 14. SCROLL REVEAL ANIMATIONS */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .bg-img {
    animation: none !important;
  }
  .logo-icon {
    animation: none !important;
  }
}

/* Mobile Responsive Adjustments for Hero Logo & Footer Video */
@media (max-width: 768px) {
  .hero-logo-img {
    max-width: 220px;
    max-height: 190px;
  }
  .hero-tagline {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
  }
  .footer-video {
    object-position: center left;
  }
}

/* --- BOOKING CTA CARD (CONTACT SECTION) --- */
.booking-cta-card {
  background-color: var(--surface-cove);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  height: 100%;
  justify-content: center;
}

.cta-card-badge {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink-seaspray);
}

.cta-card-desc {
  font-size: 0.95rem;
  color: var(--ink-silver);
  line-height: 1.6;
}

.cta-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-cove);
  font-size: 0.8rem;
}

/* --- FULL SCREEN / POP-UP BOOKING WIZARD MODAL --- */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--surface-cove);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.95);
  transform: scale(0.95) translateY(15px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active .booking-modal-dialog {
  transform: scale(1) translateY(0);
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  color: var(--ink-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.booking-modal-close:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: rotate(90deg);
}

/* Form inside modal override */
.booking-modal-dialog .booking-form-wizard {
  border: none;
  background: transparent;
}

/* RESIDENT CARDS EXTRA STYLING */
.resident-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-xs);
}

.resident-cta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-sm);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-cove);
}

.resident-cta-row .btn {
  flex: 1;
}

.artist-insta-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-cove);
  background-color: var(--bg-obsidian);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.artist-insta-icon:hover {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  transform: translateY(-2px);
}

/* ARTIST PORTFOLIO POPUP MODAL */
.artist-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.artist-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  background-color: var(--surface-cove);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.95);
  transform: scale(0.95) translateY(15px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-modal-overlay.active .artist-modal-dialog {
  transform: scale(1) translateY(0);
}

.artist-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  color: var(--ink-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.artist-modal-close:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.artist-modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.artist-modal-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-bottom: 1px solid var(--border-cove);
  padding-bottom: 1.1rem;
}

.artist-modal-top-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.artist-modal-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  max-width: 72px;
  max-height: 72px;
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  object-fit: cover;
  flex-shrink: 0 !important;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold-alpha-25);
}

.artist-modal-title-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.artist-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-seaspray);
  line-height: 1.2;
}

.artist-modal-specialty {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.artist-modal-bio {
  font-size: 0.88rem;
  color: var(--ink-silver);
  line-height: 1.55;
  width: 100%;
}

.artist-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}

.artist-portfolio-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-cove);
  aspect-ratio: 1 / 1;
}

.artist-portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-portfolio-thumb:hover img {
  transform: scale(1.08);
}

.artist-modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border-cove);
  padding-top: 1.25rem;
}

/* Utility helper for toggling buttons */
.hidden {
  display: none !important;
}

/* Mobile Responsiveness for Modal Controls */
@media (max-width: 576px) {
  .booking-modal-dialog {
    max-height: 94vh;
    border-radius: var(--radius-md);
  }

  .booking-form-wizard {
    padding: 1rem;
    gap: 0.85rem;
  }

  .wizard-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "counter counter"
      "prev next";
    gap: 0.6rem;
  }

  .step-counter {
    grid-area: counter;
    text-align: center;
  }

  .wizard-prev-btn {
    grid-area: prev;
    width: 100%;
    justify-content: center;
  }
}

/* GALLERY SECTION STYLES */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.gallery-filters .filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-cove);
  background-color: var(--bg-obsidian);
  color: var(--ink-silver);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-filters .filter-btn.active,
.gallery-filters .filter-btn:hover {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem;
}

/* Mobile Horizontal Touch Swipe Carousel */
@media (max-width: 768px) {
  .gallery-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid::-webkit-scrollbar {
    height: 4px;
  }

  .gallery-grid::-webkit-scrollbar-track {
    background: var(--bg-obsidian);
    border-radius: var(--radius-full);
  }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: var(--radius-full);
  }

  .gallery-item {
    flex: 0 0 85% !important;
    min-width: 85% !important;
    scroll-snap-align: center;
  }
}

.gallery-item {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-cove);
  aspect-ratio: 1 / 1;
  background-color: var(--bg-obsidian);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-img-box:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-badge-capsule {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-cove);
  font-size: 0.75rem;
  color: var(--ink-seaspray);
  z-index: 2;
}

.badge-artist {
  color: var(--accent-gold);
  font-weight: 600;
}

.badge-dot {
  opacity: 0.5;
}

.gallery-zoom-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-cove);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-img-box:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   14. EVENTS PAGE STYLES
   ========================================================================== */
.events-hero-section {
  position: relative;
  width: 100%;
  padding-top: calc(var(--space-xl) + 3.5rem);
  padding-bottom: calc(var(--space-xl) + 1.5rem);
  background-color: var(--bg-obsidian);
  background-image: radial-gradient(circle at center, rgba(10, 10, 12, 0.88) 0%, rgba(10, 10, 12, 0.97) 100%), linear-gradient(180deg, rgba(10, 10, 12, 0.85) 0%, rgba(10, 10, 12, 0.95) 100%), url('event/15-05-2026.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-cove);
  overflow: hidden;
  margin-bottom: -4px !important;
  z-index: 2;
}

.events-hero-section::before {
  display: none;
}

.events-hero-section .container {
  position: relative;
  z-index: 3;
}

.events-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--ink-seaspray);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
}

.events-hero-section .section-subtitle {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
  color: #e2e8f0;
  font-weight: 500;
}

.events-filter-bar {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
  background-color: var(--surface-cove);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-cove);
}

.events-filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-silver);
  border-radius: var(--radius-full);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.events-filter-btn:hover {
  color: var(--ink-seaspray);
}

.events-filter-btn.active {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  font-weight: 700;
  box-shadow: 0 4px 15px var(--accent-gold-alpha-25);
}

.events-grid-section {
  position: relative;
  z-index: 5;
  padding: var(--space-xl) 0;
  background-color: var(--surface-cove) !important;
  min-height: 60vh;
  margin-top: 0 !important;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.event-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.event-card.event-featured {
  border-color: var(--accent-gold-alpha-25);
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-gold-alpha-15);
}

/* 9:16 Aspect Ratio Poster Display (Clean, Unobstructed) */
.event-poster-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background-color: #000000;
  cursor: pointer;
}

.event-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-poster-box:hover .event-poster-img {
  transform: scale(1.04);
}

.event-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-cove);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.event-poster-box:hover .event-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.event-zoom-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-obsidian);
}

.event-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
  border-top: 1px solid var(--border-cove);
}

.event-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.event-date-badge {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-seaspray);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-pill {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
}

.status-upcoming {
  background: rgba(229, 46, 61, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.status-past {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-silver);
  border: 1px solid var(--border-cove);
}

.event-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-seaspray);
  line-height: 1.3;
}

.event-venue {
  font-size: 0.85rem;
  color: var(--ink-silver);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-spots-info {
  font-size: 0.8rem;
  color: var(--ink-silver);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--surface-cove);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-cove);
}

.event-card-actions {
  margin-top: auto;
  padding-top: 0.5rem;
}

/* RSVP Guestlist Modal */
.rsvp-modal-overlay,
.poster-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.rsvp-modal-overlay.active,
.poster-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.rsvp-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--surface-cove);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.95);
  transform: scale(0.95) translateY(15px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.rsvp-modal-overlay.active .rsvp-modal-dialog {
  transform: scale(1) translateY(0);
}

.rsvp-modal-close,
.poster-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-cove);
  color: var(--ink-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.rsvp-modal-close:hover,
.poster-modal-close:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.rsvp-checkbox-group {
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ink-silver);
  cursor: pointer;
}

.rsvp-success-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.rsvp-pass-box {
  background-color: var(--bg-obsidian);
  border: 1px solid var(--accent-gold-alpha-25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.pass-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 700;
}

.qr-placeholder {
  font-size: 4rem;
  color: var(--ink-seaspray);
}

.pass-code {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--ink-silver);
  letter-spacing: 0.15em;
}

/* Poster Lightbox Dialog */
.poster-modal-dialog {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.poster-modal-img {
  max-width: 100%;
  max-height: 80vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-cove);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
}

.poster-modal-caption {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-gold);
  text-align: center;
}

/* ==========================================================================
   15. BIO LINKTREE PAGE STYLES
   ========================================================================== */
.bio-page-body {
  background-color: var(--bg-obsidian);
  color: var(--ink-silver);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Fixed Background Video Header */
.bio-header-video-wrapper {
  position: relative;
  width: 100%;
  height: 38vh;
  min-height: 280px;
  max-height: 420px;
  overflow: hidden;
  background-color: #050507;
}

.bio-header-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bio-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.3) 0%, rgba(10, 10, 12, 0.95) 100%);
}

/* Overlapping App Sheet Drawer */
.bio-sheet-container {
  position: relative;
  z-index: 10;
  margin-top: -45px;
  background-color: var(--surface-cove);
  border-radius: 28px 28px 0 0;
  border-top: 1px solid var(--border-cove);
  box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.8);
  padding: 3.5rem 1.25rem 3rem 1.25rem;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
}

/* Center Circular Avatar Logo */
.bio-avatar-wrapper {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #0c0d10;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 15;
}

.bio-avatar-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

/* Header Text Profile */
.bio-profile-header {
  text-align: center;
  margin-bottom: 2rem;
}

.bio-profile-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--ink-seaspray);
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}

.bio-profile-handle {
  font-size: 0.85rem;
  color: var(--accent-crimson);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.bio-profile-bio {
  font-size: 0.88rem;
  color: var(--ink-silver);
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}

/* Bio Links List */
.bio-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bio-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.35rem;
  background-color: rgba(22, 23, 28, 0.85);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-full);
  color: var(--ink-seaspray);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.bio-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  background-color: rgba(30, 32, 40, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  color: var(--ink-seaspray);
}

.bio-link-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.bio-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition-smooth);
}

.bio-link-card:hover .bio-link-icon {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  transform: scale(1.08);
}

.bio-link-primary {
  background: rgba(30, 32, 40, 0.95);
  border: 1px solid var(--accent-gold);
}

.bio-link-primary .bio-link-icon {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
}

.bio-badge {
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: var(--accent-crimson);
  color: #fff;
}

.bio-badge-gold {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
}

/* Team Artist Link Cards (Matching User's Reference Screenshot) */
.bio-section-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.bio-artist-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background-color: #1e1f24;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  color: var(--ink-seaspray);
  text-decoration: none;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.bio-artist-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
  background-color: #26272e;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.bio-artist-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.bio-artist-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-cove);
  background-color: #0c0d10;
  flex-shrink: 0;
}

.bio-artist-card:hover .bio-artist-avatar {
  border-color: var(--accent-gold);
}

.bio-artist-meta {
  display: flex;
  flex-direction: column;
}

.bio-artist-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: #f1f5f9;
  line-height: 1.2;
}

.bio-artist-role {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 2px;
  font-weight: 400;
}

.bio-artist-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07);
  color: var(--ink-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.bio-artist-card:hover .bio-artist-action {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  transform: scale(1.05);
}

/* Bio Footer Social Bar */
.bio-footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bio-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-cove);
  color: var(--ink-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.bio-social-icon:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  background-color: rgba(212, 175, 55, 0.1);
}

/* Bio Events Calendar Widget (Matching Reference Image) */
.bio-events-widget {
  margin-top: 1rem;
  background-color: #1e1f24;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.1rem 1.25rem 1.25rem 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.bio-events-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.bio-events-widget-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-seaspray);
}

.bio-mini-calendar {
  background-color: #16171b;
  border-radius: 16px;
  padding: 1rem 0.85rem 0.85rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.bio-cal-month-year {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.85rem;
  letter-spacing: 0.03em;
}

.bio-cal-week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 4px;
}

.bio-cal-day-header {
  font-size: 0.76rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.bio-cal-num {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 36px;
}

.bio-cal-num.active-event-day .bio-cal-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0a0a0c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.bio-cal-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  margin-top: 3px;
}

.bio-cal-event-snippet {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bio-cal-event-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bio-cal-event-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: #f8fafc;
}

.bio-events-all-btn {
  margin-top: 0.9rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-cove);
  border-radius: var(--radius-full);
  color: var(--ink-seaspray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
}

.bio-events-all-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  border-color: var(--accent-gold);
}
