/* ==========================================================================
   RED SERIES IV: DREAMS GROW WHERE MOMENTS DIE
   Artist: Alex "AnG3L" Ftoulis (@Ang3lnftart)
   Design System: Industrial Heavy Minimalist / Brutalist Fine Art (2026)
   ========================================================================== */

:root {
  --bg-main: #070709;
  --bg-surface: #0e0e12;
  --bg-surface-elevated: #14141a;
  --bg-card: #0b0b0e;
  --bg-card-hover: #131319;
  
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --text-inverse: #070709;

  --accent-red: #dc2626;
  --accent-red-hover: #ef4444;
  --accent-red-glow: rgba(220, 38, 38, 0.22);
  --accent-red-subtle: rgba(220, 38, 38, 0.08);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-heavy: rgba(255, 255, 255, 0.28);
  --border-red: rgba(220, 38, 38, 0.5);

  --font-display: "Syne", "Space Grotesk", sans-serif;
  --font-heading: "Space Grotesk", "Syne", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --max-w-content: 1400px;
  --header-height: 68px;
  --ease-industrial: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-main);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* Typography Utilities */
.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.mono-tag-red {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  text-transform: uppercase;
}

.mono-divider {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(7, 7, 9, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 900;
}

.header-container {
  max-width: var(--max-w-content);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  width: 28px;
  height: 28px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-subtitle {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Site Navigation (Desktop) */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-tabs {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
}

.nav-link {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  border-color: var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
}

.nav-link.active {
  color: #fff;
  background: var(--bg-surface-elevated);
  border-color: var(--border-medium);
  border-left: 2px solid var(--accent-red);
}

.nav-count {
  font-size: 0.65rem;
  background: rgba(220, 38, 38, 0.18);
  color: var(--accent-red);
  padding: 1px 5px;
  border-radius: 2px;
}

/* Mobile drawer elements hidden by default on desktop */
.mobile-drawer-socials,
.mobile-drawer-backdrop {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon-link:hover {
  color: #fff;
  border-color: var(--accent-red);
  background: var(--accent-red-subtle);
}

/* Mobile Hamburger Toggle Button (Hidden on Desktop) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  z-index: 1000;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  border-color: var(--accent-red);
  background: var(--bg-surface-elevated);
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.25s var(--ease-industrial);
  transform-origin: center;
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--accent-red);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--accent-red);
}

/* ==========================================================================
   Layout Container & View Switching
   ========================================================================== */
.layout-container {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem 2rem;
  min-height: calc(100vh - var(--header-height) - 100px);
}

.page-view {
  display: none;
  animation: fadeIn 0.3s var(--ease-industrial);
}

.page-view.active {
  display: block;
}

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

/* ==========================================================================
   1. Minimal Home View
   ========================================================================== */
.home-hero {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.banner-frame {
  position: relative;
  width: 100%;
  border: 1px solid var(--border-medium);
  background: #000;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.8s var(--ease-industrial);
}

.banner-frame:hover .hero-banner-img {
  transform: scale(1.015);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.05) 0%, rgba(7, 7, 9, 0.5) 100%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
}

.hero-label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
}

.hero-subline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-red);
  text-transform: uppercase;
}

.hero-statement {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-industrial-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.9rem 1.75rem;
  border: 1px solid var(--accent-red);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.btn-industrial-primary:hover {
  background: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  box-shadow: 0 0 20px var(--accent-red-glow);
  transform: translateY(-1px);
}

.btn-industrial-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.9rem 1.75rem;
  border: 1px solid var(--border-medium);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.btn-industrial-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}

/* Selected Works Preview */
.home-showcase-section {
  border-top: 1px solid var(--border-subtle);
  padding-top: 4rem;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.link-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.link-view-all:hover {
  color: var(--accent-red);
}

.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 2rem;
}

/* ==========================================================================
   2. Gallery Archive View (Full-Size Uncropped Images)
   ========================================================================== */
.gallery-header-section {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.75rem;
}

.gallery-header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gallery-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.gallery-subhead {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.gallery-search-box {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 1rem;
  min-width: 280px;
  gap: 0.6rem;
  transition: border-color 0.2s ease;
}

.gallery-search-box:focus-within {
  border-color: var(--accent-red);
}

.gallery-search-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.gallery-search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  width: 100%;
}

.gallery-search-box input::placeholder {
  color: var(--text-muted);
}

/* Clean Gallery Art Cards with Full Size Images (No Cropping) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 2rem;
}

.art-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s var(--ease-industrial);
}

.art-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.art-card-media {
  position: relative;
  width: 100%;
  background: #040406;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s var(--ease-industrial);
}

.art-card:hover .art-card-img {
  transform: scale(1.03);
}

.art-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 9, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.overlay-action-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  background: rgba(220, 38, 38, 0.9);
  padding: 0.4rem 0.85rem;
  text-transform: uppercase;
}

.art-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.art-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.art-index-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-red);
}

.art-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ==========================================================================
   3. Collections & Releases View
   ========================================================================== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-industrial);
}

.collection-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
}

.collection-card-media {
  position: relative;
  width: 100%;
  background: #020204;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-subtle);
}

.collection-card-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  display: block;
  object-fit: contain;
  transition: transform 0.6s var(--ease-industrial);
}

.collection-card:hover .collection-card-img {
  transform: scale(1.025);
}

.collection-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  justify-content: space-between;
  background: var(--bg-surface);
}

.collection-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.collection-platform-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.collection-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}

.collection-id-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-subtle);
}

.collection-id-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.collection-id-val {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  word-break: break-all;
}

.collection-card-actions {
  display: flex;
  align-items: center;
}

.btn-collection-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-collection-link:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

/* ==========================================================================
   4. About the Artist View
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.artist-photo-frame {
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  overflow: hidden;
}

.artist-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
}

.photo-caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-subtle);
}

.artist-mono-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}

.artist-mono-handle {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-red);
}

.about-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-header-box {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}

.about-role {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-red);
  text-transform: uppercase;
}

.about-bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lead-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  border-left: 3px solid var(--accent-red);
  padding-left: 1.25rem;
  margin: 0.5rem 0;
  font-style: italic;
}

.official-channels-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}

.about-socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.social-channel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.15rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.social-channel-card:hover {
  border-color: var(--accent-red);
  background: var(--bg-surface-elevated);
  transform: translateY(-2px);
}

.social-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-right: 0.85rem;
}

.social-channel-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.channel-platform {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.channel-handle {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.channel-arrow {
  color: var(--text-muted);
  font-family: var(--font-mono);
  transition: transform 0.2s ease;
}

.social-channel-card:hover .channel-arrow {
  color: var(--accent-red);
  transform: translate(2px, -2px);
}

/* ==========================================================================
   5. Video Archive View
   ========================================================================== */
.tiktok-embed-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

/* ==========================================================================
   Lightbox Modal (Full-Size High Resolution Artwork Viewer)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background: rgba(4, 4, 6, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
  overflow: hidden;
}

.modal-overlay.active {
  display: flex;
}

.lightbox-dialog {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: calc(100vh - 3rem);
  max-height: calc(100dvh - 3rem);
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  animation: modalIn 0.25s var(--ease-industrial);
  overflow: hidden;
  box-sizing: border-box;
  width: auto;
  margin: auto;
}

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

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(14, 14, 18, 0.85);
  border: 1px solid var(--border-medium);
  color: #fff;
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 35;
}

.modal-close-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.lightbox-image-pane {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020204;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  max-height: calc(100vh - 3rem - 100px);
  max-height: calc(100dvh - 3rem - 100px);
}

.lightbox-img {
  max-width: min(85vw, 900px);
  max-height: calc(100vh - 3rem - 100px);
  max-height: calc(100dvh - 3rem - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 7, 9, 0.75);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 1.75rem;
  width: 44px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  z-index: 20;
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-nav-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.lightbox-details-pane {
  padding: 1.1rem 1.5rem;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.modal-meta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
}

.modal-art-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.25;
  width: 100%;
  min-width: 0;
}

.modal-specs-bar {
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1.8vw, 0.72rem);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

/* ==========================================================================
   PINTEREST BOARDS — OTHER WORK PAGE
   ========================================================================== */
.boards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0 4rem;
}

.board-embed-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease-industrial);
}

.board-embed-card:hover {
  border-color: var(--border-red);
}

.board-embed-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem 0;
}

.board-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.board-open-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.board-open-link:hover {
  color: var(--accent-red-hover);
}

.board-embed-frame {
  padding: 0 1.5rem 1.5rem;
  min-height: 320px;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.board-embed-frame a[data-pin-do] {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding: 2.5rem 2rem;
}

.footer-container {
  max-width: var(--max-w-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-nav button:hover {
  color: var(--accent-red);
}

.footer-right {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

/* Tablet (max-width: 1080px) */
@media (max-width: 1080px) {
  .header-container {
    padding: 0 1.5rem;
  }
  .layout-container {
    padding: 2rem 1.5rem 4rem;
  }
  .about-grid {
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
  }
  .home-featured-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
  }
}

/* Mobile & Tablet Portrait (max-width: 860px) */
@media (max-width: 860px) {
  /* Show Hamburger, Hide inline desktop actions */
  .mobile-menu-toggle {
    display: flex;
  }
  .header-actions {
    display: none;
  }

  /* Slide-out Mobile Navigation Drawer */
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(340px, 85vw);
    height: calc(100vh - var(--header-height));
    background: rgba(10, 10, 14, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border-medium);
    z-index: 950;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-industrial);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.85);
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  /* Mobile Backdrop */
  .mobile-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 940;
  }

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

  /* Nav Links in Drawer */
  .nav-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 1.1rem;
    font-size: 0.85rem;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    justify-content: space-between;
    min-height: 48px;
  }

  .nav-link.active {
    border-color: var(--border-medium);
    border-left: 3px solid var(--accent-red);
    background: var(--bg-surface-elevated);
  }

  /* Mobile Drawer Socials */
  .mobile-drawer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
  }

  .mobile-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .mobile-social-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    min-height: 44px;
    transition: all 0.2s ease;
  }

  .mobile-social-item:hover {
    color: #fff;
    border-color: var(--accent-red);
    background: var(--accent-red-subtle);
  }

  /* Disable Lightbox Modal & View Image Overlays on Mobile */
  .modal-overlay {
    display: none !important;
  }

  .art-card {
    cursor: default;
  }

  .art-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-subtle);
  }

  .art-card-media {
    cursor: default;
  }

  .art-card-overlay {
    display: none !important;
  }

  .art-card:hover .art-card-img {
    transform: none;
  }

  /* About Grid Stack */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .artist-photo-frame {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* Smartphone & Compact (max-width: 640px) */
@media (max-width: 640px) {
  :root {
    --header-height: 62px;
  }

  .header-container {
    padding: 0 1rem;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
  }

  .layout-container {
    padding: 1.25rem 1rem 3.5rem;
  }

  /* Hero Section */
  .home-hero {
    gap: 1.75rem;
    margin-bottom: 3.5rem;
  }

  .hero-headline {
    font-size: clamp(2.1rem, 9.5vw, 2.8rem);
    line-height: 1;
  }

  .hero-subline {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .hero-statement {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }

  .btn-industrial-primary,
  .btn-industrial-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
    min-height: 48px;
  }

  /* Showcase Section */
  .home-showcase-section {
    padding-top: 2.5rem;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  /* Grids — Single Column Full Width for High Impact */
  .home-featured-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .art-card-body {
    padding: 0.9rem 1rem 1rem;
  }

  .art-card-title {
    font-size: 1rem;
  }

  /* Gallery Header */
  .gallery-header-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
  }

  .gallery-header-top {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .gallery-headline {
    font-size: 1.75rem;
  }

  .gallery-search-box {
    width: 100%;
    min-width: 0;
    padding: 0.65rem 0.85rem;
  }

  /* Collections View */
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .collection-card-body {
    padding: 1.15rem 1rem;
    gap: 1rem;
  }

  .collection-title {
    font-size: 1.15rem;
  }

  .collection-card-img {
    max-height: 260px;
  }

  .btn-collection-link {
    min-height: 44px;
  }

  /* About View */
  .about-name {
    font-size: 2rem;
  }

  .lead-quote {
    font-size: 1.05rem;
    padding-left: 1rem;
    margin: 0.25rem 0;
  }

  .about-bio-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

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

  .social-channel-card {
    min-height: 48px;
  }

  /* Pinterest Boards */
  .boards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0 3rem;
  }

  .board-embed-label {
    padding: 1rem 1rem 0;
  }

  .board-embed-frame {
    padding: 0 1rem 1rem;
    min-height: 280px;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-nav button {
    padding: 0.3rem 0;
    min-height: 36px;
  }
}

/* Extra Small Phones (max-width: 380px) */
@media (max-width: 380px) {
  .brand-title {
    font-size: 0.88rem;
  }

  .brand-badge {
    width: 24px;
    height: 24px;
    font-size: 0.68rem;
  }

  .hero-headline {
    font-size: 1.9rem;
  }

  .mobile-social-grid {
    grid-template-columns: 1fr;
  }
}


